From d4c0ac779034a47d4fc8a56e0a96a7d84170e03c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Thu, 14 Nov 2013 09:38:55 +0100 Subject: [PATCH 001/296] introduce auto completion on share email - integrated with the contactsmanager api --- core/ajax/share.php | 24 ++++++++++++++++++++++++ core/js/share.js | 20 ++++++++++++++++++++ 2 files changed, 44 insertions(+) diff --git a/core/ajax/share.php b/core/ajax/share.php index be02c056357..6bac2867c48 100644 --- a/core/ajax/share.php +++ b/core/ajax/share.php @@ -261,6 +261,30 @@ if (isset($_POST['action']) && isset($_POST['itemType']) && isset($_POST['itemSo OC_JSON::success(array('data' => array('reshare' => $reshare, 'shares' => $shares))); } break; + case 'getShareWithEmail': + $result = array(); + if (isset($_GET['search'])) { + $cm = OC::$server->getContactsManager(); + if (!is_null($cm) && $cm->isEnabled()) { + $contacts = $cm->search($_GET['search'], array('FN', 'EMAIL')); + foreach ($contacts as $contact) { + $emails = $contact['EMAIL']; + if (!is_array($emails)) { + $emails = array($emails); + } + + foreach($emails as $email) { + $result[] = array( + 'id' => $contact['ID'], + 'email' => $email, + 'displayname' => $contact['FN'], + ); + } + } + } + } + OC_JSON::success(array('data' => $result)); + break; case 'getShareWith': if (isset($_GET['search'])) { $sharePolicy = OC_Appconfig::getValue('core', 'shareapi_share_policy', 'global'); diff --git a/core/js/share.js b/core/js/share.js index 411f0d23c36..44c58a3f942 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -314,6 +314,26 @@ OC.Share={ .append( insert ) .appendTo( ul ); }; + $('#email').autocomplete({ + minLength: 1, + source: function (search, response) { + $.get(OC.filePath('core', 'ajax', 'share.php'), { fetch: 'getShareWithEmail', search: search.term }, function(result) { + if (result.status == 'success' && result.data.length > 0) { + response(result.data); + } + }); + }, + select: function( event, item ) { + $('#email').val(item.item.email); + return false; + } + }) + .data("ui-autocomplete")._renderItem = function( ul, item ) { + return $( "
  • " ) + .append( "" + item.displayname + "
    " + item.email + "
    " ) + .appendTo( ul ); + }; + } else { html += ''; html += ''; -- GitLab From afbe50d09c7d9e5cbed2a09bc915ba4eaa8ced27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Thu, 6 Feb 2014 09:44:13 +0100 Subject: [PATCH 002/296] remove global variable $RUNTIME_NOAPPS - it's just superfluous --- core/command/upgrade.php | 3 --- index.php | 2 -- lib/base.php | 3 +-- 3 files changed, 1 insertion(+), 7 deletions(-) diff --git a/core/command/upgrade.php b/core/command/upgrade.php index 1d105b67a06..2eded15e9fe 100644 --- a/core/command/upgrade.php +++ b/core/command/upgrade.php @@ -30,9 +30,6 @@ class Upgrade extends Command { } protected function execute(InputInterface $input, OutputInterface $output) { - global $RUNTIME_NOAPPS; - - $RUNTIME_NOAPPS = true; //no apps, yet require_once \OC::$SERVERROOT . '/lib/base.php'; diff --git a/index.php b/index.php index 0a2f15f9f5e..bd94d0e908d 100755 --- a/index.php +++ b/index.php @@ -21,8 +21,6 @@ * */ -$RUNTIME_NOAPPS = true; //no apps, yet - try { require_once 'lib/base.php'; diff --git a/lib/base.php b/lib/base.php index f2d9251294d..b230ca2e548 100644 --- a/lib/base.php +++ b/lib/base.php @@ -569,9 +569,8 @@ class OC { // Load Apps // This includes plugins for users and filesystems as well - global $RUNTIME_NOAPPS; global $RUNTIME_APPTYPES; - if (!$RUNTIME_NOAPPS && !self::checkUpgrade(false)) { + if (!self::checkUpgrade(false)) { if ($RUNTIME_APPTYPES) { OC_App::loadApps($RUNTIME_APPTYPES); } else { -- GitLab From 21207c6a73bbaf43c6afaceda51690e77fad06f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Thu, 6 Feb 2014 09:50:11 +0100 Subject: [PATCH 003/296] remove superfluous $RUNTIME_APPTYPES --- apps/files/ajax/download.php | 6 ------ apps/files/ajax/getstoragestats.php | 3 --- apps/files/ajax/list.php | 6 ------ apps/files/ajax/rawlist.php | 3 --- apps/files_trashbin/ajax/list.php | 6 ------ 5 files changed, 24 deletions(-) diff --git a/apps/files/ajax/download.php b/apps/files/ajax/download.php index 6a34cbe4ef1..58037cb0c87 100644 --- a/apps/files/ajax/download.php +++ b/apps/files/ajax/download.php @@ -21,12 +21,6 @@ * */ -// only need filesystem apps -$RUNTIME_APPTYPES=array('filesystem'); - -// Init owncloud - - // Check if we are a user OCP\User::checkLoggedIn(); diff --git a/apps/files/ajax/getstoragestats.php b/apps/files/ajax/getstoragestats.php index dd7c7dc5571..69a26ed8eb3 100644 --- a/apps/files/ajax/getstoragestats.php +++ b/apps/files/ajax/getstoragestats.php @@ -1,8 +1,5 @@ Date: Thu, 6 Feb 2014 10:04:18 +0100 Subject: [PATCH 004/296] remove some more global variable $RUNTIME_NOAPPS --- console.php | 1 - core/ajax/update.php | 1 - lib/base.php | 5 ----- lib/private/util.php | 4 +--- public.php | 1 - remote.php | 1 - status.php | 2 -- 7 files changed, 1 insertion(+), 14 deletions(-) diff --git a/console.php b/console.php index 25b8b312539..fc6957062be 100644 --- a/console.php +++ b/console.php @@ -8,7 +8,6 @@ use Symfony\Component\Console\Application; -$RUNTIME_NOAPPS = true; require_once 'lib/base.php'; // Don't do anything if ownCloud has not been installed yet diff --git a/core/ajax/update.php b/core/ajax/update.php index d6af84e95b1..99e8f275316 100644 --- a/core/ajax/update.php +++ b/core/ajax/update.php @@ -1,6 +1,5 @@ Date: Thu, 6 Feb 2014 11:34:27 +0100 Subject: [PATCH 005/296] Within OC:init() the minimum set of apps is loaded - which is filesystem, authentication and logging --- apps/files/appinfo/remote.php | 6 ------ core/command/user/report.php | 3 +-- lib/base.php | 15 ++++----------- lib/private/user.php | 2 -- 4 files changed, 5 insertions(+), 21 deletions(-) diff --git a/apps/files/appinfo/remote.php b/apps/files/appinfo/remote.php index ef22fe92188..8d762d4e880 100644 --- a/apps/files/appinfo/remote.php +++ b/apps/files/appinfo/remote.php @@ -22,12 +22,6 @@ * License along with this library. If not, see . * */ -// load needed apps -$RUNTIME_APPTYPES = array('filesystem', 'authentication', 'logging'); - -OC_App::loadApps($RUNTIME_APPTYPES); - -OC_Util::obEnd(); // Backends $authBackend = new OC_Connector_Sabre_Auth(); diff --git a/core/command/user/report.php b/core/command/user/report.php index f95ba251bcc..d6b7abacabc 100644 --- a/core/command/user/report.php +++ b/core/command/user/report.php @@ -48,7 +48,6 @@ class Report extends Command { } private function countUsers() { - \OC_App::loadApps(array('authentication')); $userManager = \OC::$server->getUserManager(); return $userManager->countUsers(); } @@ -58,4 +57,4 @@ class Report extends Command { $userDirectories = $dataview->getDirectoryContent('/', 'httpd/unix-directory'); return count($userDirectories); } -} \ No newline at end of file +} diff --git a/lib/base.php b/lib/base.php index 18adfd31204..fb7baf86a59 100644 --- a/lib/base.php +++ b/lib/base.php @@ -567,15 +567,9 @@ class OC { OC_User::logout(); } - // Load Apps - // This includes plugins for users and filesystems as well - global $RUNTIME_APPTYPES; + // Load minimum set of apps - which is filesystem, authentication and logging if (!self::checkUpgrade(false)) { - if ($RUNTIME_APPTYPES) { - OC_App::loadApps($RUNTIME_APPTYPES); - } else { - OC_App::loadApps(); - } + OC_App::loadApps(array('filesystem', 'authentication', 'logging')); } //setup extra user backends @@ -866,7 +860,7 @@ class OC { ) { return false; } - OC_App::loadApps(array('authentication')); + if (defined("DEBUG") && DEBUG) { OC_Log::write('core', 'Trying to login from cookie', OC_Log::DEBUG); } @@ -938,7 +932,7 @@ class OC { ) { return false; } - OC_App::loadApps(array('authentication')); + if (OC_User::login($_SERVER["PHP_AUTH_USER"], $_SERVER["PHP_AUTH_PW"])) { //OC_Log::write('core',"Logged in with HTTP Authentication", OC_Log::DEBUG); OC_User::unsetMagicInCookie(); @@ -967,4 +961,3 @@ if (!function_exists('get_temp_dir')) { } OC::init(); - diff --git a/lib/private/user.php b/lib/private/user.php index 98ebebbe5c1..11f96aabf74 100644 --- a/lib/private/user.php +++ b/lib/private/user.php @@ -317,8 +317,6 @@ class OC_User { */ public static function isLoggedIn() { if (\OC::$session->get('user_id') && self::$incognitoMode === false) { - OC_App::loadApps(array('authentication')); - self::setupBackends(); return self::userExists(\OC::$session->get('user_id')); } return false; -- GitLab From 8f5c641cd854d27abc876db8dda4ec0025981186 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 18 Feb 2014 14:51:59 +0100 Subject: [PATCH 006/296] load all apps in ocs/v1.php --- ocs/v1.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/ocs/v1.php b/ocs/v1.php index 1c7d1c89768..93d9c67b045 100644 --- a/ocs/v1.php +++ b/ocs/v1.php @@ -21,12 +21,18 @@ * */ -require_once('../lib/base.php'); +require_once '../lib/base.php'; + use Symfony\Component\Routing\Exception\ResourceNotFoundException; use Symfony\Component\Routing\Exception\MethodNotAllowedException; try { + // load all apps to get all api routes properly setup + OC_App::loadApps(); + + // match the request OC::getRouter()->match('/ocs'.OC_Request::getRawPathInfo()); + } catch (ResourceNotFoundException $e) { OC_OCS::notFound(); } catch (MethodNotAllowedException $e) { -- GitLab From e139f7c863d5971a6386070148496cb0f70ad04e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 18 Feb 2014 17:17:08 +0100 Subject: [PATCH 007/296] load all apps to get all cron jobs executed --- cron.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cron.php b/cron.php index 0d2c07b2d95..1065a700288 100644 --- a/cron.php +++ b/cron.php @@ -48,6 +48,9 @@ try { require_once 'lib/base.php'; + // load all apps to get all api routes properly setup + OC_App::loadApps(); + session_write_close(); $logger = \OC_Log::$object; -- GitLab From 89e0763d3d511d2da878db43c89300c51850b0f3 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 28 Feb 2014 13:37:41 +0100 Subject: [PATCH 008/296] Update PHPDoc for I10N, OC_Config, OC\Template\Base and OCP\IL10N --- lib/private/l10n.php | 31 +++++++++++++++---------------- lib/private/legacy/config.php | 6 +++--- lib/private/template/base.php | 4 ++-- lib/public/il10n.php | 12 ++++++------ 4 files changed, 26 insertions(+), 27 deletions(-) diff --git a/lib/private/l10n.php b/lib/private/l10n.php index ad979a92870..b98ccc9d58b 100644 --- a/lib/private/l10n.php +++ b/lib/private/l10n.php @@ -73,9 +73,9 @@ class OC_L10N implements \OCP\IL10N { /** * get an L10N instance - * @param $app string - * @param $lang string|null - * @return OC_L10N + * @param string $app + * @param string|null $lang + * @return \OC_L10N */ public static function get($app, $lang=null) { if (is_null($lang)) { @@ -87,9 +87,8 @@ class OC_L10N implements \OCP\IL10N { /** * @brief The constructor - * @param $app string app requesting l10n - * @param $lang string default: null Language - * @returns OC_L10N-Object + * @param string $app app requesting l10n + * @param string $lang default: null Language * * If language is not set, the constructor tries to find the right * language. @@ -237,7 +236,7 @@ class OC_L10N implements \OCP\IL10N { /** * @brief Translating - * @param $text String The text we need a translation for + * @param string $text The text we need a translation for * @param array $parameters default:array() Parameters for sprintf * @return \OC_L10N_String Translation or the same text * @@ -250,9 +249,9 @@ class OC_L10N implements \OCP\IL10N { /** * @brief Translating - * @param $text_singular String the string to translate for exactly one object - * @param $text_plural String the string to translate for n objects - * @param $count Integer Number of objects + * @param string $text_singular the string to translate for exactly one object + * @param string $text_plural the string to translate for n objects + * @param integer $count Number of objects * @param array $parameters default:array() Parameters for sprintf * @return \OC_L10N_String Translation or the same text * @@ -351,8 +350,8 @@ class OC_L10N implements \OCP\IL10N { /** * @brief Localization - * @param $type Type of localization - * @param $params parameters for this localization + * @param string $type Type of localization + * @param array $params parameters for this localization * @returns String or false * * Returns the localized data. @@ -406,7 +405,7 @@ class OC_L10N implements \OCP\IL10N { /** * @brief Choose a language - * @param $texts Associative Array with possible strings + * @param array $texts Associative Array with possible strings * @returns String * * $text is an array 'de' => 'hallo welt', 'en' => 'hello world', ... @@ -421,7 +420,7 @@ class OC_L10N implements \OCP\IL10N { /** * @brief find the best language - * @param $app Array or string, details below + * @param array|string $app Array or string, details below * @returns string language * * If $app is an array, ownCloud assumes that these are the available @@ -494,7 +493,7 @@ class OC_L10N implements \OCP\IL10N { /** * @brief find the l10n directory - * @param $app App that needs to be translated + * @param string $app App that needs to be translated * @returns directory */ protected static function findI18nDir($app) { @@ -514,7 +513,7 @@ class OC_L10N implements \OCP\IL10N { /** * @brief find all available languages for an app - * @param $app App that needs to be translated + * @param string $app App that needs to be translated * @returns array an array of available languages */ public static function findAvailableLanguages($app=null) { diff --git a/lib/private/legacy/config.php b/lib/private/legacy/config.php index ab67c8d3020..6c2103179ab 100644 --- a/lib/private/legacy/config.php +++ b/lib/private/legacy/config.php @@ -63,8 +63,8 @@ class OC_Config { /** * @brief Gets a value from config.php * @param string $key key - * @param string $default = null default value - * @return string the value or $default + * @param mixed $default = null default value + * @return mixed the value or $default * * This function gets the value from config.php. If it does not exist, * $default will be returned. @@ -76,7 +76,7 @@ class OC_Config { /** * @brief Sets a value * @param string $key key - * @param string $value value + * @param mixed $value value * * This function sets the value and writes the config.php. * diff --git a/lib/private/template/base.php b/lib/private/template/base.php index 232a29939cc..8af2fce7737 100644 --- a/lib/private/template/base.php +++ b/lib/private/template/base.php @@ -61,7 +61,7 @@ class Base { /** * @brief Assign variables * @param string $key key - * @param string $value value + * @param mixed $value value * @return bool * * This function assigns a variable. It can be accessed via $_[$key] in @@ -77,7 +77,7 @@ class Base { /** * @brief Appends a variable * @param string $key key - * @param string $value value + * @param mixed $value value * @return boolean|null * * This function assigns a variable in an array context. If the key already diff --git a/lib/public/il10n.php b/lib/public/il10n.php index 1c025e7824f..bba52b4c4bb 100644 --- a/lib/public/il10n.php +++ b/lib/public/il10n.php @@ -23,7 +23,7 @@ namespace OCP; interface IL10N { /** * Translating - * @param $text String The text we need a translation for + * @param string $text The text we need a translation for * @param array $parameters default:array() Parameters for sprintf * @return \OC_L10N_String Translation or the same text * @@ -34,9 +34,9 @@ interface IL10N { /** * Translating - * @param $text_singular String the string to translate for exactly one object - * @param $text_plural String the string to translate for n objects - * @param $count Integer Number of objects + * @param string $text_singular the string to translate for exactly one object + * @param string $text_plural the string to translate for n objects + * @param Integer $count Number of objects * @param array $parameters default:array() Parameters for sprintf * @return \OC_L10N_String Translation or the same text * @@ -51,8 +51,8 @@ interface IL10N { /** * Localization - * @param $type Type of localization - * @param $params parameters for this localization + * @param string $type Type of localization + * @param array $params parameters for this localization * @return String or false * * Returns the localized data. -- GitLab From 35a8dfb2fa7970098e6677f7b93b7d782d5df7f0 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 28 Feb 2014 13:53:41 +0100 Subject: [PATCH 009/296] More PHPDoc fixes, using scrutinizer patches as hints --- lib/private/appconfig.php | 4 ++-- lib/private/cache.php | 2 +- lib/private/contactsmanager.php | 4 ++-- lib/private/db.php | 5 ++--- lib/private/image.php | 2 +- lib/private/legacy/appconfig.php | 2 -- lib/private/request.php | 2 +- lib/private/share/mailnotifications.php | 3 +-- lib/public/contacts/imanager.php | 4 ++-- lib/public/iappconfig.php | 5 ++--- tests/lib/appframework/routing/RoutingTest.php | 6 +++--- tests/lib/dbschema.php | 3 +++ 12 files changed, 20 insertions(+), 22 deletions(-) diff --git a/lib/private/appconfig.php b/lib/private/appconfig.php index cdaaebb87e5..cfb84309c67 100644 --- a/lib/private/appconfig.php +++ b/lib/private/appconfig.php @@ -218,8 +218,8 @@ class AppConfig implements \OCP\IAppConfig { /** * get multiply values, either the app or key can be used as wildcard by setting it to false * - * @param boolean $app - * @param string $key + * @param string|false $app + * @param string|false $key * @return array */ public function getValues($app, $key) { diff --git a/lib/private/cache.php b/lib/private/cache.php index a311f10a00f..961270c334c 100644 --- a/lib/private/cache.php +++ b/lib/private/cache.php @@ -97,7 +97,7 @@ class Cache { /** * creates cache key based on the files given - * @param $files + * @param string[] $files * @return string */ static public function generateCacheKeyFromFiles($files) { diff --git a/lib/private/contactsmanager.php b/lib/private/contactsmanager.php index fc6745b4505..1cb3da7098f 100644 --- a/lib/private/contactsmanager.php +++ b/lib/private/contactsmanager.php @@ -47,7 +47,7 @@ namespace OC { * This function can be used to delete the contact identified by the given id * * @param object $id the unique identifier to a contact - * @param $address_book_key + * @param string $address_book_key identifier of the address book in which the contact shall be deleted * @return bool successful or not */ public function delete($id, $address_book_key) { @@ -66,7 +66,7 @@ namespace OC { * Otherwise the contact will be updated by replacing the entire data set. * * @param array $properties this array if key-value-pairs defines a contact - * @param $address_book_key string to identify the address book in which the contact shall be created or updated + * @param string $address_book_key identifier of the address book in which the contact shall be created or updated * @return array representing the contact just created or updated */ public function createOrUpdate($properties, $address_book_key) { diff --git a/lib/private/db.php b/lib/private/db.php index cfdac766bff..322a13642ae 100644 --- a/lib/private/db.php +++ b/lib/private/db.php @@ -313,9 +313,8 @@ class OC_DB { /** * @brief Insert a row if a matching row doesn't exists. - * @param string $table. The table to insert into in the form '*PREFIX*tableName' - * @param array $input. An array of fieldname/value pairs - * @param string $table + * @param string $table The table to insert into in the form '*PREFIX*tableName' + * @param array $input An array of fieldname/value pairs * @return boolean number of updated rows */ public static function insertIfNotExist($table, $input) { diff --git a/lib/private/image.php b/lib/private/image.php index 17caaa012f5..e0397ec8a00 100644 --- a/lib/private/image.php +++ b/lib/private/image.php @@ -34,7 +34,7 @@ class OC_Image { /** * @brief Get mime type for an image file. - * @param string|null $filepath The path to a local image file. + * @param string|null $filePath The path to a local image file. * @returns string The mime type if the it could be determined, otherwise an empty string. */ static public function getMimeTypeForFile($filePath) { diff --git a/lib/private/legacy/appconfig.php b/lib/private/legacy/appconfig.php index b6c3542a673..cb5cef7e350 100644 --- a/lib/private/legacy/appconfig.php +++ b/lib/private/legacy/appconfig.php @@ -116,8 +116,6 @@ class OC_Appconfig { /** * get multiply values, either the app or key can be used as wildcard by setting it to false * - * @param app - * @param key * @param string|false $app * @param string|false $key * @return array diff --git a/lib/private/request.php b/lib/private/request.php index afd3fda4f2d..59a9e395e85 100755 --- a/lib/private/request.php +++ b/lib/private/request.php @@ -26,7 +26,7 @@ class OC_Request { /** * @brief Checks whether a domain is considered as trusted. This is used to prevent Host Header Poisoning. - * @param string $host + * @param string $domain * @return bool */ public static function isTrustedDomain($domain) { diff --git a/lib/private/share/mailnotifications.php b/lib/private/share/mailnotifications.php index 360376294cc..afbf35aa397 100644 --- a/lib/private/share/mailnotifications.php +++ b/lib/private/share/mailnotifications.php @@ -30,7 +30,6 @@ class MailNotifications { /** * - * @param string $recipient user id * @param string $sender user id (if nothing is set we use the currently logged-in user) */ public function __construct($sender = null) { @@ -113,7 +112,7 @@ class MailNotifications { * @param string $filename the shared file * @param string $link the public link * @param int $expiration expiration date (timestamp) - * @return mixed $result true or error message + * @return string|boolean $result true or error message */ public function sendLinkShareMail($recipient, $filename, $link, $expiration) { $subject = (string)$this->l->t('%s shared »%s« with you', array($this->senderDisplayName, $filename)); diff --git a/lib/public/contacts/imanager.php b/lib/public/contacts/imanager.php index 5b9d64ecc41..005b71f298b 100644 --- a/lib/public/contacts/imanager.php +++ b/lib/public/contacts/imanager.php @@ -96,7 +96,7 @@ namespace OCP\Contacts { * This function can be used to delete the contact identified by the given id * * @param object $id the unique identifier to a contact - * @param $address_book_key + * @param string $address_book_key identifier of the address book in which the contact shall be deleted * @return bool successful or not */ function delete($id, $address_book_key); @@ -106,7 +106,7 @@ namespace OCP\Contacts { * Otherwise the contact will be updated by replacing the entire data set. * * @param array $properties this array if key-value-pairs defines a contact - * @param $address_book_key string to identify the address book in which the contact shall be created or updated + * @param string $address_book_key identifier of the address book in which the contact shall be created or updated * @return array representing the contact just created or updated */ function createOrUpdate($properties, $address_book_key); diff --git a/lib/public/iappconfig.php b/lib/public/iappconfig.php index 1f31898bf2c..2b014df2e42 100644 --- a/lib/public/iappconfig.php +++ b/lib/public/iappconfig.php @@ -55,9 +55,8 @@ interface IAppConfig { /** * get multiply values, either the app or key can be used as wildcard by setting it to false * - * @param app - * @param key - * @param string $key + * @param string|false $key + * @param string|false $app * @return array */ public function getValues($app, $key); diff --git a/tests/lib/appframework/routing/RoutingTest.php b/tests/lib/appframework/routing/RoutingTest.php index d0244cf2511..56e625fd168 100644 --- a/tests/lib/appframework/routing/RoutingTest.php +++ b/tests/lib/appframework/routing/RoutingTest.php @@ -166,9 +166,9 @@ class RouteConfigTest extends \PHPUnit_Framework_TestCase } /** - * @param $verb - * @param $controllerName - * @param $actionName + * @param string $verb + * @param string $controllerName + * @param string $actionName * @return \PHPUnit_Framework_MockObject_MockObject */ private function mockRoute($verb, $controllerName, $actionName) diff --git a/tests/lib/dbschema.php b/tests/lib/dbschema.php index 11e9fcdf4fa..cfa2d6fd9aa 100644 --- a/tests/lib/dbschema.php +++ b/tests/lib/dbschema.php @@ -71,6 +71,9 @@ class Test_DBSchema extends PHPUnit_Framework_TestCase { $this->assertTableNotExist($this->table2); } + /** + * @param string $table + */ public function tableExist($table) { switch (OC_Config::getValue( 'dbtype', 'sqlite' )) { -- GitLab From e2286c659860b107e0d2791a231eb7b4ab3dca98 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 28 Feb 2014 14:37:20 +0100 Subject: [PATCH 010/296] Type is with a small letter --- lib/public/il10n.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/public/il10n.php b/lib/public/il10n.php index bba52b4c4bb..276e5d6a554 100644 --- a/lib/public/il10n.php +++ b/lib/public/il10n.php @@ -36,7 +36,7 @@ interface IL10N { * Translating * @param string $text_singular the string to translate for exactly one object * @param string $text_plural the string to translate for n objects - * @param Integer $count Number of objects + * @param integer $count Number of objects * @param array $parameters default:array() Parameters for sprintf * @return \OC_L10N_String Translation or the same text * -- GitLab From 8951328a87c16e5ebfe4d3e5c392347db1e54f92 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 28 Feb 2014 21:03:43 +0100 Subject: [PATCH 011/296] More PHPDoc updates --- lib/private/l10n.php | 9 +++++---- lib/private/server.php | 2 +- lib/public/il10n.php | 2 +- lib/public/iservercontainer.php | 2 +- settings/admin/controller.php | 4 ++-- 5 files changed, 10 insertions(+), 9 deletions(-) diff --git a/lib/private/l10n.php b/lib/private/l10n.php index b98ccc9d58b..f0b4f9a70f6 100644 --- a/lib/private/l10n.php +++ b/lib/private/l10n.php @@ -351,7 +351,7 @@ class OC_L10N implements \OCP\IL10N { /** * @brief Localization * @param string $type Type of localization - * @param array $params parameters for this localization + * @param array $data parameters for this localization * @returns String or false * * Returns the localized data. @@ -413,9 +413,9 @@ class OC_L10N implements \OCP\IL10N { * This function is useful to avoid loading thousands of files if only one * simple string is needed, for example in appinfo.php */ - public static function selectLanguage($text) { - $lang = self::findLanguage(array_keys($text)); - return $text[$lang]; + public static function selectLanguage($texts) { + $lang = self::findLanguage(array_keys($texts)); + return $texts[$lang]; } /** @@ -533,6 +533,7 @@ class OC_L10N implements \OCP\IL10N { /** * @param string $lang + * @param string $app */ public static function languageExists($app, $lang) { if ($lang == 'en') {//english is always available diff --git a/lib/private/server.php b/lib/private/server.php index 7696fc207fd..3255713e12a 100644 --- a/lib/private/server.php +++ b/lib/private/server.php @@ -290,7 +290,7 @@ class Server extends SimpleContainer implements IServerContainer { /** * get an L10N instance - * @param $app string appid + * @param string $app appid * @return \OC_L10N */ function getL10N($app) { diff --git a/lib/public/il10n.php b/lib/public/il10n.php index 276e5d6a554..1388274c21a 100644 --- a/lib/public/il10n.php +++ b/lib/public/il10n.php @@ -52,7 +52,7 @@ interface IL10N { /** * Localization * @param string $type Type of localization - * @param array $params parameters for this localization + * @param array $data parameters for this localization * @return String or false * * Returns the localized data. diff --git a/lib/public/iservercontainer.php b/lib/public/iservercontainer.php index 5fb51f9ecd5..0eb358816d2 100644 --- a/lib/public/iservercontainer.php +++ b/lib/public/iservercontainer.php @@ -122,7 +122,7 @@ interface IServerContainer { /** * get an L10N instance - * @param $app string appid + * @param string $app appid * @return \OCP\IL10N */ function getL10N($app); diff --git a/settings/admin/controller.php b/settings/admin/controller.php index a075d774361..1a73c8fad3f 100644 --- a/settings/admin/controller.php +++ b/settings/admin/controller.php @@ -76,8 +76,8 @@ class Controller { /** * Get the field name to use it in error messages * - * @param $setting string - * @param $l \OC_L10N + * @param string $setting + * @param \OC_L10N $l * @return string */ public static function getFieldname($setting, $l) { -- GitLab From a135f1ebbbf444f7c210720c3061a4c2ff8f5b51 Mon Sep 17 00:00:00 2001 From: root Date: Fri, 6 Dec 2013 15:46:00 +0100 Subject: [PATCH 012/296] add getAllGroups() that uses a paged search if available this circumvents server side search limits (active directory has a limit of 1000 by default) --- apps/user_ldap/group_ldap.php | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/apps/user_ldap/group_ldap.php b/apps/user_ldap/group_ldap.php index cef9ca3c4cf..f455a68a34e 100644 --- a/apps/user_ldap/group_ldap.php +++ b/apps/user_ldap/group_ldap.php @@ -334,6 +334,40 @@ class GROUP_LDAP extends BackendUtility implements \OCP\GroupInterface { return $ldap_groups; } + /** + * @brief get a list of all groups using a paged search + * @returns array with group names + * + * Returns a list with all groups + * Uses a paged search if available to override a + * server side search limit. + * (active directory has a limit of 1000 by default) + */ + public function getAllGroups($search = '', $max_groups= 100000, $chunksize=900) { + if(!$this->enabled) { + return array(); + } + if (! $this->access->connection->hasPagedResultSupport) { + return $this->getGroups($search); + } + $offset = 0; + $all_groups = array(); + while ($offset < $max_groups) { + $limit = min($chunksize, $max_groups - $offset); + $ldap_groups = $this->getGroups('', $limit, $offset); + $nread = count($ldap_groups); + \OCP\Util::writeLog('user_ldap', 'getAllGroups('.$search.'): read '.$nread.' at offset '.$offset.' (limit: '.$limit.')', \OCP\Util::DEBUG); + if ($nread) { + $all_groups = array_merge($all_groups, $ldap_groups); + $offset += $nread; + } + if ($nread < $limit) { + break; + } + } + return $all_groups; + } + public function groupMatchesFilter($group) { return (strripos($group, $this->groupSearch) !== false); } -- GitLab From bacda81bf7bc20654954c3befa9cc3a95206ba0b Mon Sep 17 00:00:00 2001 From: root Date: Fri, 6 Dec 2013 15:51:19 +0100 Subject: [PATCH 013/296] use getAllGroup() in the updateGroups background job needed in active directory deployments with > 1000 groups --- apps/user_ldap/lib/jobs.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/user_ldap/lib/jobs.php b/apps/user_ldap/lib/jobs.php index 9b108da6331..2e5c440fd6b 100644 --- a/apps/user_ldap/lib/jobs.php +++ b/apps/user_ldap/lib/jobs.php @@ -41,7 +41,7 @@ class Jobs extends \OC\BackgroundJob\TimedJob { \OCP\Util::writeLog('user_ldap', 'Run background job "updateGroups"', \OCP\Util::DEBUG); $knownGroups = array_keys(self::getKnownGroups()); - $actualGroups = self::getGroupBE()->getGroups(); + $actualGroups = self::getGroupBE()->getAllGroups(); if(empty($actualGroups) && empty($knownGroups)) { \OCP\Util::writeLog('user_ldap', -- GitLab From a5813acb64c7679615a570d10933158ec054cec5 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 4 Mar 2014 17:23:04 +0100 Subject: [PATCH 014/296] add ldap_paging_size config option --- apps/user_ldap/lib/configuration.php | 5 ++++- apps/user_ldap/templates/settings.php | 1 + 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/user_ldap/lib/configuration.php b/apps/user_ldap/lib/configuration.php index 612a623e910..cc68a41d739 100644 --- a/apps/user_ldap/lib/configuration.php +++ b/apps/user_ldap/lib/configuration.php @@ -77,6 +77,7 @@ class Configuration { 'ldapExpertUUIDGroupAttr' => null, 'lastJpegPhotoLookup' => null, 'ldapNestedGroups' => false, + 'ldapPagingSize' => null, ); /** @@ -344,6 +345,7 @@ class Configuration { 'has_memberof_filter_support' => 0, 'last_jpegPhoto_lookup' => 0, 'ldap_nested_groups' => 0, + 'ldap_paging_size' => 0, ); } @@ -395,7 +397,8 @@ class Configuration { 'ldap_expert_uuid_group_attr' => 'ldapExpertUUIDGroupAttr', 'has_memberof_filter_support' => 'hasMemberOfFilterSupport', 'last_jpegPhoto_lookup' => 'lastJpegPhotoLookup', - 'ldap_nested_groups' => 'ldapNestedGroups', + 'ldap_nested_groups' => 'ldapNestedGroups', + 'ldap_paging_size' => 'ldapPagingSize', ); return $array; } diff --git a/apps/user_ldap/templates/settings.php b/apps/user_ldap/templates/settings.php index 79c4ae224c3..a61d00bc159 100644 --- a/apps/user_ldap/templates/settings.php +++ b/apps/user_ldap/templates/settings.php @@ -37,6 +37,7 @@

    +

    t('Special Attributes'));?>

    -- GitLab From 039f7b054a0ffb8ceda5feeb2c522adb737e6a7c Mon Sep 17 00:00:00 2001 From: root Date: Tue, 4 Mar 2014 18:02:27 +0100 Subject: [PATCH 015/296] merge functionality of getAllGroups into getGroups --- apps/user_ldap/group_ldap.php | 33 ++++++++++++++++++--------------- 1 file changed, 18 insertions(+), 15 deletions(-) diff --git a/apps/user_ldap/group_ldap.php b/apps/user_ldap/group_ldap.php index f455a68a34e..c1008a5deda 100644 --- a/apps/user_ldap/group_ldap.php +++ b/apps/user_ldap/group_ldap.php @@ -299,9 +299,9 @@ class GROUP_LDAP extends BackendUtility implements \OCP\GroupInterface { * @brief get a list of all groups * @returns array with group names * - * Returns a list with all groups + * Returns a list with all groups (used by getGroups) */ - public function getGroups($search = '', $limit = -1, $offset = 0) { + private function getGroupsChunk($search = '', $limit = -1, $offset = 0) { if(!$this->enabled) { return array(); } @@ -339,29 +339,32 @@ class GROUP_LDAP extends BackendUtility implements \OCP\GroupInterface { * @returns array with group names * * Returns a list with all groups - * Uses a paged search if available to override a - * server side search limit. - * (active directory has a limit of 1000 by default) + * Uses a paged search if available to override a + * server side search limit. + * (active directory has a limit of 1000 by default) */ - public function getAllGroups($search = '', $max_groups= 100000, $chunksize=900) { + public function getGroups($search = '', $limit = -1, $offset = 0) { + $max_groups = 100000; // limit max results (just for safety reasons) if(!$this->enabled) { return array(); } - if (! $this->access->connection->hasPagedResultSupport) { - return $this->getGroups($search); + $pagingsize = $this->access->connection->ldapPagingSize; + if ((! $this->access->connection->hasPagedResultSupport) + || empty($pagingsize)) { + return $this->getGroupsChunk($search, $limit, $offset); } - $offset = 0; + $chunk_offset = $offset; $all_groups = array(); - while ($offset < $max_groups) { - $limit = min($chunksize, $max_groups - $offset); - $ldap_groups = $this->getGroups('', $limit, $offset); + while ($chunk_offset < $max_groups) { + $chunk_limit = min($pagingsize, $max_groups - $chunk_offset); + $ldap_groups = $this->getGroupsChunk('', $chunk_limit, $chunk_offset); $nread = count($ldap_groups); - \OCP\Util::writeLog('user_ldap', 'getAllGroups('.$search.'): read '.$nread.' at offset '.$offset.' (limit: '.$limit.')', \OCP\Util::DEBUG); + \OCP\Util::writeLog('user_ldap', 'getAllGroups('.$search.'): read '.$nread.' at offset '.$chunk_offset.' (limit: '.$chunk_limit.')', \OCP\Util::DEBUG); if ($nread) { $all_groups = array_merge($all_groups, $ldap_groups); - $offset += $nread; + $chunk_offset += $nread; } - if ($nread < $limit) { + if ($nread < $chunk_limit) { break; } } -- GitLab From eb59e63c3b031b9a80a24865beb41a94eaa3b246 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 4 Mar 2014 19:47:49 +0100 Subject: [PATCH 016/296] revert updateGroups job to use getGroups() instead of getAllGroups() --- apps/user_ldap/lib/jobs.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/user_ldap/lib/jobs.php b/apps/user_ldap/lib/jobs.php index 2e5c440fd6b..9b108da6331 100644 --- a/apps/user_ldap/lib/jobs.php +++ b/apps/user_ldap/lib/jobs.php @@ -41,7 +41,7 @@ class Jobs extends \OC\BackgroundJob\TimedJob { \OCP\Util::writeLog('user_ldap', 'Run background job "updateGroups"', \OCP\Util::DEBUG); $knownGroups = array_keys(self::getKnownGroups()); - $actualGroups = self::getGroupBE()->getAllGroups(); + $actualGroups = self::getGroupBE()->getGroups(); if(empty($actualGroups) && empty($knownGroups)) { \OCP\Util::writeLog('user_ldap', -- GitLab From eb1e36182470b5aa71b4ecd2253479e81c388898 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 4 Mar 2014 21:07:27 +0100 Subject: [PATCH 017/296] getGroups() $limit was not handled correctly --- apps/user_ldap/group_ldap.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/apps/user_ldap/group_ldap.php b/apps/user_ldap/group_ldap.php index c1008a5deda..861636a763f 100644 --- a/apps/user_ldap/group_ldap.php +++ b/apps/user_ldap/group_ldap.php @@ -353,10 +353,15 @@ class GROUP_LDAP extends BackendUtility implements \OCP\GroupInterface { || empty($pagingsize)) { return $this->getGroupsChunk($search, $limit, $offset); } + if ($limit > -1) { + $overall_limit = min($limit, 100000); + } else { + $overall_limit = 100000; + } $chunk_offset = $offset; $all_groups = array(); - while ($chunk_offset < $max_groups) { - $chunk_limit = min($pagingsize, $max_groups - $chunk_offset); + while ($chunk_offset < $overall_limit) { + $chunk_limit = min($pagingsize, $overall_limit - $chunk_offset); $ldap_groups = $this->getGroupsChunk('', $chunk_limit, $chunk_offset); $nread = count($ldap_groups); \OCP\Util::writeLog('user_ldap', 'getAllGroups('.$search.'): read '.$nread.' at offset '.$chunk_offset.' (limit: '.$chunk_limit.')', \OCP\Util::DEBUG); -- GitLab From 4645d0a93a1dbf5c89b78d226d069de0dff13167 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 4 Mar 2014 21:12:47 +0100 Subject: [PATCH 018/296] getGroups(): fix overall max search limit for paged searches --- apps/user_ldap/group_ldap.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/user_ldap/group_ldap.php b/apps/user_ldap/group_ldap.php index 861636a763f..7efbc025ba8 100644 --- a/apps/user_ldap/group_ldap.php +++ b/apps/user_ldap/group_ldap.php @@ -344,7 +344,6 @@ class GROUP_LDAP extends BackendUtility implements \OCP\GroupInterface { * (active directory has a limit of 1000 by default) */ public function getGroups($search = '', $limit = -1, $offset = 0) { - $max_groups = 100000; // limit max results (just for safety reasons) if(!$this->enabled) { return array(); } @@ -353,10 +352,11 @@ class GROUP_LDAP extends BackendUtility implements \OCP\GroupInterface { || empty($pagingsize)) { return $this->getGroupsChunk($search, $limit, $offset); } + $max_groups = 100000; // limit max results (just for safety reasons) if ($limit > -1) { - $overall_limit = min($limit, 100000); + $overall_limit = min($limit, $max_groups); } else { - $overall_limit = 100000; + $overall_limit = $max_groups; } $chunk_offset = $offset; $all_groups = array(); -- GitLab From 84550fbfb472f31914fc155c4e9228f4c8ba6052 Mon Sep 17 00:00:00 2001 From: root Date: Wed, 5 Mar 2014 10:42:35 +0100 Subject: [PATCH 019/296] fix another oversight... sigh.. --- apps/user_ldap/group_ldap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/user_ldap/group_ldap.php b/apps/user_ldap/group_ldap.php index 7efbc025ba8..064631d789d 100644 --- a/apps/user_ldap/group_ldap.php +++ b/apps/user_ldap/group_ldap.php @@ -362,7 +362,7 @@ class GROUP_LDAP extends BackendUtility implements \OCP\GroupInterface { $all_groups = array(); while ($chunk_offset < $overall_limit) { $chunk_limit = min($pagingsize, $overall_limit - $chunk_offset); - $ldap_groups = $this->getGroupsChunk('', $chunk_limit, $chunk_offset); + $ldap_groups = $this->getGroupsChunk($search, $chunk_limit, $chunk_offset); $nread = count($ldap_groups); \OCP\Util::writeLog('user_ldap', 'getAllGroups('.$search.'): read '.$nread.' at offset '.$chunk_offset.' (limit: '.$chunk_limit.')', \OCP\Util::DEBUG); if ($nread) { -- GitLab From 0f1374c02882df35c8c6142455ce0961ad0b6643 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 6 Mar 2014 16:01:13 +0100 Subject: [PATCH 020/296] Allow using pathinfo based public.php paths --- public.php | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/public.php b/public.php index 767295b98db..6592c6f0601 100644 --- a/public.php +++ b/public.php @@ -6,24 +6,32 @@ try { require_once 'lib/base.php'; OC::checkMaintenanceMode(); OC::checkSingleUserMode(); - if (!isset($_GET['service'])) { + $pathInfo = OC_Request::getPathInfo(); + if (!$pathInfo && !isset($_GET['service'])) { header('HTTP/1.0 404 Not Found'); exit; + } elseif ($_GET['service']) { + $service = $_GET['service']; + } else { + $pathInfo = trim($pathInfo, '/'); + list($service) = explode('/', $pathInfo); } - $file = OCP\CONFIG::getAppValue('core', 'public_' . strip_tags($_GET['service'])); - if(is_null($file)) { + $file = OCP\CONFIG::getAppValue('core', 'public_' . strip_tags($service)); + if (is_null($file)) { header('HTTP/1.0 404 Not Found'); exit; } - $parts=explode('/', $file, 2); - $app=$parts[0]; + $parts = explode('/', $file, 2); + $app = $parts[0]; OC_Util::checkAppEnabled($app); OC_App::loadApp($app); OC_User::setIncognitoMode(true); - require_once OC_App::getAppPath($app) .'/'. $parts[1]; + $baseuri = OC::$WEBROOT . '/public.php/' . $service . '/'; + + require_once OC_App::getAppPath($app) . '/' . $parts[1]; } catch (Exception $ex) { //show the user a detailed error page -- GitLab From ceb5b918d750f39ddb3d8a4575be9bf42096cbc1 Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Thu, 6 Mar 2014 23:56:11 +0100 Subject: [PATCH 021/296] Add \OC:: to URLGenerator::getAbsoluteURL() --- lib/private/urlgenerator.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/private/urlgenerator.php b/lib/private/urlgenerator.php index 60da34f2d6e..aa06d6fca11 100644 --- a/lib/private/urlgenerator.php +++ b/lib/private/urlgenerator.php @@ -148,6 +148,7 @@ class URLGenerator implements IURLGenerator { */ public function getAbsoluteURL($url) { $separator = $url[0] === '/' ? '' : '/'; - return \OC_Request::serverProtocol() . '://' . \OC_Request::serverHost() . $separator . $url; + + return \OC_Request::serverProtocol() . '://' . \OC_Request::serverHost(). \OC::$WEBROOT . $separator . $url; } } -- GitLab From ada8d4e0c91a885ca21db6b2bf4ca5d5c932e51b Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Fri, 7 Mar 2014 02:44:34 +0100 Subject: [PATCH 022/296] Fix unit tests --- tests/lib/urlgenerator.php | 30 +++++++++++++++++++++++++++--- 1 file changed, 27 insertions(+), 3 deletions(-) diff --git a/tests/lib/urlgenerator.php b/tests/lib/urlgenerator.php index 875a7f06580..8e605d88f32 100644 --- a/tests/lib/urlgenerator.php +++ b/tests/lib/urlgenerator.php @@ -12,17 +12,32 @@ class Test_Urlgenerator extends PHPUnit_Framework_TestCase { /** * @small * @brief test absolute URL construction - * @dataProvider provideURLs + * @dataProvider provideDocRootURLs */ - function testGetAbsoluteURL($url, $expectedResult) { + function testGetAbsoluteURLDocRoot($url, $expectedResult) { + \OC::$WEBROOT = ''; $urlGenerator = new \OC\URLGenerator(null); $result = $urlGenerator->getAbsoluteURL($url); $this->assertEquals($expectedResult, $result); } - public function provideURLs() { + /** + * @small + * @brief test absolute URL construction + * @dataProvider provideSubDirURLs + */ + function testGetAbsoluteURLSubDir($url, $expectedResult) { + + \OC::$WEBROOT = '/owncloud'; + $urlGenerator = new \OC\URLGenerator(null); + $result = $urlGenerator->getAbsoluteURL($url); + + $this->assertEquals($expectedResult, $result); + } + + public function provideDocRootURLs() { return array( array("index.php", "http://localhost/index.php"), array("/index.php", "http://localhost/index.php"), @@ -30,5 +45,14 @@ class Test_Urlgenerator extends PHPUnit_Framework_TestCase { array("apps/index.php", "http://localhost/apps/index.php"), ); } + + public function provideSubDirURLs() { + return array( + array("index.php", "http://localhost/owncloud/index.php"), + array("/index.php", "http://localhost/owncloud/index.php"), + array("/apps/index.php", "http://localhost/owncloud/apps/index.php"), + array("apps/index.php", "http://localhost/owncloud/apps/index.php"), + ); + } } -- GitLab From 8f6ea900f2f75bfdfadb7f484ec64ac7ea78623c Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Sun, 9 Mar 2014 23:01:16 +0100 Subject: [PATCH 023/296] Chainable Response in AppFramework --- lib/public/appframework/http/jsonresponse.php | 2 ++ lib/public/appframework/http/response.php | 9 +++++++++ .../appframework/http/templateresponse.php | 4 ++++ .../appframework/http/JSONResponseTest.php | 10 ++++++++++ tests/lib/appframework/http/ResponseTest.php | 20 +++++++++++++++++++ .../http/TemplateResponseTest.php | 10 ++++++++++ 6 files changed, 55 insertions(+) diff --git a/lib/public/appframework/http/jsonresponse.php b/lib/public/appframework/http/jsonresponse.php index b54b23a34e6..bcfe469ef1b 100644 --- a/lib/public/appframework/http/jsonresponse.php +++ b/lib/public/appframework/http/jsonresponse.php @@ -69,6 +69,8 @@ class JSONResponse extends Response { */ public function setData($data){ $this->data = $data; + + return $this; } diff --git a/lib/public/appframework/http/response.php b/lib/public/appframework/http/response.php index d223621d4fd..e704acca7f0 100644 --- a/lib/public/appframework/http/response.php +++ b/lib/public/appframework/http/response.php @@ -80,6 +80,7 @@ class Response { $this->addHeader('Cache-Control', 'no-cache, must-revalidate'); } + return $this; } @@ -95,6 +96,8 @@ class Response { } else { $this->headers[$name] = $value; } + + return $this; } @@ -133,6 +136,8 @@ class Response { */ public function setStatus($status) { $this->status = $status; + + return $this; } @@ -168,6 +173,8 @@ class Response { */ public function setETag($ETag) { $this->ETag = $ETag; + + return $this; } @@ -177,6 +184,8 @@ class Response { */ public function setLastModified($lastModified) { $this->lastModified = $lastModified; + + return $this; } diff --git a/lib/public/appframework/http/templateresponse.php b/lib/public/appframework/http/templateresponse.php index 2200a38beca..1ae22dde7ff 100644 --- a/lib/public/appframework/http/templateresponse.php +++ b/lib/public/appframework/http/templateresponse.php @@ -77,6 +77,8 @@ class TemplateResponse extends Response { */ public function setParams(array $params){ $this->params = $params; + + return $this; } @@ -107,6 +109,8 @@ class TemplateResponse extends Response { */ public function renderAs($renderAs){ $this->renderAs = $renderAs; + + return $this; } diff --git a/tests/lib/appframework/http/JSONResponseTest.php b/tests/lib/appframework/http/JSONResponseTest.php index 534c54cbcee..b9b7c7d6382 100644 --- a/tests/lib/appframework/http/JSONResponseTest.php +++ b/tests/lib/appframework/http/JSONResponseTest.php @@ -28,6 +28,7 @@ namespace OC\AppFramework\Http; use OCP\AppFramework\Http\JSONResponse; +use OCP\AppFramework\Http; //require_once(__DIR__ . "/../classloader.php"); @@ -95,4 +96,13 @@ class JSONResponseTest extends \PHPUnit_Framework_TestCase { $this->assertEquals($code, $response->getStatus()); } + public function testChainability() { + $params = array('hi', 'yo'); + $this->json->setData($params) + ->setStatus(Http::STATUS_NOT_FOUND); + + $this->assertEquals(Http::STATUS_NOT_FOUND, $this->json->getStatus()); + $this->assertEquals(array('hi', 'yo'), $this->json->getData()); + } + } diff --git a/tests/lib/appframework/http/ResponseTest.php b/tests/lib/appframework/http/ResponseTest.php index 063ab8b5d33..27350725d79 100644 --- a/tests/lib/appframework/http/ResponseTest.php +++ b/tests/lib/appframework/http/ResponseTest.php @@ -117,5 +117,25 @@ class ResponseTest extends \PHPUnit_Framework_TestCase { $this->assertEquals('Thu, 01 Jan 1970 00:00:01 +0000', $headers['Last-Modified']); } + public function testChainability() { + $lastModified = new \DateTime(null, new \DateTimeZone('GMT')); + $lastModified->setTimestamp(1); + + $this->childResponse->setEtag('hi') + ->setStatus(Http::STATUS_NOT_FOUND) + ->setLastModified($lastModified) + ->cacheFor(33) + ->addHeader('hello', 'world'); + + $headers = $this->childResponse->getHeaders(); + + $this->assertEquals('world', $headers['hello']); + $this->assertEquals(Http::STATUS_NOT_FOUND, $this->childResponse->getStatus()); + $this->assertEquals('hi', $this->childResponse->getEtag()); + $this->assertEquals('Thu, 01 Jan 1970 00:00:01 +0000', $headers['Last-Modified']); + $this->assertEquals('max-age=33, must-revalidate', + $headers['Cache-Control']); + + } } diff --git a/tests/lib/appframework/http/TemplateResponseTest.php b/tests/lib/appframework/http/TemplateResponseTest.php index a583d9da14f..0b158edff6f 100644 --- a/tests/lib/appframework/http/TemplateResponseTest.php +++ b/tests/lib/appframework/http/TemplateResponseTest.php @@ -25,6 +25,7 @@ namespace OC\AppFramework\Http; use OCP\AppFramework\Http\TemplateResponse; +use OCP\AppFramework\Http; class TemplateResponseTest extends \PHPUnit_Framework_TestCase { @@ -98,4 +99,13 @@ class TemplateResponseTest extends \PHPUnit_Framework_TestCase { $this->assertEquals($render, $this->tpl->getRenderAs()); } + public function testChainability() { + $params = array('hi' => 'yo'); + $this->tpl->setParams($params) + ->setStatus(Http::STATUS_NOT_FOUND); + + $this->assertEquals(Http::STATUS_NOT_FOUND, $this->tpl->getStatus()); + $this->assertEquals(array('hi' => 'yo'), $this->tpl->getParams()); + } + } -- GitLab From a1aacc18dff11351b555304a5361a73e13684bd1 Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Mon, 10 Mar 2014 09:31:30 +0100 Subject: [PATCH 024/296] Add @return PHPDocs --- lib/public/appframework/http/jsonresponse.php | 1 + lib/public/appframework/http/response.php | 4 ++++ lib/public/appframework/http/templateresponse.php | 2 ++ 3 files changed, 7 insertions(+) diff --git a/lib/public/appframework/http/jsonresponse.php b/lib/public/appframework/http/jsonresponse.php index bcfe469ef1b..6628c4514d9 100644 --- a/lib/public/appframework/http/jsonresponse.php +++ b/lib/public/appframework/http/jsonresponse.php @@ -66,6 +66,7 @@ class JSONResponse extends Response { * Sets values in the data json array * @param array|object $data an array or object which will be transformed * to JSON + * @return JSONResponse Reference to this object */ public function setData($data){ $this->data = $data; diff --git a/lib/public/appframework/http/response.php b/lib/public/appframework/http/response.php index e704acca7f0..45402d9b3b3 100644 --- a/lib/public/appframework/http/response.php +++ b/lib/public/appframework/http/response.php @@ -89,6 +89,7 @@ class Response { * function * @param string $name The name of the HTTP header * @param string $value The value, null will delete it + * @return Response Reference to this object */ public function addHeader($name, $value) { if(is_null($value)) { @@ -133,6 +134,7 @@ class Response { /** * Set response status * @param int $status a HTTP status code, see also the STATUS constants + * @return Response Reference to this object */ public function setStatus($status) { $this->status = $status; @@ -170,6 +172,7 @@ class Response { /** * Set the ETag * @param string $ETag + * @return Response Reference to this object */ public function setETag($ETag) { $this->ETag = $ETag; @@ -181,6 +184,7 @@ class Response { /** * Set "last modified" date * @param \DateTime $lastModified + * @return Response Reference to this object */ public function setLastModified($lastModified) { $this->lastModified = $lastModified; diff --git a/lib/public/appframework/http/templateresponse.php b/lib/public/appframework/http/templateresponse.php index 1ae22dde7ff..f5baf788ada 100644 --- a/lib/public/appframework/http/templateresponse.php +++ b/lib/public/appframework/http/templateresponse.php @@ -74,6 +74,7 @@ class TemplateResponse extends Response { * Sets template parameters * @param array $params an array with key => value structure which sets template * variables + * @return TemplateResponse Reference to this object */ public function setParams(array $params){ $this->params = $params; @@ -106,6 +107,7 @@ class TemplateResponse extends Response { * settings header and footer, user renders the normal * normal page including footer and header and blank * just renders the plain template + * @return TemplateResponse Reference to this object */ public function renderAs($renderAs){ $this->renderAs = $renderAs; -- GitLab From d798169037e666ab9b4165666193019d4dd18aaf Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Tue, 11 Mar 2014 21:01:16 +0100 Subject: [PATCH 025/296] Cleanup the fileproxy proxies on test bootstrap --- tests/bootstrap.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/bootstrap.php b/tests/bootstrap.php index 581cfcff9f3..88f5de4b584 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -11,3 +11,4 @@ if(!class_exists('PHPUnit_Framework_TestCase')) { OC_Hook::clear(); OC_Log::$enabled = false; +OC_FileProxy::clearProxies(); -- GitLab From 820b161fc42a9a696d9de8c640a7e389b87da454 Mon Sep 17 00:00:00 2001 From: rnveach Date: Wed, 12 Mar 2014 19:20:59 -0400 Subject: [PATCH 026/296] added missing ignores for files and directories created by "autotest-js" --- .gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitignore b/.gitignore index e61ec6f0359..b24edc91282 100644 --- a/.gitignore +++ b/.gitignore @@ -86,6 +86,11 @@ nbproject # Node Modules /build/node_modules/ +# nodejs +/build/lib/ +/npm-debug.log + + # Tests - auto-generated files /data-autotest /tests/coverage* -- GitLab From e37455493b3db5f89e734ae840bd65b71ee46b6e Mon Sep 17 00:00:00 2001 From: rnveach Date: Wed, 12 Mar 2014 19:22:11 -0400 Subject: [PATCH 027/296] added missing packages required to run "karma" and "phantomjs" inside "autotest-js" --- build/package.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build/package.json b/build/package.json index c9ed7b96c6c..0c395839cf9 100644 --- a/build/package.json +++ b/build/package.json @@ -14,7 +14,9 @@ "karma": "*", "karma-jasmine": "*", "karma-junit-reporter": "*", - "karma-coverage": "*" + "karma-coverage": "*", + "karma-phantomjs-launcher": "*", + "phantomjs": "*" }, "engine": "node >= 0.8" } -- GitLab From 7f8b04d3e0392849de42a2b834bc1213d4c6149f Mon Sep 17 00:00:00 2001 From: Alexander Bergolth Date: Thu, 13 Mar 2014 09:33:07 +0100 Subject: [PATCH 028/296] adapt coding style --- apps/user_ldap/group_ldap.php | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/apps/user_ldap/group_ldap.php b/apps/user_ldap/group_ldap.php index 064631d789d..cb6d256e5cc 100644 --- a/apps/user_ldap/group_ldap.php +++ b/apps/user_ldap/group_ldap.php @@ -352,28 +352,28 @@ class GROUP_LDAP extends BackendUtility implements \OCP\GroupInterface { || empty($pagingsize)) { return $this->getGroupsChunk($search, $limit, $offset); } - $max_groups = 100000; // limit max results (just for safety reasons) + $maxGroups = 100000; // limit max results (just for safety reasons) if ($limit > -1) { - $overall_limit = min($limit, $max_groups); + $overallLimit = min($limit, $maxGroups); } else { - $overall_limit = $max_groups; - } - $chunk_offset = $offset; - $all_groups = array(); - while ($chunk_offset < $overall_limit) { - $chunk_limit = min($pagingsize, $overall_limit - $chunk_offset); - $ldap_groups = $this->getGroupsChunk($search, $chunk_limit, $chunk_offset); - $nread = count($ldap_groups); - \OCP\Util::writeLog('user_ldap', 'getAllGroups('.$search.'): read '.$nread.' at offset '.$chunk_offset.' (limit: '.$chunk_limit.')', \OCP\Util::DEBUG); + $overallLimit = $maxGroups; + } + $chunkOffset = $offset; + $allGroups = array(); + while ($chunkOffset < $overallLimit) { + $chunkLimit = min($pagingsize, $overallLimit - $chunkOffset); + $ldapGroups = $this->getGroupsChunk($search, $chunkLimit, $chunkOffset); + $nread = count($ldapGroups); + \OCP\Util::writeLog('user_ldap', 'getGroups('.$search.'): read '.$nread.' at offset '.$chunkOffset.' (limit: '.$chunkLimit.')', \OCP\Util::DEBUG); if ($nread) { - $all_groups = array_merge($all_groups, $ldap_groups); - $chunk_offset += $nread; + $allGroups = array_merge($allGroups, $ldapGroups); + $chunkOffset += $nread; } - if ($nread < $chunk_limit) { + if ($nread < $chunkLimit) { break; } } - return $all_groups; + return $allGroups; } public function groupMatchesFilter($group) { -- GitLab From c76d952dacd049971d128ec4061603e127de766e Mon Sep 17 00:00:00 2001 From: Alexander Bergolth Date: Thu, 13 Mar 2014 10:57:19 +0100 Subject: [PATCH 029/296] make getGroupsChunk() protected instead of private --- apps/user_ldap/group_ldap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/user_ldap/group_ldap.php b/apps/user_ldap/group_ldap.php index cb6d256e5cc..4f2424d9531 100644 --- a/apps/user_ldap/group_ldap.php +++ b/apps/user_ldap/group_ldap.php @@ -301,7 +301,7 @@ class GROUP_LDAP extends BackendUtility implements \OCP\GroupInterface { * * Returns a list with all groups (used by getGroups) */ - private function getGroupsChunk($search = '', $limit = -1, $offset = 0) { + protected function getGroupsChunk($search = '', $limit = -1, $offset = 0) { if(!$this->enabled) { return array(); } -- GitLab From d58fda7ff3e8f67e7699123eb4cca8248484c9ea Mon Sep 17 00:00:00 2001 From: Jamie McClelland Date: Sat, 23 Nov 2013 19:47:45 -0500 Subject: [PATCH 030/296] fix update to remove shares where file doesn't exist on postgres Without patch, breaks with: Failed to upgrade "files_sharing". Exception="SQLSTATE[22P02]: Invalid text representation: 7 ERROR: invalid input syntax for integer: "5,179"" See: https://github.com/owncloud/core/issues/5758 removing unnecessary cruft - no parameter is set, none to pass. https://github.com/owncloud/core/issues/5758 removing subquery, making more readable See: https://github.com/owncloud/core/pull/6016#issuecomment-29510979 parameters to sql calls should be arrays https://github.com/owncloud/core/pull/6016 boosting version to ensure fix gets executed properly escaping the sql select statement removing extraneous closing paren. --- apps/files_sharing/appinfo/update.php | 27 +++++++++++++-------------- apps/files_sharing/appinfo/version | 2 +- 2 files changed, 14 insertions(+), 15 deletions(-) diff --git a/apps/files_sharing/appinfo/update.php b/apps/files_sharing/appinfo/update.php index 4b716e764f4..446c94ea540 100644 --- a/apps/files_sharing/appinfo/update.php +++ b/apps/files_sharing/appinfo/update.php @@ -71,19 +71,18 @@ if (version_compare($installedVersion, '0.3', '<')) { } // clean up oc_share table from files which are no longer exists -if (version_compare($installedVersion, '0.3.5', '<')) { +if (version_compare($installedVersion, '0.3.5.6', '<')) { + // delete all shares where the original file no longer exists + $findShares = \OC_DB::prepare('SELECT `*PREFIX*share`.`id` ' . + 'FROM `*PREFIX*share` LEFT JOIN `*PREFIX*filecache` ON `file_source` = `*PREFIX*filecache`.`fileid` ' . + 'WHERE `*PREFIX*filecache`.`fileid` IS NULL AND `*PREFIX*share`.`item_type` IN (\'file\', \'folder\')'); + $sharesFound = $findShares->execute(array())->fetchAll(); - // get all shares where the original file no longer exists - $findShares = \OC_DB::prepare('SELECT `file_source` FROM `*PREFIX*share` LEFT JOIN `*PREFIX*filecache` ON `file_source` = `*PREFIX*filecache`.`fileid` WHERE `*PREFIX*filecache`.`fileid` IS NULL AND `*PREFIX*share`.`item_type` IN (\'file\', \'folder\')'); - $sharesFound = $findShares->execute(array())->fetchAll(); - - // delete those shares from the oc_share table - if (is_array($sharesFound) && !empty($sharesFound)) { - $delArray = array(); - foreach ($sharesFound as $share) { - $delArray[] = $share['file_source']; - } - $removeShares = \OC_DB::prepare('DELETE FROM `*PREFIX*share` WHERE `file_source` IN (?)'); - $result = $removeShares->execute(array(implode(',', $delArray))); - } + // delete those shares from the oc_share table + if (is_array($sharesFound) && !empty($sharesFound)) { + $removeShares = \OC_DB::prepare('DELETE FROM `*PREFIX*share` WHERE `id` = ? '); + foreach ($sharesFound as $share) { + $result = $removeShares->execute(array($share['id'])); + } + } } diff --git a/apps/files_sharing/appinfo/version b/apps/files_sharing/appinfo/version index 09e9157034c..8f91d33378e 100644 --- a/apps/files_sharing/appinfo/version +++ b/apps/files_sharing/appinfo/version @@ -1 +1 @@ -0.3.5 \ No newline at end of file +0.3.5.6 -- GitLab From ec54bc77093265b2b9f03eecc1507cb266683624 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Thu, 20 Feb 2014 15:21:53 +0100 Subject: [PATCH 031/296] Refactor update script to class and add unit test --- apps/files_sharing/appinfo/update.php | 14 +---- apps/files_sharing/lib/updater.php | 22 +++++++ apps/files_sharing/tests/updater.php | 85 +++++++++++++++++++++++++++ 3 files changed, 108 insertions(+), 13 deletions(-) create mode 100644 apps/files_sharing/tests/updater.php diff --git a/apps/files_sharing/appinfo/update.php b/apps/files_sharing/appinfo/update.php index 446c94ea540..ab32108ea25 100644 --- a/apps/files_sharing/appinfo/update.php +++ b/apps/files_sharing/appinfo/update.php @@ -72,17 +72,5 @@ if (version_compare($installedVersion, '0.3', '<')) { // clean up oc_share table from files which are no longer exists if (version_compare($installedVersion, '0.3.5.6', '<')) { - // delete all shares where the original file no longer exists - $findShares = \OC_DB::prepare('SELECT `*PREFIX*share`.`id` ' . - 'FROM `*PREFIX*share` LEFT JOIN `*PREFIX*filecache` ON `file_source` = `*PREFIX*filecache`.`fileid` ' . - 'WHERE `*PREFIX*filecache`.`fileid` IS NULL AND `*PREFIX*share`.`item_type` IN (\'file\', \'folder\')'); - $sharesFound = $findShares->execute(array())->fetchAll(); - - // delete those shares from the oc_share table - if (is_array($sharesFound) && !empty($sharesFound)) { - $removeShares = \OC_DB::prepare('DELETE FROM `*PREFIX*share` WHERE `id` = ? '); - foreach ($sharesFound as $share) { - $result = $removeShares->execute(array($share['id'])); - } - } + \OC\Files\Cache\Shared_Updater::fixBrokenSharesOnAppUpdate(); } diff --git a/apps/files_sharing/lib/updater.php b/apps/files_sharing/lib/updater.php index 23ebc9fb811..950575ec26b 100644 --- a/apps/files_sharing/lib/updater.php +++ b/apps/files_sharing/lib/updater.php @@ -135,4 +135,26 @@ class Shared_Updater { } } + /** + * clean up oc_share table from files which are no longer exists + * + * This fixes issues from updates from files_sharing < 0.3.5.6 (ownCloud 4.5) + * It will just be called during the update of the app + */ + static public function fixBrokenSharesOnAppUpdate() { + // delete all shares where the original file no longer exists + $findShares = \OC_DB::prepare('SELECT `*PREFIX*share`.`id` ' . + 'FROM `*PREFIX*share` LEFT JOIN `*PREFIX*filecache` ON `file_source` = `*PREFIX*filecache`.`fileid` ' . + 'WHERE `*PREFIX*filecache`.`fileid` IS NULL AND `*PREFIX*share`.`item_type` IN (\'file\', \'folder\')'); + $sharesFound = $findShares->execute(array())->fetchAll(); + + // delete those shares from the oc_share table + if (is_array($sharesFound) && !empty($sharesFound)) { + $removeShares = \OC_DB::prepare('DELETE FROM `*PREFIX*share` WHERE `id` = ? '); + foreach ($sharesFound as $share) { + $result = $removeShares->execute(array($share['id'])); + } + } + } + } diff --git a/apps/files_sharing/tests/updater.php b/apps/files_sharing/tests/updater.php new file mode 100644 index 00000000000..f369062c229 --- /dev/null +++ b/apps/files_sharing/tests/updater.php @@ -0,0 +1,85 @@ + + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE + * License as published by the Free Software Foundation; either + * version 3 of the License, or any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU Affero General Public + * License along with this library. If not, see . + * + */ + +/** + * Class Test_Files_Sharing_Updater + */ +class Test_Files_Sharing_Updater extends \PHPUnit_Framework_TestCase { + + function setUp() { + $addShares = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (file_source, id, item_type, uid_owner) VALUES (?, ?, \'file\', 1)'); + $shares = array(1, 2, 3); + foreach($shares as $share) { + // the number is used as item_source and id + $addShares->execute(array($share, $share)); + } + // add items except one - because this is the test case for the broken share table + $addItems = \OC_DB::prepare('INSERT INTO `*PREFIX*filecache` (fileid, storage, path_hash, ' . + 'parent, mimetype, mimepart, size, mtime, storage_mtime) ' . + 'VALUES (?, 1, ?, 1, 1, 1, 1, 1, 1)'); + $items = array(1, 3); + foreach($items as $item) { + // the number is used as file_id and path_hash + $addItems->execute(array($item, $item)); + } + } + + function tearDown() { + $removeShares = \OC_DB::prepare('DELETE FROM `*PREFIX*share`'); + $removeShares->execute(); + $removeItems = \OC_DB::prepare('DELETE FROM `*PREFIX*filecache`'); + $removeItems->execute(); + } + + /** + * @medium + */ + function testRemoveBrokenShares() { + // check if there are just 3 shares (see setUp - precondition: empty table) + $countShares = \OC_DB::prepare('SELECT COUNT(id) FROM `*PREFIX*share`'); + $result = $countShares->execute()->fetchOne(); + $this->assertEquals(3, $result); + + // check if there are just 2 items (see setUp - precondition: empty table) + $countItems = \OC_DB::prepare('SELECT COUNT(fileid) FROM `*PREFIX*filecache`'); + $result = $countItems->execute()->fetchOne(); + $this->assertEquals(2, $result); + + // execute actual code which should be tested + \OC\Files\Cache\Shared_Updater::fixBrokenSharesOnAppUpdate(); + + // check if there are just 2 shares (one gets killed by the code as there is no filecache entry for this) + $countShares = \OC_DB::prepare('SELECT COUNT(id) FROM `*PREFIX*share`'); + $result = $countShares->execute()->fetchOne(); + $this->assertEquals(2, $result); + + // check if the share of file '2' is removed as there is no entry for this in filecache table + $countShares = \OC_DB::prepare('SELECT COUNT(id) FROM `*PREFIX*share` WHERE file_source = 2'); + $result = $countShares->execute()->fetchOne(); + $this->assertEquals(0, $result); + + // check if there are just 2 items + $countItems = \OC_DB::prepare('SELECT COUNT(fileid) FROM `*PREFIX*filecache`'); + $result = $countItems->execute()->fetchOne(); + $this->assertEquals(2, $result); + } +} -- GitLab From 4bb303cbd6152cf4199136c7142a66259531d571 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Thu, 27 Feb 2014 13:27:24 +0100 Subject: [PATCH 032/296] Clean up database before setup the database for testing --- apps/files_sharing/tests/updater.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/files_sharing/tests/updater.php b/apps/files_sharing/tests/updater.php index f369062c229..1b6e3c58d59 100644 --- a/apps/files_sharing/tests/updater.php +++ b/apps/files_sharing/tests/updater.php @@ -26,6 +26,10 @@ class Test_Files_Sharing_Updater extends \PHPUnit_Framework_TestCase { function setUp() { + // some previous tests didn't clean up and therefore this has to be done here + // FIXME: DIRTY HACK - TODO: find tests, that don't clean up and fix it there + $this->tearDown(); + $addShares = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (file_source, id, item_type, uid_owner) VALUES (?, ?, \'file\', 1)'); $shares = array(1, 2, 3); foreach($shares as $share) { -- GitLab From 02be15ce2fd78a7fd2b3b14fed6ac470666c560d Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Fri, 28 Feb 2014 15:28:50 +0100 Subject: [PATCH 033/296] Added backticks for Oracle in sharing updater unit test --- apps/files_sharing/tests/updater.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/apps/files_sharing/tests/updater.php b/apps/files_sharing/tests/updater.php index 1b6e3c58d59..1148399bf95 100644 --- a/apps/files_sharing/tests/updater.php +++ b/apps/files_sharing/tests/updater.php @@ -30,15 +30,15 @@ class Test_Files_Sharing_Updater extends \PHPUnit_Framework_TestCase { // FIXME: DIRTY HACK - TODO: find tests, that don't clean up and fix it there $this->tearDown(); - $addShares = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (file_source, id, item_type, uid_owner) VALUES (?, ?, \'file\', 1)'); + $addShares = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`file_source`, `id`, `item_type`, `uid_owner`) VALUES (?, ?, \'file\', 1)'); $shares = array(1, 2, 3); foreach($shares as $share) { // the number is used as item_source and id $addShares->execute(array($share, $share)); } // add items except one - because this is the test case for the broken share table - $addItems = \OC_DB::prepare('INSERT INTO `*PREFIX*filecache` (fileid, storage, path_hash, ' . - 'parent, mimetype, mimepart, size, mtime, storage_mtime) ' . + $addItems = \OC_DB::prepare('INSERT INTO `*PREFIX*filecache` (`fileid`, `storage`, `path_hash`, ' . + '`parent`, `mimetype`, `mimepart`, `size`, `mtime`, `storage_mtime`) ' . 'VALUES (?, 1, ?, 1, 1, 1, 1, 1, 1)'); $items = array(1, 3); foreach($items as $item) { @@ -59,12 +59,12 @@ class Test_Files_Sharing_Updater extends \PHPUnit_Framework_TestCase { */ function testRemoveBrokenShares() { // check if there are just 3 shares (see setUp - precondition: empty table) - $countShares = \OC_DB::prepare('SELECT COUNT(id) FROM `*PREFIX*share`'); + $countShares = \OC_DB::prepare('SELECT COUNT(`id`) FROM `*PREFIX*share`'); $result = $countShares->execute()->fetchOne(); $this->assertEquals(3, $result); // check if there are just 2 items (see setUp - precondition: empty table) - $countItems = \OC_DB::prepare('SELECT COUNT(fileid) FROM `*PREFIX*filecache`'); + $countItems = \OC_DB::prepare('SELECT COUNT(`fileid`) FROM `*PREFIX*filecache`'); $result = $countItems->execute()->fetchOne(); $this->assertEquals(2, $result); @@ -72,17 +72,17 @@ class Test_Files_Sharing_Updater extends \PHPUnit_Framework_TestCase { \OC\Files\Cache\Shared_Updater::fixBrokenSharesOnAppUpdate(); // check if there are just 2 shares (one gets killed by the code as there is no filecache entry for this) - $countShares = \OC_DB::prepare('SELECT COUNT(id) FROM `*PREFIX*share`'); + $countShares = \OC_DB::prepare('SELECT COUNT(`id`) FROM `*PREFIX*share`'); $result = $countShares->execute()->fetchOne(); $this->assertEquals(2, $result); // check if the share of file '2' is removed as there is no entry for this in filecache table - $countShares = \OC_DB::prepare('SELECT COUNT(id) FROM `*PREFIX*share` WHERE file_source = 2'); + $countShares = \OC_DB::prepare('SELECT COUNT(`id`) FROM `*PREFIX*share` WHERE `file_source` = 2'); $result = $countShares->execute()->fetchOne(); $this->assertEquals(0, $result); // check if there are just 2 items - $countItems = \OC_DB::prepare('SELECT COUNT(fileid) FROM `*PREFIX*filecache`'); + $countItems = \OC_DB::prepare('SELECT COUNT(`fileid`) FROM `*PREFIX*filecache`'); $result = $countItems->execute()->fetchOne(); $this->assertEquals(2, $result); } -- GitLab From 206364cd1c25e577544159a9822c9395a516d38a Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Mon, 3 Mar 2014 19:59:25 +0100 Subject: [PATCH 034/296] remove invalid shares with one SQL statement --- apps/files_sharing/lib/updater.php | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/apps/files_sharing/lib/updater.php b/apps/files_sharing/lib/updater.php index 950575ec26b..e3a7679292d 100644 --- a/apps/files_sharing/lib/updater.php +++ b/apps/files_sharing/lib/updater.php @@ -143,18 +143,11 @@ class Shared_Updater { */ static public function fixBrokenSharesOnAppUpdate() { // delete all shares where the original file no longer exists - $findShares = \OC_DB::prepare('SELECT `*PREFIX*share`.`id` ' . - 'FROM `*PREFIX*share` LEFT JOIN `*PREFIX*filecache` ON `file_source` = `*PREFIX*filecache`.`fileid` ' . - 'WHERE `*PREFIX*filecache`.`fileid` IS NULL AND `*PREFIX*share`.`item_type` IN (\'file\', \'folder\')'); - $sharesFound = $findShares->execute(array())->fetchAll(); - - // delete those shares from the oc_share table - if (is_array($sharesFound) && !empty($sharesFound)) { - $removeShares = \OC_DB::prepare('DELETE FROM `*PREFIX*share` WHERE `id` = ? '); - foreach ($sharesFound as $share) { - $result = $removeShares->execute(array($share['id'])); - } - } + $findAndRemoveShares = \OC_DB::prepare('DELETE FROM `*PREFIX*share` ' . + 'WHERE `file_source` NOT IN ( ' . + 'SELECT `fileid` FROM `*PREFIX*filecache` WHERE `item_type` IN (\'file\', \'folder\'))' + ); + $findAndRemoveShares->execute(array()); } } -- GitLab From a5425e84f2c93a80a1e6d43fdde9dd655090d557 Mon Sep 17 00:00:00 2001 From: ideaship Date: Thu, 13 Mar 2014 20:05:11 +0100 Subject: [PATCH 035/296] fix autoconfig In array_merge, $post overrides $opts (concerns data directory). Always merge $post before calling display(). Default value for dbtype which may still be undefined in display(). Fixes several problems related to autoconfig: - installation.php only showed $AUTOCONFIG data if it was called after install() had come back with errors - if autoconfig.php was set, installation.php showed an editable field with the wrong data in it; then, regardless of any changes, the value from autoconfig.php was used - installation.php used undefined indeces (dbtype, dbIsSet, directoryIsSet) --- core/setup/controller.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/core/setup/controller.php b/core/setup/controller.php index 697408cfb57..1233f326f1d 100644 --- a/core/setup/controller.php +++ b/core/setup/controller.php @@ -20,7 +20,7 @@ class Controller { $errors = array('errors' => $e); if(count($e) > 0) { - $options = array_merge($post, $opts, $errors); + $options = array_merge($opts, $post, $errors); $this->display($options); } else { @@ -28,7 +28,8 @@ class Controller { } } else { - $this->display($opts); + $options = array_merge($opts, $post); + $this->display($options); } } @@ -41,6 +42,7 @@ class Controller { 'dbname' => '', 'dbtablespace' => '', 'dbhost' => '', + 'dbtype' => '', ); $parameters = array_merge($defaults, $post); -- GitLab From 84c96c2bf701711cc54d1bb44b49e364123a5aa9 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Fri, 14 Mar 2014 09:14:52 +0100 Subject: [PATCH 036/296] mobile: don't require a minimum width for controls bar --- core/css/mobile.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/core/css/mobile.css b/core/css/mobile.css index a63aa902d34..15ff8c65458 100644 --- a/core/css/mobile.css +++ b/core/css/mobile.css @@ -18,5 +18,10 @@ display: none; } +/* don’t require a minimum width for controls bar */ +#controls { + min-width: initial !important; +} + } -- GitLab From eb7b12525438df4345a588f1e87d208daa040654 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Fri, 14 Mar 2014 09:15:20 +0100 Subject: [PATCH 037/296] mobile: position share dropdown --- core/css/mobile.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/core/css/mobile.css b/core/css/mobile.css index 15ff8c65458..665ad0daae9 100644 --- a/core/css/mobile.css +++ b/core/css/mobile.css @@ -23,5 +23,11 @@ min-width: initial !important; } +/* position share dropdown */ +#dropdown { + margin-right: 10% !important; + width: 80% !important; +} + } -- GitLab From ec67d7e63528069269e4469b4feeeb9b52b90680 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Fri, 14 Mar 2014 09:16:53 +0100 Subject: [PATCH 038/296] mobile: first mobile fixes for Files. We still need to hide Rename and Versions --- apps/files/css/mobile.css | 44 +++++++++++++++++++++++++++++++++++++++ apps/files/index.php | 1 + 2 files changed, 45 insertions(+) create mode 100644 apps/files/css/mobile.css diff --git a/apps/files/css/mobile.css b/apps/files/css/mobile.css new file mode 100644 index 00000000000..5f1c08af58b --- /dev/null +++ b/apps/files/css/mobile.css @@ -0,0 +1,44 @@ +@media only screen and (max-width: 600px) { + +/* don’t require a minimum width for files table */ +#body-user #filestable { + min-width: initial !important; +} + +/* hide size and date columns */ +table th#headerSize, +table td.filesize, +table th#headerDate, +table td.date { + display: none; +} + +/* restrict length of displayed filename to prevent overflow */ +table td.filename .nametext { + max-width: 75% !important; +} + +/* do not show Rename or Versions on mobile */ +#fileList .action-rename, +#fileList .action-versions { + display: none !important; +} + +/* always show actions on mobile, not only on hover */ +#fileList a.action { + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)" !important; + filter: alpha(opacity=20) !important; + opacity: .2 !important; + display: inline !important; +} +/* some padding for better clickability */ +#fileList a.action img { + padding: 0 6px 0 12px; +} +/* hide text of the actions on mobile */ +#fileList a.action span { + display: none; +} + + +} diff --git a/apps/files/index.php b/apps/files/index.php index ad7a2e210ed..a856a56136a 100644 --- a/apps/files/index.php +++ b/apps/files/index.php @@ -27,6 +27,7 @@ OCP\User::checkLoggedIn(); // Load the files we need OCP\Util::addStyle('files', 'files'); OCP\Util::addStyle('files', 'upload'); +OCP\Util::addStyle('files', 'mobile'); OCP\Util::addscript('files', 'file-upload'); OCP\Util::addscript('files', 'jquery.iframe-transport'); OCP\Util::addscript('files', 'jquery.fileupload'); -- GitLab From b37aae9925a1d5516a24f1f9db31a156c2d3bc72 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Fri, 14 Mar 2014 10:33:19 +0100 Subject: [PATCH 039/296] mobile: menu togglable for mobile, use code by @PVince81 --- core/css/mobile.css | 65 +++++++++++++++++++++++++++++++++++++++++++++ core/js/js.js | 40 ++++++++++++++++++++++++++++ 2 files changed, 105 insertions(+) diff --git a/core/css/mobile.css b/core/css/mobile.css index 665ad0daae9..5a465b35fb9 100644 --- a/core/css/mobile.css +++ b/core/css/mobile.css @@ -18,6 +18,71 @@ display: none; } +/* toggle navigation */ +#content-wrapper { + padding-left: 0; +} + +#navigation { + top: 45px; + bottom: initial; + width: 90%; + max-width: 320px; + max-height: 90%; + margin-top: 0; + top: 45px; + background-color: rgba(36, 40, 47, .97); + overflow-x: initial; + border-bottom-right-radius: 7px; + border-bottom: 1px #333 solid; + border-right: 1px #333 solid; + box-shadow: 0 0 7px rgba(29,45,68,.97); + display: none; +} +#navigation, #navigation * { + box-sizing:border-box; -moz-box-sizing:border-box; +} +#navigation li { + display: inline-block; +} +#navigation a { + width: 70px; + height: 80px; + display: inline-block; + text-align: center; + padding: 20px 0; +} +#navigation a span { + display: inline-block; + font-size: 13px; + padding-bottom: 0; + padding-left: 0; + width: initial; +} +#navigation .icon { + margin: 0 auto; + padding: 0; +} +#navigation li:first-child .icon { + padding-top: 0; +} +/* Apps management as sticky footer */ +#navigation .wrapper { + min-height: initial; + margin: 0; +} +#apps-management, #navigation .push { + height: initial; +} + + + +/* shift to account for missing navigation */ +#body-user #controls, +#body-settings #controls { + padding-left: 0; +} + /* don’t require a minimum width for controls bar */ #controls { min-width: initial !important; diff --git a/core/js/js.js b/core/js/js.js index 841f3a769f1..2b3a9f04770 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -482,6 +482,29 @@ var OC={ }).show(); }, 'html'); } + }, + + // for menu toggling + registerMenu: function($toggle, $menuEl) { + $menuEl.addClass('menu'); + $toggle.addClass('menutoggle'); + $toggle.on('click', function(event) { + if ($menuEl.is(OC._currentMenu)) { + $menuEl.hide(); + OC._currentMenu = null; + OC._currentMenuToggle = null; + return false; + } + // another menu was open? + else if (OC._currentMenu) { + // close it + OC._currentMenu.hide(); + } + $menuEl.show(); + OC._currentMenu = $menuEl; + OC._currentMenuToggle = $toggle; + return false + }); } }; OC.search.customResults={}; @@ -940,6 +963,23 @@ function initCore() { $('a.action').tipsy({gravity:'s', fade:true, live:true}); $('td .modified').tipsy({gravity:'s', fade:true, live:true}); $('input').tipsy({gravity:'w', fade:true}); + + // toggle for menus + $(document).on('mouseup.closemenus', function(event) { + var $el = $(event.target); + if ($el.closest('.menu').length || $el.closest('.menutoggle').length) { + // don't close when clicking on the menu directly or a menu toggle + return false; + } + if (OC._currentMenu) { + OC._currentMenu.hide(); + } + OC._currentMenu = null; + OC._currentMenuToggle = null; + }); + + // toggle the navigation on mobile + OC.registerMenu($('#header #owncloud'), $('#navigation')); } $(document).ready(initCore); -- GitLab From ac48563efd74675f75b2b300b7d8b0c4f74be70b Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Fri, 14 Mar 2014 10:48:28 +0100 Subject: [PATCH 040/296] add spans around replaced 'Shared' indicators to make text hide on mobile --- core/js/share.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/js/share.js b/core/js/share.js index 129e50b22d5..90119105fa1 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -48,7 +48,7 @@ OC.Share={ var action = $(file).find('.fileactions .action[data-action="Share"]'); var img = action.find('img').attr('src', image); action.addClass('permanent'); - action.html(' '+t('core', 'Shared')).prepend(img); + action.html(' '+t('core', 'Shared')+'').prepend(img); } else { var dir = $('#dir').val(); if (dir.length > 1) { @@ -63,7 +63,7 @@ OC.Share={ if (img.attr('src') != OC.imagePath('core', 'actions/public')) { img.attr('src', image); $(action).addClass('permanent'); - $(action).html(' '+t('core', 'Shared')).prepend(img); + $(action).html(' '+t('core', 'Shared')+'').prepend(img); } }); } @@ -103,10 +103,10 @@ OC.Share={ var img = action.find('img').attr('src', image); if (shares) { action.addClass('permanent'); - action.html(' '+ escapeHTML(t('core', 'Shared'))).prepend(img); + action.html(' '+ escapeHTML(t('core', 'Shared'))+'').prepend(img); } else { action.removeClass('permanent'); - action.html(' '+ escapeHTML(t('core', 'Share'))).prepend(img); + action.html(' '+ escapeHTML(t('core', 'Share'))+'').prepend(img); } } } -- GitLab From 4033eba374cde80751c393e1f6ed5c647661f4c8 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Wed, 12 Mar 2014 16:57:39 +0100 Subject: [PATCH 041/296] Fixed chunking and insufficient storage check - fixed free space detection based on the already uploaded chunks - now deleting chunks as soon as it is read out before writing it into the part file, which reduces the space needed when assembling part files --- lib/private/connector/sabre/quotaplugin.php | 11 ++++++ lib/private/filechunking.php | 40 +++++++++++++++++++-- 2 files changed, 48 insertions(+), 3 deletions(-) diff --git a/lib/private/connector/sabre/quotaplugin.php b/lib/private/connector/sabre/quotaplugin.php index 8099794f670..227e684741c 100644 --- a/lib/private/connector/sabre/quotaplugin.php +++ b/lib/private/connector/sabre/quotaplugin.php @@ -56,8 +56,19 @@ class OC_Connector_Sabre_QuotaPlugin extends Sabre_DAV_ServerPlugin { $uri='/'.$uri; } list($parentUri, $newName) = Sabre_DAV_URLUtil::splitPath($uri); + $req = $this->server->httpRequest; + if ($req->getHeader('OC-Chunked')) { + $info = OC_FileChunking::decodeName($newName); + $chunkHandler = new OC_FileChunking($info); + // substract the already uploaded size to see whether + // there is still enough space for the remaining chunks + $length -= $chunkHandler->getCurrentSize(); + } $freeSpace = $this->getFreeSpace($parentUri); if ($freeSpace !== \OC\Files\SPACE_UNKNOWN && $length > $freeSpace) { + if (isset($chunkHandler)) { + $chunkHandler->cleanup(); + } throw new Sabre_DAV_Exception_InsufficientStorage(); } } diff --git a/lib/private/filechunking.php b/lib/private/filechunking.php index be7f4e14a11..1da02fc81e3 100644 --- a/lib/private/filechunking.php +++ b/lib/private/filechunking.php @@ -64,19 +64,45 @@ class OC_FileChunking { return $parts == $this->info['chunkcount']; } + /** + * Assembles the chunks into the file specified by the path. + * Chunks are deleted afterwards. + * + * @param string $f target path + * + * @return assembled file size + * + * @throws \OC\InsufficientStorageException when file could not be fully + * assembled due to lack of free space + */ public function assemble($f) { $cache = $this->getCache(); $prefix = $this->getPrefix(); $count = 0; - for($i=0; $i < $this->info['chunkcount']; $i++) { + for ($i = 0; $i < $this->info['chunkcount']; $i++) { $chunk = $cache->get($prefix.$i); + // remove after reading to directly save space + $cache->remove($prefix.$i); $count += fwrite($f, $chunk); } - $this->cleanup(); return $count; } + /** + * Returns the size of the chunks already present + * @return size in bytes + */ + public function getCurrentSize() { + $cache = $this->getCache(); + $prefix = $this->getPrefix(); + $total = 0; + for ($i = 0; $i < $this->info['chunkcount']; $i++) { + $total += $cache->size($prefix.$i); + } + return $total; + } + /** * Removes all chunks which belong to this transmission */ @@ -128,7 +154,15 @@ class OC_FileChunking { } /** - * @param string $path + * Assembles the chunks into the file specified by the path. + * Also triggers the relevant hooks and proxies. + * + * @param string $path target path + * + * @return assembled file size or false if file could not be created + * + * @throws \OC\InsufficientStorageException when file could not be fully + * assembled due to lack of free space */ public function file_assemble($path) { $absolutePath = \OC\Files\Filesystem::normalizePath(\OC\Files\Filesystem::getView()->getAbsolutePath($path)); -- GitLab From 4fc96ebb7b51333497a126658989cb85669aa6dd Mon Sep 17 00:00:00 2001 From: jamesryanbell Date: Mon, 17 Mar 2014 16:11:49 +0000 Subject: [PATCH 042/296] SVG support detection The SVGSupport checkMimeType method was failing on my setup as the headers are all returned in lowercase. I have lowercase all the indexes and modified the if statement so that it doesn't matter what case the headers are returned in --- core/js/js.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/js/js.js b/core/js/js.js index 841f3a769f1..9ca0730fa6f 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -712,11 +712,11 @@ SVGSupport.checkMimeType=function(){ if(value[0]==='"'){ value=value.substr(1,value.length-2); } - headers[parts[0]]=value; + headers[parts[0].toLowerCase()]=value; } } }); - if(headers["Content-Type"]!=='image/svg+xml'){ + if(headers["content-type"]!=='image/svg+xml'){ replaceSVG(); SVGSupport.checkMimeType.correct=false; } -- GitLab From ea8705bac8ae10b0c3c11258e83d8fb80ee616e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Mon, 17 Mar 2014 20:15:10 +0100 Subject: [PATCH 043/296] additional class is added to the file actions called e.g. 'action-share', 'action-rename' in order to allow proper translations of the action's display name an additional parameter has been added to the register function --- apps/files/js/fileactions.js | 37 +++++++++++++++++++++--------- apps/files_versions/js/versions.js | 3 ++- 2 files changed, 28 insertions(+), 12 deletions(-) diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js index 9a69d7b3688..a7d1fa9d8a2 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -15,21 +15,33 @@ var FileActions = { defaults: {}, icons: {}, currentFile: null, - register: function (mime, name, permissions, icon, action) { + register: function (mime, name, permissions, icon, action, displayName) { if (!FileActions.actions[mime]) { FileActions.actions[mime] = {}; } if (!FileActions.actions[mime][name]) { FileActions.actions[mime][name] = {}; } + if (!displayName) { + displayName = t('files', name); + } FileActions.actions[mime][name]['action'] = action; FileActions.actions[mime][name]['permissions'] = permissions; + FileActions.actions[mime][name]['displayName'] = displayName; FileActions.icons[name] = icon; }, setDefault: function (mime, name) { FileActions.defaults[mime] = name; }, get: function (mime, type, permissions) { + var actions = this.getActions(mime, type, permissions); + var filteredActions = {}; + $.each(actions, function (name, action) { + filteredActions[name] = action.action; + }); + return filteredActions; + }, + getActions: function (mime, type, permissions) { var actions = {}; if (FileActions.actions.all) { actions = $.extend(actions, FileActions.actions.all); @@ -51,7 +63,7 @@ var FileActions = { var filteredActions = {}; $.each(actions, function (name, action) { if (action.permissions & permissions) { - filteredActions[name] = action.action; + filteredActions[name] = action; } }); return filteredActions; @@ -82,7 +94,7 @@ var FileActions = { */ display: function (parent, triggerEvent) { FileActions.currentFile = parent; - var actions = FileActions.get(FileActions.getCurrentMimeType(), FileActions.getCurrentType(), FileActions.getCurrentPermissions()); + var actions = FileActions.getActions(FileActions.getCurrentMimeType(), FileActions.getCurrentType(), FileActions.getCurrentPermissions()); var file = FileActions.getCurrentFile(); var nameLinks; if (FileList.findFileEl(file).data('renaming')) { @@ -105,15 +117,16 @@ var FileActions = { event.data.actionFunc(file); }; - var addAction = function (name, action) { + var addAction = function (name, action, displayName) { // NOTE: Temporary fix to prevent rename action in root of Shared directory if (name === 'Rename' && $('#dir').val() === '/Shared') { return true; } if ((name === 'Download' || action !== defaultAction) && name !== 'Delete') { + var img = FileActions.icons[name], - actionText = t('files', name), + actionText = displayName, actionContainer = 'a.name>span.fileactions'; if (name === 'Rename') { @@ -125,7 +138,7 @@ var FileActions = { if (img.call) { img = img(file); } - var html = ''; + var html = ''; if (img) { html += ''; } @@ -133,8 +146,7 @@ var FileActions = { var element = $(html); element.data('action', name); - //alert(element); - element.on('click', {a: null, elem: parent, actionFunc: actions[name]}, actionHandler); + element.on('click', {a: null, elem: parent, actionFunc: actions[name].action}, actionHandler); parent.find(actionContainer).append(element); } @@ -142,12 +154,15 @@ var FileActions = { $.each(actions, function (name, action) { if (name !== 'Share') { - addAction(name, action); + displayName = action.displayName; + ah = action.action; + + addAction(name, ah, displayName); } }); if(actions.Share && !($('#dir').val() === '/' && file === 'Shared')){ - // t('files', 'Share') - addAction('Share', actions.Share); + displayName = t('files', 'Share'); + addAction('Share', actions.Share, displayName); } // remove the existing delete action diff --git a/apps/files_versions/js/versions.js b/apps/files_versions/js/versions.js index 4adf14745de..b452bc25b13 100644 --- a/apps/files_versions/js/versions.js +++ b/apps/files_versions/js/versions.js @@ -11,7 +11,7 @@ $(document).ready(function(){ // Add versions button to 'files/index.php' FileActions.register( 'file' - , t('files_versions', 'Versions') + , 'Versions' , OC.PERMISSION_UPDATE , function() { // Specify icon for hitory button @@ -36,6 +36,7 @@ $(document).ready(function(){ createVersionsDropdown(filename, file); } } + , t('files_versions', 'Versions') ); } -- GitLab From 872006da035b92b17b0a0d5da781844080861531 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Mon, 17 Mar 2014 20:40:22 +0100 Subject: [PATCH 044/296] Only enable toggle for sidebar in mobile mode --- core/js/js.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/core/js/js.js b/core/js/js.js index 2b3a9f04770..23d16b69234 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -979,7 +979,12 @@ function initCore() { }); // toggle the navigation on mobile - OC.registerMenu($('#header #owncloud'), $('#navigation')); + if (window.matchMedia) { + var mq = window.matchMedia('(max-width: 600px)'); + if (mq && mq.matches) { + OC.registerMenu($('#header #owncloud'), $('#navigation')); + } + } } $(document).ready(initCore); -- GitLab From 285fc5ba96eba1c9046a3c05c39ed7708c13b897 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Tue, 18 Mar 2014 11:50:08 +0100 Subject: [PATCH 045/296] mobile: change CSS order so rename and versions are hidden --- apps/files/css/mobile.css | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/apps/files/css/mobile.css b/apps/files/css/mobile.css index 5f1c08af58b..00c4630ea6c 100644 --- a/apps/files/css/mobile.css +++ b/apps/files/css/mobile.css @@ -18,12 +18,6 @@ table td.filename .nametext { max-width: 75% !important; } -/* do not show Rename or Versions on mobile */ -#fileList .action-rename, -#fileList .action-versions { - display: none !important; -} - /* always show actions on mobile, not only on hover */ #fileList a.action { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)" !important; @@ -31,6 +25,11 @@ table td.filename .nametext { opacity: .2 !important; display: inline !important; } +/* do not show Rename or Versions on mobile */ +#fileList .action.action-rename, +#fileList .action.action-versions { + display: none !important; +} /* some padding for better clickability */ #fileList a.action img { padding: 0 6px 0 12px; -- GitLab From fe04106e0f6a88b5e3cf490773f2cb625465e98a Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Tue, 18 Mar 2014 13:09:25 +0100 Subject: [PATCH 046/296] Add/remove main menu action when switching between desktop/mobile mode --- core/js/js.js | 59 +++++++++++++++++-- core/js/tests/specs/coreSpec.js | 101 ++++++++++++++++++++++++++++++++ 2 files changed, 154 insertions(+), 6 deletions(-) diff --git a/core/js/js.js b/core/js/js.js index 23d16b69234..aefca235093 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -488,7 +488,7 @@ var OC={ registerMenu: function($toggle, $menuEl) { $menuEl.addClass('menu'); $toggle.addClass('menutoggle'); - $toggle.on('click', function(event) { + $toggle.on('click.menu', function(event) { if ($menuEl.is(OC._currentMenu)) { $menuEl.hide(); OC._currentMenu = null; @@ -505,6 +505,17 @@ var OC={ OC._currentMenuToggle = $toggle; return false }); + }, + + unregisterMenu: function($toggle, $menuEl) { + // close menu if opened + if ($menuEl.is(OC._currentMenu)) { + $menuEl.hide(); + OC._currentMenu = null; + OC._currentMenuToggle = null; + } + $toggle.off('click.menu').removeClass('menutoggle'); + $menuEl.removeClass('menu'); } }; OC.search.customResults={}; @@ -978,13 +989,49 @@ function initCore() { OC._currentMenuToggle = null; }); - // toggle the navigation on mobile - if (window.matchMedia) { - var mq = window.matchMedia('(max-width: 600px)'); - if (mq && mq.matches) { - OC.registerMenu($('#header #owncloud'), $('#navigation')); + + /** + * Set up the main menu toggle to react to media query changes. + * If the screen is small enough, the main menu becomes a toggle. + * If the screen is bigger, the main menu is not a toggle any more. + */ + function setupMainMenu() { + // toggle the navigation on mobile + if (window.matchMedia) { + var mq = window.matchMedia('(max-width: 600px)'); + var lastMatch = mq.matches; + var $toggle = $('#header #owncloud'); + var $navigation = $('#navigation'); + + function updateMainMenu() { + // mobile mode ? + if (lastMatch && !$toggle.hasClass('menutoggle')) { + // init the menu + OC.registerMenu($toggle, $navigation); + $toggle.data('oldhref', $toggle.attr('href')); + $toggle.attr('href', '#'); + $navigation.hide(); + } + else { + OC.unregisterMenu($toggle, $navigation); + $toggle.attr('href', $toggle.data('oldhref')); + $navigation.show(); + } + } + + updateMainMenu(); + + // TODO: debounce this + $(window).resize(function() { + if (lastMatch !== mq.matches) { + lastMatch = mq.matches; + updateMainMenu(); + } + }); } } + + setupMainMenu(); } $(document).ready(initCore); diff --git a/core/js/tests/specs/coreSpec.js b/core/js/tests/specs/coreSpec.js index 069546387c7..7fa0b8e9e62 100644 --- a/core/js/tests/specs/coreSpec.js +++ b/core/js/tests/specs/coreSpec.js @@ -279,5 +279,106 @@ describe('Core base tests', function() { expect(OC.generateUrl('apps/files/download{file}', {file: '/Welcome.txt'})).toEqual(OC.webroot + '/index.php/apps/files/download/Welcome.txt'); }); }); + describe('Main menu mobile toggle', function() { + var oldMatchMedia; + var $toggle; + var $navigation; + + beforeEach(function() { + oldMatchMedia = window.matchMedia; + window.matchMedia = sinon.stub(); + $('#testArea').append('' + + ''); + $toggle = $('#owncloud'); + $navigation = $('#navigation'); + }); + + afterEach(function() { + window.matchMedia = oldMatchMedia; + }); + it('Sets up menu toggle in mobile mode', function() { + window.matchMedia.returns({matches: true}); + window.initCore(); + expect($toggle.hasClass('menutoggle')).toEqual(true); + expect($navigation.hasClass('menu')).toEqual(true); + }); + it('Does not set up menu toggle in desktop mode', function() { + window.matchMedia.returns({matches: false}); + window.initCore(); + expect($toggle.hasClass('menutoggle')).toEqual(false); + expect($navigation.hasClass('menu')).toEqual(false); + }); + it('Switches on menu toggle when mobile mode changes', function() { + var mq = {matches: false}; + window.matchMedia.returns(mq); + window.initCore(); + expect($toggle.hasClass('menutoggle')).toEqual(false); + mq.matches = true; + $(window).trigger('resize'); + expect($toggle.hasClass('menutoggle')).toEqual(true); + }); + it('Switches off menu toggle when mobile mode changes', function() { + var mq = {matches: true}; + window.matchMedia.returns(mq); + window.initCore(); + expect($toggle.hasClass('menutoggle')).toEqual(true); + mq.matches = false; + $(window).trigger('resize'); + expect($toggle.hasClass('menutoggle')).toEqual(false); + }); + it('Clicking menu toggle toggles navigation in mobile mode', function() { + window.matchMedia.returns({matches: true}); + window.initCore(); + $navigation.hide(); // normally done through media query triggered CSS + expect($navigation.is(':visible')).toEqual(false); + $toggle.click(); + expect($navigation.is(':visible')).toEqual(true); + $toggle.click(); + expect($navigation.is(':visible')).toEqual(false); + }); + it('Clicking menu toggle does not toggle navigation in desktop mode', function() { + window.matchMedia.returns({matches: false}); + window.initCore(); + expect($navigation.is(':visible')).toEqual(true); + $toggle.click(); + expect($navigation.is(':visible')).toEqual(true); + }); + it('Switching to mobile mode hides navigation', function() { + var mq = {matches: false}; + window.matchMedia.returns(mq); + window.initCore(); + expect($navigation.is(':visible')).toEqual(true); + mq.matches = true; + $(window).trigger('resize'); + expect($navigation.is(':visible')).toEqual(false); + }); + it('Switching to desktop mode shows navigation', function() { + var mq = {matches: true}; + window.matchMedia.returns(mq); + window.initCore(); + expect($navigation.is(':visible')).toEqual(false); + mq.matches = false; + $(window).trigger('resize'); + expect($navigation.is(':visible')).toEqual(true); + }); + it('Switch to desktop with opened menu then back to mobile resets toggle', function() { + var mq = {matches: true}; + window.matchMedia.returns(mq); + window.initCore(); + expect($navigation.is(':visible')).toEqual(false); + $toggle.click(); + expect($navigation.is(':visible')).toEqual(true); + mq.matches = false; + $(window).trigger('resize'); + expect($navigation.is(':visible')).toEqual(true); + mq.matches = true; + $(window).trigger('resize'); + expect($navigation.is(':visible')).toEqual(false); + $toggle.click(); + expect($navigation.is(':visible')).toEqual(true); + }); + }); }); -- GitLab From cc6c1529848022765b9be6be808cf4dfb5b2d029 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Tue, 18 Mar 2014 15:52:06 +0100 Subject: [PATCH 047/296] Fixed matchMedia usage to make unit tests work in PhantomJS PhantomJS has a bug that makes it impossible to properly stub window.matchMedia. This fix adds a wrapper as OC._matchMedia that is used for unit tests --- core/js/js.js | 67 ++++++++++++++++++--------------- core/js/tests/specs/coreSpec.js | 27 +++++++------ 2 files changed, 52 insertions(+), 42 deletions(-) diff --git a/core/js/js.js b/core/js/js.js index aefca235093..87b2d59f160 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -997,41 +997,48 @@ function initCore() { */ function setupMainMenu() { // toggle the navigation on mobile - if (window.matchMedia) { - var mq = window.matchMedia('(max-width: 600px)'); - var lastMatch = mq.matches; - var $toggle = $('#header #owncloud'); - var $navigation = $('#navigation'); - - function updateMainMenu() { - // mobile mode ? - if (lastMatch && !$toggle.hasClass('menutoggle')) { - // init the menu - OC.registerMenu($toggle, $navigation); - $toggle.data('oldhref', $toggle.attr('href')); - $toggle.attr('href', '#'); - $navigation.hide(); - } - else { - OC.unregisterMenu($toggle, $navigation); - $toggle.attr('href', $toggle.data('oldhref')); - $navigation.show(); - } + if (!OC._matchMedia) { + return; + } + var mq = OC._matchMedia('(max-width: 600px)'); + var lastMatch = mq.matches; + var $toggle = $('#header #owncloud'); + var $navigation = $('#navigation'); + + function updateMainMenu() { + // mobile mode ? + if (lastMatch && !$toggle.hasClass('menutoggle')) { + // init the menu + OC.registerMenu($toggle, $navigation); + $toggle.data('oldhref', $toggle.attr('href')); + $toggle.attr('href', '#'); + $navigation.hide(); } + else { + OC.unregisterMenu($toggle, $navigation); + $toggle.attr('href', $toggle.data('oldhref')); + $navigation.show(); + } + } - updateMainMenu(); + updateMainMenu(); - // TODO: debounce this - $(window).resize(function() { - if (lastMatch !== mq.matches) { - lastMatch = mq.matches; - updateMainMenu(); - } - }); - } + // TODO: debounce this + $(window).resize(function() { + if (lastMatch !== mq.matches) { + lastMatch = mq.matches; + updateMainMenu(); + } + }); } - setupMainMenu(); + if (window.matchMedia) { + // wrapper needed for unit tests due to PhantomJS bugs + OC._matchMedia = function(media) { + return window.matchMedia(media); + } + setupMainMenu(); + } } $(document).ready(initCore); diff --git a/core/js/tests/specs/coreSpec.js b/core/js/tests/specs/coreSpec.js index 7fa0b8e9e62..57ea5be8be0 100644 --- a/core/js/tests/specs/coreSpec.js +++ b/core/js/tests/specs/coreSpec.js @@ -285,8 +285,11 @@ describe('Core base tests', function() { var $navigation; beforeEach(function() { - oldMatchMedia = window.matchMedia; - window.matchMedia = sinon.stub(); + oldMatchMedia = OC._matchMedia; + // a separate method was needed because window.matchMedia + // cannot be stubbed due to a bug in PhantomJS: + // https://github.com/ariya/phantomjs/issues/12069 + OC._matchMedia = sinon.stub(); $('#testArea').append('' + @@ -296,23 +299,23 @@ describe('Core base tests', function() { }); afterEach(function() { - window.matchMedia = oldMatchMedia; + OC._matchMedia = oldMatchMedia; }); it('Sets up menu toggle in mobile mode', function() { - window.matchMedia.returns({matches: true}); + OC._matchMedia.returns({matches: true}); window.initCore(); expect($toggle.hasClass('menutoggle')).toEqual(true); expect($navigation.hasClass('menu')).toEqual(true); }); it('Does not set up menu toggle in desktop mode', function() { - window.matchMedia.returns({matches: false}); + OC._matchMedia.returns({matches: false}); window.initCore(); expect($toggle.hasClass('menutoggle')).toEqual(false); expect($navigation.hasClass('menu')).toEqual(false); }); it('Switches on menu toggle when mobile mode changes', function() { var mq = {matches: false}; - window.matchMedia.returns(mq); + OC._matchMedia.returns(mq); window.initCore(); expect($toggle.hasClass('menutoggle')).toEqual(false); mq.matches = true; @@ -321,7 +324,7 @@ describe('Core base tests', function() { }); it('Switches off menu toggle when mobile mode changes', function() { var mq = {matches: true}; - window.matchMedia.returns(mq); + OC._matchMedia.returns(mq); window.initCore(); expect($toggle.hasClass('menutoggle')).toEqual(true); mq.matches = false; @@ -329,7 +332,7 @@ describe('Core base tests', function() { expect($toggle.hasClass('menutoggle')).toEqual(false); }); it('Clicking menu toggle toggles navigation in mobile mode', function() { - window.matchMedia.returns({matches: true}); + OC._matchMedia.returns({matches: true}); window.initCore(); $navigation.hide(); // normally done through media query triggered CSS expect($navigation.is(':visible')).toEqual(false); @@ -339,7 +342,7 @@ describe('Core base tests', function() { expect($navigation.is(':visible')).toEqual(false); }); it('Clicking menu toggle does not toggle navigation in desktop mode', function() { - window.matchMedia.returns({matches: false}); + OC._matchMedia.returns({matches: false}); window.initCore(); expect($navigation.is(':visible')).toEqual(true); $toggle.click(); @@ -347,7 +350,7 @@ describe('Core base tests', function() { }); it('Switching to mobile mode hides navigation', function() { var mq = {matches: false}; - window.matchMedia.returns(mq); + OC._matchMedia.returns(mq); window.initCore(); expect($navigation.is(':visible')).toEqual(true); mq.matches = true; @@ -356,7 +359,7 @@ describe('Core base tests', function() { }); it('Switching to desktop mode shows navigation', function() { var mq = {matches: true}; - window.matchMedia.returns(mq); + OC._matchMedia.returns(mq); window.initCore(); expect($navigation.is(':visible')).toEqual(false); mq.matches = false; @@ -365,7 +368,7 @@ describe('Core base tests', function() { }); it('Switch to desktop with opened menu then back to mobile resets toggle', function() { var mq = {matches: true}; - window.matchMedia.returns(mq); + OC._matchMedia.returns(mq); window.initCore(); expect($navigation.is(':visible')).toEqual(false); $toggle.click(); -- GitLab From 67b8cfedf9f500eb25871265a05c874acc4809ff Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Tue, 18 Mar 2014 16:02:13 +0100 Subject: [PATCH 048/296] Define _matchMedia wrapper earlier The unit test stub didn't work because the _matchMedia wrapper was defined too late. This fix defines it earlier. --- core/js/js.js | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/core/js/js.js b/core/js/js.js index 87b2d59f160..121a4062d37 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -516,6 +516,19 @@ var OC={ } $toggle.off('click.menu').removeClass('menutoggle'); $menuEl.removeClass('menu'); + }, + + /** + * Wrapper for matchMedia + * + * This is makes it possible for unit tests to + * stub matchMedia (which doesn't work in PhantomJS) + */ + _matchMedia: function(media) { + if (window.matchMedia) { + return window.matchMedia(media); + } + return false; } }; OC.search.customResults={}; @@ -1033,10 +1046,6 @@ function initCore() { } if (window.matchMedia) { - // wrapper needed for unit tests due to PhantomJS bugs - OC._matchMedia = function(media) { - return window.matchMedia(media); - } setupMainMenu(); } } -- GitLab From 59906fbb4deeed881dd1e0c590c360ad48697169 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Tue, 18 Mar 2014 17:48:28 +0100 Subject: [PATCH 049/296] mobile: show caret indicator next to logo to make clear it is tappable --- core/css/mobile.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/core/css/mobile.css b/core/css/mobile.css index 5a465b35fb9..56bee8f8a30 100644 --- a/core/css/mobile.css +++ b/core/css/mobile.css @@ -1,5 +1,13 @@ @media only screen and (max-width: 600px) { +/* show caret indicator next to logo to make clear it is tappable */ +#owncloud.menutoggle { + background-image: url('../img/actions/caret.svg'); + background-repeat: no-repeat; + background-position: right 26px; + padding-right: 16px !important; +} + /* compress search box on mobile, expand when focused */ .searchbox input[type="search"] { width: 15%; -- GitLab From 76961ce0727d08ef3d12bd445798df221f5d2063 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 18 Mar 2014 17:54:21 +0100 Subject: [PATCH 050/296] fixing javascript error where $(Files.breadcrumbs[1]).get(0) returns undefined - happens on resize to a very small width --- apps/files/js/files.js | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 1186a72a44f..1137364db4a 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -196,11 +196,14 @@ var Files = { if (width !== Files.lastWidth) { if ((width < Files.lastWidth || firstRun) && width < Files.breadcrumbsWidth) { if (Files.hiddenBreadcrumbs === 0) { - Files.breadcrumbsWidth -= $(Files.breadcrumbs[1]).get(0).offsetWidth; - $(Files.breadcrumbs[1]).find('a').hide(); - $(Files.breadcrumbs[1]).append('...'); - Files.breadcrumbsWidth += $(Files.breadcrumbs[1]).get(0).offsetWidth; - Files.hiddenBreadcrumbs = 2; + bc = $(Files.breadcrumbs[1]).get(0); + if (typeof bc != 'undefined') { + Files.breadcrumbsWidth -= bc.offsetWidth; + $(Files.breadcrumbs[1]).find('a').hide(); + $(Files.breadcrumbs[1]).append('...'); + Files.breadcrumbsWidth += bc.offsetWidth; + Files.hiddenBreadcrumbs = 2; + } } var i = Files.hiddenBreadcrumbs; while (width < Files.breadcrumbsWidth && i > 1 && i < Files.breadcrumbs.length - 1) { -- GitLab From 36da3bc35908d9324397ba5fac5f2a4228bea51e Mon Sep 17 00:00:00 2001 From: Scott Arciszewski Date: Wed, 19 Mar 2014 13:31:51 -0400 Subject: [PATCH 051/296] Update crypt.php A 1024 kilobyte key would be obnoxiously slow to operate on. I'm assuming you meant 1024-bit? Also, 183 bytes = 1464 bits. Here's a safe alternative: 2048 bits, with comment-code sanity --- apps/files_encryption/lib/crypt.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/files_encryption/lib/crypt.php b/apps/files_encryption/lib/crypt.php index caca13acece..e38a4ef7125 100755 --- a/apps/files_encryption/lib/crypt.php +++ b/apps/files_encryption/lib/crypt.php @@ -497,13 +497,13 @@ class Crypt { } /** - * @brief Generate a pseudo random 1024kb ASCII key, used as file key + * @brief Generate a pseudo random 2048-bit ASCII key, used as file key * @returns $key Generated key */ public static function generateKey() { // Generate key - if ($key = base64_encode(openssl_random_pseudo_bytes(183, $strong))) { + if ($key = base64_encode(openssl_random_pseudo_bytes(256, $strong))) { if (!$strong) { -- GitLab From 59d1ee565e66a0394e2cf1d59bde125cb2e70a48 Mon Sep 17 00:00:00 2001 From: raghunayyar Date: Thu, 20 Mar 2014 13:34:50 +0530 Subject: [PATCH 052/296] Makes #app-navigation a part of app management. --- settings/css/settings.css | 26 +++----------------- settings/js/apps.js | 26 ++++++++++---------- settings/templates/apps.php | 49 +++++++++++++++++++------------------ 3 files changed, 42 insertions(+), 59 deletions(-) diff --git a/settings/css/settings.css b/settings/css/settings.css index a47e7bf6563..d7d8b0aede2 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -62,13 +62,7 @@ tr:hover>td.password>span, tr:hover>td.displayName>span { margin:0; cursor:point tr:hover>td.remove>a, tr:hover>td.password>img,tr:hover>td.displayName>img, tr:hover>td.quota>img { visibility:visible; cursor:pointer; } tr:hover>td.remove>a { float:right; } -li.selected, -#leftcontent li.selected { - background-color: #ddd; -} - table.grid { width:100%; } -#rightcontent { padding-left: 10px; } div.quota { float: right; display: block; @@ -106,30 +100,18 @@ select.quota.active { background: #fff; } /* APPS */ .appinfo { margin: 1em 40px; } h3 { font-size: 1.4em; font-weight: bold; } -ul.applist a { - height: 2.2em; - padding: 0.2em 0.2em 0.2em 0.8em !important; -} -ul.applist .app-external { - width: 100%; -} -li { color:#888; } -li.active { color:#000; } -#leftcontent .appwarning { +#app-navigation .appwarning { background: #fcc; } -#leftcontent .appwarning:hover { +#app-navigation.appwarning:hover { background: #fbb; } small.externalapp { color:#FFF; background-color:#BBB; font-weight:bold; font-size: 0.6em; margin: 0; padding: 0.1em 0.2em; border-radius: 4px;} -small.externalapp.list { float: right; } small.recommendedapp { color:#FFF; background-color:#888; font-weight:bold; font-size: 0.6em; margin: 0; padding: 0.1em 0.2em; border-radius: 4px;} -small.recommendedapp.list { float: right; } +small.externalapp.list, small.recommendedapp.list { position: absolute; right: 10px; top: 12px; } span.version { margin-left:1em; margin-right:1em; color:#555; } -.app { position: relative; display: inline-block; padding: 0.2em 0 0.2em 0 !important; text-overflow: hidden; overflow: hidden; white-space: nowrap; /*transition: .2s max-width linear; -o-transition: .2s max-width linear; -moz-transition: .2s max-width linear; -webkit-transition: .2s max-width linear; -ms-transition: .2s max-width linear;*/ } -.app.externalapp { max-width: 12.5em; } -.app.recommendedapp { max-width: 12.5em; } + /* Transition to complete width! */ .app:hover, .app:active { max-width: inherit; } diff --git a/settings/js/apps.js b/settings/js/apps.js index 3dbc8a2f7c2..f151a034a85 100644 --- a/settings/js/apps.js +++ b/settings/js/apps.js @@ -8,7 +8,7 @@ OC.Settings = OC.Settings || {}; OC.Settings.Apps = OC.Settings.Apps || { loadApp:function(app) { - var page = $('#rightcontent'); + var page = $('#app-content'); page.find('p.license').show(); page.find('span.name').text(app.name); page.find('small.externalapp').text(app.internallabel); @@ -82,16 +82,16 @@ OC.Settings.Apps = OC.Settings.Apps || { page.find('p.appslink').hide(); page.find('span.score').hide(); } - if (typeof($('#leftcontent li[data-id="'+app.id+'"]').data('errormsg')) !== "undefined") { + if (typeof($('#app-navigation li[data-id="'+app.id+'"]').data('errormsg')) !== "undefined") { page.find(".warning").show(); - page.find(".warning").text($('#leftcontent li[data-id="'+app.id+'"]').data('errormsg')); + page.find(".warning").text($('#app-navigation li[data-id="'+app.id+'"]').data('errormsg')); } else { page.find(".warning").hide(); } }, enableApp:function(appid, active, element) { console.log('enableApp:', appid, active, element); - var appitem=$('#leftcontent li[data-id="'+appid+'"]'); + var appitem=$('#app-navigation ul li[data-id="'+appid+'"]'); element.val(t('settings','Please wait....')); if(active) { $.post(OC.filePath('settings','ajax','disableapp.php'),{appid:appid},function(result) { @@ -160,7 +160,7 @@ OC.Settings.Apps = OC.Settings.Apps || { }, insertApp:function(appdata) { - var applist = $('#leftcontent li'); + var applist = $('#app-navigation ul li'); var app = $('
  • ' + '' @@ -242,30 +242,30 @@ OC.Settings.Apps = OC.Settings.Apps || { }; $(document).ready(function(){ - $('#leftcontent li').each(function(index,li){ + $('#app-navigation ul li').each(function(index,li){ var app = OC.get('appData_'+$(li).data('id')); $(li).data('app',app); $(this).find('span.hidden').remove(); }); - $('#leftcontent li').keydown(function(event) { + $('#app-navigation ul li').keydown(function(event) { if (event.which === 13 || event.which === 32) { $(event.target).click(); } return false; }); - $(document).on('click', '#leftcontent', function(event){ + $(document).on('click', '#app-navigation', function(event){ var tgt = $(event.target); if (tgt.is('li') || tgt.is('a')) { var item = tgt.is('li') ? $(tgt) : $(tgt).parent(); var app = item.data('app'); OC.Settings.Apps.loadApp(app); - $('#leftcontent .selected').removeClass('selected'); + $('#app-navigation .selected').removeClass('selected'); item.addClass('selected'); } return false; }); - $('#rightcontent input.enable').click(function(){ + $('#app-content input.enable').click(function(){ var element = $(this); var appid=$(this).data('appid'); var active=$(this).data('active'); @@ -273,7 +273,7 @@ $(document).ready(function(){ OC.Settings.Apps.enableApp(appid, active, element); } }); - $('#rightcontent input.update').click(function(){ + $('#app-content input.update').click(function(){ var element = $(this); var appid=$(this).data('appid'); if(appid) { @@ -282,11 +282,11 @@ $(document).ready(function(){ }); if(appid) { - var item = $('#leftcontent li[data-id="'+appid+'"]'); + var item = $('#app-navigation ul li[data-id="'+appid+'"]'); if(item) { item.trigger('click'); item.addClass('active'); - $('#leftcontent').animate({scrollTop: $(item).offset().top-70}, 'slow','swing'); + $('#app-navigation').animate({scrollTop: $(item).offset().top-70}, 'slow','swing'); } } }); diff --git a/settings/templates/apps.php b/settings/templates/apps.php index 4c77c62f511..b7f3b6121ad 100644 --- a/settings/templates/apps.php +++ b/settings/templates/apps.php @@ -7,32 +7,33 @@ src="?appid="> +
    + +
    +

    t('Select an App'));?>

    -- GitLab From 057c2638e4d1c369f03739faad02d9d6c87e83f7 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Thu, 20 Mar 2014 13:58:08 +0100 Subject: [PATCH 053/296] LDAP Wizard: when determining objectclasses, we realy do not need to look at every entry. Fixes #7530 --- apps/user_ldap/lib/wizard.php | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/apps/user_ldap/lib/wizard.php b/apps/user_ldap/lib/wizard.php index e79090febc1..930db5c4743 100644 --- a/apps/user_ldap/lib/wizard.php +++ b/apps/user_ldap/lib/wizard.php @@ -869,12 +869,14 @@ class Wizard extends LDAPUtility { * @param string $attr the attribute of which a list of values shall be returned * @param $lfw bool, whether the last filter is a wildcard which shall not * be processed if there were already findings, defaults to true + * @param int $dnReadLimit the amount of how many DNs should be analyzed. + * The lower, the faster * @param string $maxF string. if not null, this variable will have the filter that * yields most result entries * @return mixed, an array with the values on success, false otherwise * */ - private function cumulativeSearchOnAttribute($filters, $attr, $lfw = true, &$maxF = null) { + private function cumulativeSearchOnAttribute($filters, $attr, $lfw = true, $dnReadLimit = 5, &$maxF = null) { $dnRead = array(); $foundItems = array(); $maxEntries = 0; @@ -902,6 +904,7 @@ class Wizard extends LDAPUtility { $maxEntries = $entries; $maxF = $filter; } + $dnReadCount = 0; do { $entry = $this->ldap->$getEntryFunc($cr, $rr); if(!$this->ldap->isResource($entry)) { @@ -916,13 +919,15 @@ class Wizard extends LDAPUtility { $state = $this->getAttributeValuesFromEntry($attributes, $attr, $newItems); + $dnReadCount++; $foundItems = array_merge($foundItems, $newItems); $this->resultCache[$dn][$attr] = $newItems; $dnRead[] = $dn; $getEntryFunc = 'nextEntry'; $rr = $entry; //will be expected by nextEntry next round - } while($state === self::LRESULT_PROCESSED_SKIP - || $this->ldap->isResource($entry)); + } while(($state === self::LRESULT_PROCESSED_SKIP + || $this->ldap->isResource($entry)) + && ($dnReadLimit === 0 || $dnReadCount <= $dnReadLimit)); } } @@ -950,9 +955,19 @@ class Wizard extends LDAPUtility { $objectclasses[$key] = $p.$value; } $maxEntryObjC = ''; + + //how deep to dig? + //When looking for objectclasses, testing few entries is sufficient, + //when looking for group we need to get all names, though. + if(strtolower($attr) === 'objectclass') { + $dig = 5; + } else { + $dig = 0; + } + $availableFeatures = $this->cumulativeSearchOnAttribute($objectclasses, $attr, - true, $maxEntryObjC); + true, $dig, $maxEntryObjC); if(is_array($availableFeatures) && count($availableFeatures) > 0) { natcasesort($availableFeatures); -- GitLab From fffe330bbccee617cac6d84d1f4097133de82e44 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 20 Mar 2014 15:32:12 +0100 Subject: [PATCH 054/296] Fix parameter order for Storage\Local::hash --- lib/private/files/storage/local.php | 2 +- lib/private/files/storage/mappedlocal.php | 2 +- tests/lib/files/storage/storage.php | 47 +++++++++++++++-------- 3 files changed, 34 insertions(+), 17 deletions(-) diff --git a/lib/private/files/storage/local.php b/lib/private/files/storage/local.php index a62230bdba5..071b12ffbd5 100644 --- a/lib/private/files/storage/local.php +++ b/lib/private/files/storage/local.php @@ -256,7 +256,7 @@ if (\OC_Util::runningOnWindows()) { return 0; } - public function hash($path, $type, $raw = false) { + public function hash($type, $path, $raw = false) { return hash_file($type, $this->datadir . $path, $raw); } diff --git a/lib/private/files/storage/mappedlocal.php b/lib/private/files/storage/mappedlocal.php index 1bab3489a28..cb5ab6902e6 100644 --- a/lib/private/files/storage/mappedlocal.php +++ b/lib/private/files/storage/mappedlocal.php @@ -276,7 +276,7 @@ class MappedLocal extends \OC\Files\Storage\Common{ return 0; } - public function hash($path, $type, $raw=false) { + public function hash($type, $path, $raw=false) { return hash_file($type, $this->buildPath($path), $raw); } diff --git a/tests/lib/files/storage/storage.php b/tests/lib/files/storage/storage.php index f9291758606..f3bfba3feb8 100644 --- a/tests/lib/files/storage/storage.php +++ b/tests/lib/files/storage/storage.php @@ -64,17 +64,17 @@ abstract class Storage extends \PHPUnit_Framework_TestCase { * @dataProvider directoryProvider */ public function testDirectories($directory) { - $this->assertFalse($this->instance->file_exists('/'.$directory)); + $this->assertFalse($this->instance->file_exists('/' . $directory)); - $this->assertTrue($this->instance->mkdir('/'.$directory)); + $this->assertTrue($this->instance->mkdir('/' . $directory)); - $this->assertTrue($this->instance->file_exists('/'.$directory)); - $this->assertTrue($this->instance->is_dir('/'.$directory)); - $this->assertFalse($this->instance->is_file('/'.$directory)); - $this->assertEquals('dir', $this->instance->filetype('/'.$directory)); - $this->assertEquals(0, $this->instance->filesize('/'.$directory)); - $this->assertTrue($this->instance->isReadable('/'.$directory)); - $this->assertTrue($this->instance->isUpdatable('/'.$directory)); + $this->assertTrue($this->instance->file_exists('/' . $directory)); + $this->assertTrue($this->instance->is_dir('/' . $directory)); + $this->assertFalse($this->instance->is_file('/' . $directory)); + $this->assertEquals('dir', $this->instance->filetype('/' . $directory)); + $this->assertEquals(0, $this->instance->filesize('/' . $directory)); + $this->assertTrue($this->instance->isReadable('/' . $directory)); + $this->assertTrue($this->instance->isUpdatable('/' . $directory)); $dh = $this->instance->opendir('/'); $content = array(); @@ -85,13 +85,13 @@ abstract class Storage extends \PHPUnit_Framework_TestCase { } $this->assertEquals(array($directory), $content); - $this->assertFalse($this->instance->mkdir('/'.$directory)); //cant create existing folders - $this->assertTrue($this->instance->rmdir('/'.$directory)); + $this->assertFalse($this->instance->mkdir('/' . $directory)); //cant create existing folders + $this->assertTrue($this->instance->rmdir('/' . $directory)); $this->wait(); - $this->assertFalse($this->instance->file_exists('/'.$directory)); + $this->assertFalse($this->instance->file_exists('/' . $directory)); - $this->assertFalse($this->instance->rmdir('/'.$directory)); //cant remove non existing folders + $this->assertFalse($this->instance->rmdir('/' . $directory)); //cant remove non existing folders $dh = $this->instance->opendir('/'); $content = array(); @@ -103,8 +103,7 @@ abstract class Storage extends \PHPUnit_Framework_TestCase { $this->assertEquals(array(), $content); } - public function directoryProvider() - { + public function directoryProvider() { return array( array('folder'), array(' folder'), @@ -113,6 +112,7 @@ abstract class Storage extends \PHPUnit_Framework_TestCase { array('spéciäl földer'), ); } + /** * test the various uses of file_get_contents and file_put_contents */ @@ -298,4 +298,21 @@ abstract class Storage extends \PHPUnit_Framework_TestCase { $this->assertFalse($this->instance->file_exists('folder/bar')); $this->assertFalse($this->instance->file_exists('folder')); } + + public function hashProvider(){ + return array( + array('Foobar', 'md5'), + array('Foobar', 'sha1'), + array('Foobar', 'sha256'), + ); + } + + /** + * @dataProvider hashProvider + */ + public function testHash($data, $type) { + $this->instance->file_put_contents('hash.txt', $data); + $this->assertEquals(hash($type, $data), $this->instance->hash($type, 'hash.txt')); + $this->assertEquals(hash($type, $data, true), $this->instance->hash($type, 'hash.txt', true)); + } } -- GitLab From ed0c10a10b0b3a9d9d898a64461de707026cd6d3 Mon Sep 17 00:00:00 2001 From: Robin McCorkell Date: Thu, 20 Mar 2014 18:27:40 +0000 Subject: [PATCH 055/296] Enable the use of 'optional' on password fields The logic has been changed, in that 'class="optional"' is applied to both password and text types if the field begins with the optional market, '&'. --- apps/files_external/templates/settings.php | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/apps/files_external/templates/settings.php b/apps/files_external/templates/settings.php index de44d3c8644..8e9355dd8a5 100644 --- a/apps/files_external/templates/settings.php +++ b/apps/files_external/templates/settings.php @@ -44,9 +44,17 @@ $value): ?> - + class="optional" data-parameter="" value="" placeholder="" /> @@ -55,18 +63,13 @@ data-parameter="" checked="checked" /> - - class="optional" data-parameter="" value="" placeholder="" /> -- GitLab From 7a0eccfc63e80ea27188032135560dbb45a1e5cb Mon Sep 17 00:00:00 2001 From: Robin McCorkell Date: Thu, 20 Mar 2014 18:28:42 +0000 Subject: [PATCH 056/296] Correct field modifier checking Existing code checks for the existence of a modifier ('&', '!', '#', '*') anywhere in the field name, but strips the first character regardless. This change makes it so that only modifiers at the beginning of the string are counted. --- apps/files_external/templates/settings.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/files_external/templates/settings.php b/apps/files_external/templates/settings.php index 8e9355dd8a5..ecbde442de0 100644 --- a/apps/files_external/templates/settings.php +++ b/apps/files_external/templates/settings.php @@ -52,18 +52,18 @@ $placeholder = substr($placeholder, 1); } ?> - + class="optional" data-parameter="" value="" placeholder="" /> - + - + -- GitLab From bd881348e86670332abb0ccb8cd6a71543ee3fd1 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Thu, 20 Mar 2014 22:57:50 +0100 Subject: [PATCH 057/296] Fix wildcard handling and check even less DNs per filter, enough will be looked at anyway --- apps/user_ldap/lib/wizard.php | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/apps/user_ldap/lib/wizard.php b/apps/user_ldap/lib/wizard.php index 930db5c4743..4f7eee5a989 100644 --- a/apps/user_ldap/lib/wizard.php +++ b/apps/user_ldap/lib/wizard.php @@ -876,7 +876,7 @@ class Wizard extends LDAPUtility { * @return mixed, an array with the values on success, false otherwise * */ - private function cumulativeSearchOnAttribute($filters, $attr, $lfw = true, $dnReadLimit = 5, &$maxF = null) { + public function cumulativeSearchOnAttribute($filters, $attr, $lfw = true, $dnReadLimit = 3, &$maxF = null) { $dnRead = array(); $foundItems = array(); $maxEntries = 0; @@ -889,8 +889,11 @@ class Wizard extends LDAPUtility { if(!is_resource($cr)) { return false; } + if(isset($filters[count($filters)-1])) { + $lastFilter = $filters[count($filters)-1]; + } foreach($filters as $filter) { - if($lfw && count($foundItems) > 0) { + if($lfw && $lastFilter === $filter && count($foundItems) > 0) { continue; } $rr = $this->ldap->search($cr, $base, $filter, array($attr)); @@ -927,7 +930,7 @@ class Wizard extends LDAPUtility { $rr = $entry; //will be expected by nextEntry next round } while(($state === self::LRESULT_PROCESSED_SKIP || $this->ldap->isResource($entry)) - && ($dnReadLimit === 0 || $dnReadCount <= $dnReadLimit)); + && ($dnReadLimit === 0 || $dnReadCount < $dnReadLimit)); } } @@ -960,7 +963,7 @@ class Wizard extends LDAPUtility { //When looking for objectclasses, testing few entries is sufficient, //when looking for group we need to get all names, though. if(strtolower($attr) === 'objectclass') { - $dig = 5; + $dig = 3; } else { $dig = 0; } -- GitLab From 561d699ca67c0f5d3130b80e238c7ace8ba57e42 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Thu, 20 Mar 2014 22:58:57 +0100 Subject: [PATCH 058/296] Use the LDAP wrapper for checking resources, needs for proper testing --- 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 4f7eee5a989..f97ab51f0f0 100644 --- a/apps/user_ldap/lib/wizard.php +++ b/apps/user_ldap/lib/wizard.php @@ -886,7 +886,7 @@ class Wizard extends LDAPUtility { } $base = $this->configuration->ldapBase[0]; $cr = $this->getConnection(); - if(!is_resource($cr)) { + if(!$this->ldap->isResource($cr)) { return false; } if(isset($filters[count($filters)-1])) { -- GitLab From a085d7715f7fda43f322eb36143b268add3f2061 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Thu, 20 Mar 2014 22:59:41 +0100 Subject: [PATCH 059/296] fix potential infinite loop when the DN of the first entry was already read. --- 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 f97ab51f0f0..f6bc586a7a6 100644 --- a/apps/user_ldap/lib/wizard.php +++ b/apps/user_ldap/lib/wizard.php @@ -910,6 +910,7 @@ class Wizard extends LDAPUtility { $dnReadCount = 0; do { $entry = $this->ldap->$getEntryFunc($cr, $rr); + $getEntryFunc = 'nextEntry'; if(!$this->ldap->isResource($entry)) { continue 2; } @@ -926,7 +927,6 @@ class Wizard extends LDAPUtility { $foundItems = array_merge($foundItems, $newItems); $this->resultCache[$dn][$attr] = $newItems; $dnRead[] = $dn; - $getEntryFunc = 'nextEntry'; $rr = $entry; //will be expected by nextEntry next round } while(($state === self::LRESULT_PROCESSED_SKIP || $this->ldap->isResource($entry)) -- GitLab From 3d2ab76347b04b1d7e04684265b5d7ee678a2b38 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Fri, 21 Mar 2014 00:17:51 +0100 Subject: [PATCH 060/296] add tests for cumulativeSearchOnAttribute --- apps/user_ldap/tests/wizard.php | 198 ++++++++++++++++++++++++++++++++ 1 file changed, 198 insertions(+) create mode 100644 apps/user_ldap/tests/wizard.php diff --git a/apps/user_ldap/tests/wizard.php b/apps/user_ldap/tests/wizard.php new file mode 100644 index 00000000000..f3178332ae5 --- /dev/null +++ b/apps/user_ldap/tests/wizard.php @@ -0,0 +1,198 @@ +. +* +*/ + +namespace OCA\user_ldap\tests; + +use \OCA\user_ldap\lib\Wizard; + +// use \OCA\user_ldap\USER_LDAP as UserLDAP; +// use \OCA\user_ldap\lib\Access; +// use \OCA\user_ldap\lib\Configuration; +// use \OCA\user_ldap\lib\ILDAPWrapper; + +class Test_Wizard extends \PHPUnit_Framework_TestCase { + private function getWizardAndMocks() { + static $conMethods; + + if(is_null($conMethods)) { + $conMethods = get_class_methods('\OCA\user_ldap\lib\Configuration'); + } + $lw = $this->getMock('\OCA\user_ldap\lib\ILDAPWrapper'); + $conf = $this->getMock('\OCA\user_ldap\lib\Configuration', + $conMethods, + array($lw, null, null)); + return array(new Wizard($conf, $lw), $conf, $lw); + } + + private function prepareLdapWrapperForConnections(&$ldap) { + $ldap->expects($this->once()) + ->method('connect') + //dummy value, usually invalid + ->will($this->returnValue(true)); + + $ldap->expects($this->exactly(3)) + ->method('setOption') + ->will($this->returnValue(true)); + + $ldap->expects($this->once()) + ->method('bind') + ->will($this->returnValue(true)); + + } + + public function testCumulativeSearchOnAttributeLimited() { + list($wizard, $configuration, $ldap) = $this->getWizardAndMocks(); + + $configuration->expects($this->any()) + ->method('__get') + ->will($this->returnCallback(function($name) { + if($name === 'ldapBase') { + return array('base'); + } + return null; + })); + + $this->prepareLdapWrapperForConnections($ldap); + + $ldap->expects($this->any()) + ->method('isResource') + ->will($this->returnValue(true)); + + $ldap->expects($this->exactly(2)) + ->method('search') + //dummy value, usually invalid + ->will($this->returnValue(true)); + + $ldap->expects($this->exactly(2)) + ->method('countEntries') + //an is_resource check will follow, so we need to return a dummy resource + ->will($this->returnValue(23)); + + //5 DNs per filter means 2x firstEntry and 8x nextEntry + $ldap->expects($this->exactly(2)) + ->method('firstEntry') + //dummy value, usually invalid + ->will($this->returnValue(true)); + + $ldap->expects($this->exactly(8)) + ->method('nextEntry') + //dummy value, usually invalid + ->will($this->returnValue(true)); + + $ldap->expects($this->exactly(10)) + ->method('getAttributes') + //dummy value, usually invalid + ->will($this->returnValue(array('cn' => array('foo'), 'count' => 1))); + + global $uidnumber; + $uidnumber = 1; + $ldap->expects($this->exactly(10)) + ->method('getDN') + //dummy value, usually invalid + ->will($this->returnCallback(function($a, $b) { + global $uidnumber; + return $uidnumber++; + })); + + # The following expectations are the real test # + $filters = array('f1', 'f2', '*'); + $wizard->cumulativeSearchOnAttribute($filters, 'cn', true, 5); + unset($uidnumber); + } + + public function testCumulativeSearchOnAttributeUnlimited() { + list($wizard, $configuration, $ldap) = $this->getWizardAndMocks(); + + $configuration->expects($this->any()) + ->method('__get') + ->will($this->returnCallback(function($name) { + if($name === 'ldapBase') { + return array('base'); + } + return null; + })); + + $this->prepareLdapWrapperForConnections($ldap); + + $ldap->expects($this->any()) + ->method('isResource') + ->will($this->returnCallback(function($r) { + if($r === true) { + return true; + } + if($r % 24 === 0) { + global $uidnumber; + $uidnumber++; + return false; + } + return true; + })); + + $ldap->expects($this->exactly(2)) + ->method('search') + //dummy value, usually invalid + ->will($this->returnValue(true)); + + $ldap->expects($this->exactly(2)) + ->method('countEntries') + //an is_resource check will follow, so we need to return a dummy resource + ->will($this->returnValue(23)); + + //5 DNs per filter means 2x firstEntry and 8x nextEntry + $ldap->expects($this->exactly(2)) + ->method('firstEntry') + //dummy value, usually invalid + ->will($this->returnCallback(function($r) { + global $uidnumber; + return $uidnumber; + })); + + $ldap->expects($this->exactly(46)) + ->method('nextEntry') + //dummy value, usually invalid + ->will($this->returnCallback(function($r) { + global $uidnumber; + return $uidnumber; + })); + + $ldap->expects($this->exactly(46)) + ->method('getAttributes') + //dummy value, usually invalid + ->will($this->returnValue(array('cn' => array('foo'), 'count' => 1))); + + global $uidnumber; + $uidnumber = 1; + $ldap->expects($this->exactly(46)) + ->method('getDN') + //dummy value, usually invalid + ->will($this->returnCallback(function($a, $b) { + global $uidnumber; + return $uidnumber++; + })); + + # The following expectations are the real test # + $filters = array('f1', 'f2', '*'); + $wizard->cumulativeSearchOnAttribute($filters, 'cn', true, 0); + unset($uidnumber); + } + +} \ No newline at end of file -- GitLab From 6f605ecd671e7e6d5e9734dc74c3b9480613c090 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Fri, 21 Mar 2014 10:08:17 +0100 Subject: [PATCH 061/296] make tests work on systems without php5_ldap --- apps/user_ldap/tests/wizard.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/apps/user_ldap/tests/wizard.php b/apps/user_ldap/tests/wizard.php index f3178332ae5..2b5cabc705d 100644 --- a/apps/user_ldap/tests/wizard.php +++ b/apps/user_ldap/tests/wizard.php @@ -30,6 +30,18 @@ use \OCA\user_ldap\lib\Wizard; // use \OCA\user_ldap\lib\ILDAPWrapper; class Test_Wizard extends \PHPUnit_Framework_TestCase { + public function setUp() { + //we need to make sure the consts are defined, otherwise tests will fail + //on systems without php5_ldap + $ldapConsts = array('LDAP_OPT_PROTOCOL_VERSION', + 'LDAP_OPT_REFERRALS', 'LDAP_OPT_NETWORK_TIMEOUT'); + foreach($ldapConsts as $const) { + if(!defined($const)) { + define($const, 42); + } + } + } + private function getWizardAndMocks() { static $conMethods; -- GitLab From 4230983e69906de916c73e06204ff87df72bfce9 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Fri, 21 Mar 2014 10:10:49 +0100 Subject: [PATCH 062/296] define var --- apps/user_ldap/lib/wizard.php | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/user_ldap/lib/wizard.php b/apps/user_ldap/lib/wizard.php index f6bc586a7a6..54454d2ad22 100644 --- a/apps/user_ldap/lib/wizard.php +++ b/apps/user_ldap/lib/wizard.php @@ -889,6 +889,7 @@ class Wizard extends LDAPUtility { if(!$this->ldap->isResource($cr)) { return false; } + $lastFilter = null; if(isset($filters[count($filters)-1])) { $lastFilter = $filters[count($filters)-1]; } -- GitLab From c9d97d2ef22ca8b07f692a93f16619f7316d7d8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Fri, 21 Mar 2014 11:56:47 +0100 Subject: [PATCH 063/296] add top:45px to position:fixed controls, fixes alignment on android 4.0.4 browser --- core/css/styles.css | 1 + 1 file changed, 1 insertion(+) diff --git a/core/css/styles.css b/core/css/styles.css index 69cf6df07d0..af7f6dfd58e 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -246,6 +246,7 @@ input[type="submit"].enabled { -webkit-box-sizing: border-box; box-sizing: border-box; position: fixed; + top:45px; right: 0; left: 0; height: 44px; -- GitLab From 7a8f1389fec7db92e1da4f4d46bf0b2737bd3482 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 21 Mar 2014 13:23:14 +0100 Subject: [PATCH 064/296] fix temporary file based common hash --- lib/private/files/storage/common.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/private/files/storage/common.php b/lib/private/files/storage/common.php index 3c078d7b1b4..2b697141515 100644 --- a/lib/private/files/storage/common.php +++ b/lib/private/files/storage/common.php @@ -160,8 +160,7 @@ abstract class Common implements \OC\Files\Storage\Storage { public function hash($type, $path, $raw = false) { $tmpFile = $this->getLocalFile($path); - $hash = hash($type, $tmpFile, $raw); - unlink($tmpFile); + $hash = hash_file($type, $tmpFile, $raw); return $hash; } -- GitLab From ecf52e05fb9e88910167351dfa75bde5db2267ae Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Fri, 21 Mar 2014 14:30:11 +0100 Subject: [PATCH 065/296] mobile: adjust width of app title, fix overlap --- core/css/mobile.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/css/mobile.css b/core/css/mobile.css index 56bee8f8a30..6665b95f27c 100644 --- a/core/css/mobile.css +++ b/core/css/mobile.css @@ -54,7 +54,7 @@ display: inline-block; } #navigation a { - width: 70px; + width: 80px; height: 80px; display: inline-block; text-align: center; @@ -65,7 +65,7 @@ font-size: 13px; padding-bottom: 0; padding-left: 0; - width: initial; + width: 80px; } #navigation .icon { margin: 0 auto; -- GitLab From 40c20b2eebed45be56cf554b904fe2d7510ed448 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Fri, 21 Mar 2014 14:34:05 +0100 Subject: [PATCH 066/296] mobile: remove shift for multiselect bar to account for missing navigation --- apps/files/css/mobile.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/apps/files/css/mobile.css b/apps/files/css/mobile.css index 00c4630ea6c..225448e5abc 100644 --- a/apps/files/css/mobile.css +++ b/apps/files/css/mobile.css @@ -13,6 +13,11 @@ table td.date { display: none; } +/* remove shift for multiselect bar to account for missing navigation */ +table.multiselect thead { + padding-left: 0; +} + /* restrict length of displayed filename to prevent overflow */ table td.filename .nametext { max-width: 75% !important; -- GitLab From c4e7d7989a94ec974842120544a9510a56d70319 Mon Sep 17 00:00:00 2001 From: Robin McCorkell Date: Fri, 21 Mar 2014 13:51:45 +0000 Subject: [PATCH 067/296] Enable the use of 'optional' on password fields (JavaScript part) See ed0c10a10b0b3a9d9d898a64461de707026cd6d3 --- apps/files_external/js/settings.js | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/apps/files_external/js/settings.js b/apps/files_external/js/settings.js index cd2a3103eb7..0fceb41c0af 100644 --- a/apps/files_external/js/settings.js +++ b/apps/files_external/js/settings.js @@ -181,16 +181,21 @@ $(document).ready(function() { $.each(configurations, function(backend, parameters) { if (backend == backendClass) { $.each(parameters['configuration'], function(parameter, placeholder) { - if (placeholder.indexOf('*') != -1) { - td.append(''); - } else if (placeholder.indexOf('!') != -1) { + var is_optional = false; + if (placeholder.indexOf('&') === 0) { + is_optional = true; + placeholder = placeholder.substring(1); + } + if (placeholder.indexOf('*') === 0) { + var class_string = is_optional ? ' class="optional"' : ''; + td.append(''); + else if (placeholder.indexOf('!') === 0) { td.append(''); - } else if (placeholder.indexOf('&') != -1) { - td.append(''); - } else if (placeholder.indexOf('#') != -1) { + else if (placeholder.indexOf('#') === 0) { td.append(''); - } else { - td.append(''); + else { + var class_string = is_optional ? ' class="optional"' : ''; + td.append(''); } }); if (parameters['custom'] && $('#externalStorage tbody tr.'+backendClass.replace(/\\/g, '\\\\')).length == 1) { -- GitLab From 96e6cb3db4a97a1397dc56d3d1c1a5131e45b972 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 21 Mar 2014 15:00:25 +0100 Subject: [PATCH 068/296] all authentication apps are loaded at first - everything else relies on these apps --- lib/base.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/base.php b/lib/base.php index d02d9e1d261..40729f05119 100644 --- a/lib/base.php +++ b/lib/base.php @@ -549,7 +549,8 @@ class OC { // Load minimum set of apps - which is filesystem, authentication and logging if (!self::checkUpgrade(false)) { - OC_App::loadApps(array('filesystem', 'authentication', 'logging')); + OC_App::loadApps(array('authentication')); + OC_App::loadApps(array('filesystem', 'logging')); } //setup extra user backends -- GitLab From c6aefada71097d2baf7db36b4829e7f6b258ea95 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Fri, 21 Mar 2014 15:29:37 +0100 Subject: [PATCH 069/296] do not show Deleted Files on mobile, not optimized yet and button too long --- apps/files/css/mobile.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/apps/files/css/mobile.css b/apps/files/css/mobile.css index 225448e5abc..221c23e5ad5 100644 --- a/apps/files/css/mobile.css +++ b/apps/files/css/mobile.css @@ -5,6 +5,11 @@ min-width: initial !important; } +/* do not show Deleted Files on mobile, not optimized yet and button too long */ +#controls #trash { + display: none; +} + /* hide size and date columns */ table th#headerSize, table td.filesize, -- GitLab From f2566e649ffd944dd5dfea3ba38124fef9472ed8 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Fri, 21 Mar 2014 16:36:45 +0100 Subject: [PATCH 070/296] mobile: adjust break to 768, also fix min-widths --- apps/files/css/files.css | 2 +- apps/files/css/mobile.css | 2 +- core/css/mobile.css | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/files/css/files.css b/apps/files/css/files.css index af863aca33e..a463eb51d8f 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -77,7 +77,7 @@ } /* make sure there's enough room for the file actions */ #body-user #filestable { - min-width: 750px; + min-width: 688px; } #body-user #controls { min-width: 600px; diff --git a/apps/files/css/mobile.css b/apps/files/css/mobile.css index 221c23e5ad5..087bb1f8364 100644 --- a/apps/files/css/mobile.css +++ b/apps/files/css/mobile.css @@ -1,4 +1,4 @@ -@media only screen and (max-width: 600px) { +@media only screen and (max-width: 768px) { /* don’t require a minimum width for files table */ #body-user #filestable { diff --git a/core/css/mobile.css b/core/css/mobile.css index 6665b95f27c..dbe1c55a560 100644 --- a/core/css/mobile.css +++ b/core/css/mobile.css @@ -1,4 +1,4 @@ -@media only screen and (max-width: 600px) { +@media only screen and (max-width: 768px) { /* show caret indicator next to logo to make clear it is tappable */ #owncloud.menutoggle { -- GitLab From 9b9b6ec31eac005f98bf38e691f81812335544e9 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Fri, 21 Mar 2014 16:40:39 +0100 Subject: [PATCH 071/296] mobile: set a width for navigation popover to it's always 3 columns --- core/css/mobile.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/css/mobile.css b/core/css/mobile.css index dbe1c55a560..c67ac3e5ecf 100644 --- a/core/css/mobile.css +++ b/core/css/mobile.css @@ -34,8 +34,7 @@ #navigation { top: 45px; bottom: initial; - width: 90%; - max-width: 320px; + width: 255px; max-height: 90%; margin-top: 0; top: 45px; -- GitLab From 89ee5511580b7e9f5619961b12cd96b984b6b6e9 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Fri, 21 Mar 2014 16:43:04 +0100 Subject: [PATCH 072/296] mobile: adjust breakpoint in JS as well --- core/js/js.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/js/js.js b/core/js/js.js index 121a4062d37..3c169cfb21f 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -1013,7 +1013,7 @@ function initCore() { if (!OC._matchMedia) { return; } - var mq = OC._matchMedia('(max-width: 600px)'); + var mq = OC._matchMedia('(max-width: 768px)'); var lastMatch = mq.matches; var $toggle = $('#header #owncloud'); var $navigation = $('#navigation'); -- GitLab From 905aabf5d41b0830cc2754229c39be709479ed7b Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Fri, 21 Mar 2014 16:43:40 +0100 Subject: [PATCH 073/296] mobile: document min-width value --- apps/files/css/files.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/files/css/files.css b/apps/files/css/files.css index a463eb51d8f..1bac5d2b7db 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -77,10 +77,10 @@ } /* make sure there's enough room for the file actions */ #body-user #filestable { - min-width: 688px; + min-width: 688px; /* 768 (mobile break) - 80 (nav width) */ } #body-user #controls { - min-width: 600px; + min-width: 688px; /* 768 (mobile break) - 80 (nav width) */ } #filestable tbody tr { background-color:#fff; height:40px; } -- GitLab From 66c4fc04b8c0bcbd861fba84ab0729ad66e54472 Mon Sep 17 00:00:00 2001 From: mh Date: Fri, 21 Mar 2014 16:50:23 +0100 Subject: [PATCH 074/296] use https as submodule url git:// domains might not be allowed in all environments, while cloning https through a proxy is fine. -> Make checkout in restrictive environments possible. --- .gitmodules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitmodules b/.gitmodules index b9c1a3702cf..bc2beee81ad 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ [submodule "3rdparty"] path = 3rdparty - url = git://github.com/owncloud/3rdparty.git + url = https://github.com/owncloud/3rdparty.git -- GitLab From 10c9b8eb996bcabbe4ef40c51248fd6fca70814a Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Thu, 20 Mar 2014 16:15:18 +0100 Subject: [PATCH 075/296] Cache folder is now configurable When using an external cache folder, it is automatically mounted in FileSystem::initFileSystem so that any app can use it transparently by creating a view on the "/$user/cache" directory. --- config/config.sample.php | 13 +++++++++-- lib/private/cache/file.php | 15 +++++++------ lib/private/files/filesystem.php | 36 ++++++++++++++++++++++++++++++ lib/private/forbiddenexception.php | 16 +++++++++++++ 4 files changed, 71 insertions(+), 9 deletions(-) create mode 100644 lib/private/forbiddenexception.php diff --git a/config/config.sample.php b/config/config.sample.php index 987a866e49b..f8e216d1e26 100755 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -273,6 +273,15 @@ $CONFIG = array( /* all css and js files will be served by the web server statically in one js file and ons css file*/ 'asset-pipeline.enabled' => false, - /* where mount.json file should be stored, defaults to data/mount.json */ - 'mount_file' => '', +/* where mount.json file should be stored, defaults to data/mount.json */ +'mount_file' => '', + +/* + * Location of the cache folder, defaults to "data/$user/cache" where "$user" is the current user. + * + * When specified, the format will change to "$cache_path/$user" where "$cache_path" is the configured + * cache directory and "$user" is the user. + * + */ +'cache_path' => '' ); diff --git a/lib/private/cache/file.php b/lib/private/cache/file.php index 8a6ef39f61b..be6805a9a57 100644 --- a/lib/private/cache/file.php +++ b/lib/private/cache/file.php @@ -1,6 +1,7 @@ + * Copyright (c) 2014 Vincent Petry * This file is licensed under the Affero General Public License version 3 or * later. * See the COPYING-README file. @@ -10,22 +11,22 @@ namespace OC\Cache; class File { protected $storage; + + /** + * Returns the cache storage for the logged in user + * @return cache storage + */ protected function getStorage() { if (isset($this->storage)) { return $this->storage; } if(\OC_User::isLoggedIn()) { \OC\Files\Filesystem::initMountPoints(\OC_User::getUser()); - $subdir = 'cache'; - $view = new \OC\Files\View('/' . \OC_User::getUser()); - if(!$view->file_exists($subdir)) { - $view->mkdir($subdir); - } - $this->storage = new \OC\Files\View('/' . \OC_User::getUser().'/'.$subdir); + $this->storage = new \OC\Files\View('/' . \OC_User::getUser() . '/cache'); return $this->storage; }else{ \OC_Log::write('core', 'Can\'t get cache storage, user not logged in', \OC_Log::ERROR); - return false; + throw new \OC\ForbiddenException('Can\t get cache storage, user not logged in'); } } diff --git a/lib/private/files/filesystem.php b/lib/private/files/filesystem.php index c31e0c38180..56bafc7e974 100644 --- a/lib/private/files/filesystem.php +++ b/lib/private/files/filesystem.php @@ -321,10 +321,46 @@ class Filesystem { self::mount('\OC\Files\Storage\Local', array('datadir' => $root), $user); } + self::mountCacheDir($user); + // Chance to mount for other storages \OC_Hook::emit('OC_Filesystem', 'post_initMountPoints', array('user' => $user, 'user_dir' => $root)); } + /** + * Mounts the cache directory + * @param string $user user name + */ + private static function mountCacheDir($user) { + $cacheBaseDir = \OC_Config::getValue('cache_path', ''); + if ($cacheBaseDir === '') { + // use local cache dir relative to the user's home + $subdir = 'cache'; + $view = new \OC\Files\View('/' . $user); + if(!$view->file_exists($subdir)) { + $view->mkdir($subdir); + } + } else { + $cacheDir = rtrim($cacheBaseDir, '/') . '/' . $user; + if (!file_exists($cacheDir)) { + mkdir($cacheDir, 0770, true); + } + // mount external cache dir to "/$user/cache" mount point + self::mount('\OC\Files\Storage\Local', array('datadir' => $cacheDir), '/' . $user . '/cache'); + } + } + + /** + * fill in the correct values for $user + * + * @param string $user + * @param string $input + * @return string + */ + private static function setUserVars($user, $input) { + return str_replace('$user', $user, $input); + } + /** * get the default filesystem view * diff --git a/lib/private/forbiddenexception.php b/lib/private/forbiddenexception.php new file mode 100644 index 00000000000..14a4cd14984 --- /dev/null +++ b/lib/private/forbiddenexception.php @@ -0,0 +1,16 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC; + +/** + * Exception thrown whenever access to a resource has + * been forbidden or whenever a user isn't authenticated. + */ +class ForbiddenException extends \Exception { +} -- GitLab From 3d8ce8104f134d8c53bedc62ef9e0fcbb9e03465 Mon Sep 17 00:00:00 2001 From: raghunayyar Date: Mon, 24 Mar 2014 17:59:53 +0530 Subject: [PATCH 076/296] Adds Style changes to app-navigation in core/css/apps.css --- core/css/apps.css | 13 +++++++++++-- settings/js/apps.js | 4 ++-- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/core/css/apps.css b/core/css/apps.css index 0e6a080c9cd..5bfc2d4a08e 100644 --- a/core/css/apps.css +++ b/core/css/apps.css @@ -29,10 +29,19 @@ -moz-box-sizing: border-box; box-sizing: border-box; } #app-navigation .active, -#app-navigation .active a, -#app-navigation li:hover > a { +#app-navigation .active a { + background-color: #eee; +} +#app-navigation li:hover > a { background-color: #ddd; } +#app-navigation .active { + font-weight:700; +} +#app-navigation .selected, +#app-navigation .selected a { + background-color:#ddd; +} /* special rules for first-level entries and folders */ #app-navigation > ul > li { diff --git a/settings/js/apps.js b/settings/js/apps.js index f151a034a85..05db4c9a048 100644 --- a/settings/js/apps.js +++ b/settings/js/apps.js @@ -82,9 +82,9 @@ OC.Settings.Apps = OC.Settings.Apps || { page.find('p.appslink').hide(); page.find('span.score').hide(); } - if (typeof($('#app-navigation li[data-id="'+app.id+'"]').data('errormsg')) !== "undefined") { + if (typeof($('#app-navigation ul li[data-id="'+app.id+'"]').data('errormsg')) !== "undefined") { page.find(".warning").show(); - page.find(".warning").text($('#app-navigation li[data-id="'+app.id+'"]').data('errormsg')); + page.find(".warning").text($('#app-navigation ul li[data-id="'+app.id+'"]').data('errormsg')); } else { page.find(".warning").hide(); } -- GitLab From 09cc0205352ce02ea5e4d3dc36d12c89fbe3db1a Mon Sep 17 00:00:00 2001 From: Scott Arciszewski Date: Mon, 24 Mar 2014 08:57:33 -0400 Subject: [PATCH 077/296] Update crypt.php Use a 256-bit random value --- apps/files_encryption/lib/crypt.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/files_encryption/lib/crypt.php b/apps/files_encryption/lib/crypt.php index e38a4ef7125..a4f7bd35497 100755 --- a/apps/files_encryption/lib/crypt.php +++ b/apps/files_encryption/lib/crypt.php @@ -497,13 +497,13 @@ class Crypt { } /** - * @brief Generate a pseudo random 2048-bit ASCII key, used as file key + * @brief Generate a pseudo random 256-bit ASCII key, used as file key * @returns $key Generated key */ public static function generateKey() { // Generate key - if ($key = base64_encode(openssl_random_pseudo_bytes(256, $strong))) { + if ($key = base64_encode(openssl_random_pseudo_bytes(32, $strong))) { if (!$strong) { -- GitLab From 690c31ec20cc15129576fe64140d8733f9daf640 Mon Sep 17 00:00:00 2001 From: Robin McCorkell Date: Mon, 24 Mar 2014 13:27:46 +0000 Subject: [PATCH 078/296] Insert missing brace --- apps/files_external/js/settings.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/files_external/js/settings.js b/apps/files_external/js/settings.js index 0fceb41c0af..00793a614c2 100644 --- a/apps/files_external/js/settings.js +++ b/apps/files_external/js/settings.js @@ -189,11 +189,11 @@ $(document).ready(function() { if (placeholder.indexOf('*') === 0) { var class_string = is_optional ? ' class="optional"' : ''; td.append(''); - else if (placeholder.indexOf('!') === 0) { + } else if (placeholder.indexOf('!') === 0) { td.append(''); - else if (placeholder.indexOf('#') === 0) { + } else if (placeholder.indexOf('#') === 0) { td.append(''); - else { + } else { var class_string = is_optional ? ' class="optional"' : ''; td.append(''); } -- GitLab From 1e39719926ea4b204a3b0a3e8aeba6a9a9ad5a96 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Mon, 24 Mar 2014 14:32:04 +0100 Subject: [PATCH 079/296] Added unit tests for external cache folder --- tests/lib/files/filesystem.php | 51 ++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/tests/lib/files/filesystem.php b/tests/lib/files/filesystem.php index 90f1dfe581b..53f528af793 100644 --- a/tests/lib/files/filesystem.php +++ b/tests/lib/files/filesystem.php @@ -226,4 +226,55 @@ class Filesystem extends \PHPUnit_Framework_TestCase { $path = $arguments['path']; $this->assertEquals($path, \OC\Files\Filesystem::normalizePath($path)); //the path passed to the hook should already be normalized } + + /** + * Test that the default cache dir is part of the user's home + */ + public function testMountDefaultCacheDir() { + $userId = uniqid('user_'); + $oldCachePath = \OC_Config::getValue('cache_path', ''); + // no cache path configured + \OC_Config::setValue('cache_path', ''); + + \OC_User::createUser($userId, $userId); + \OC\Files\Filesystem::initMountPoints($userId); + + $this->assertEquals( + '/' . $userId . '/', + \OC\Files\Filesystem::getMountPoint('/' . $userId . '/cache') + ); + list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath('/' . $userId . '/cache'); + $this->assertInstanceOf('\OC\Files\Storage\Home', $storage); + $this->assertEquals('cache', $internalPath); + \OC_User::deleteUser($userId); + + \OC_Config::setValue('cache_path', $oldCachePath); + } + + /** + * Test that an external cache is mounted into + * the user's home + */ + public function testMountExternalCacheDir() { + $userId = uniqid('user_'); + + $oldCachePath = \OC_Config::getValue('cache_path', ''); + // set cache path to temp dir + $cachePath = \OC_Helper::tmpFolder() . '/extcache'; + \OC_Config::setValue('cache_path', $cachePath); + + \OC_User::createUser($userId, $userId); + \OC\Files\Filesystem::initMountPoints($userId); + + $this->assertEquals( + '/' . $userId . '/cache/', + \OC\Files\Filesystem::getMountPoint('/' . $userId . '/cache') + ); + list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath('/' . $userId . '/cache'); + $this->assertInstanceOf('\OC\Files\Storage\Local', $storage); + $this->assertEquals('', $internalPath); + \OC_User::deleteUser($userId); + + \OC_Config::setValue('cache_path', $oldCachePath); + } } -- GitLab From aa5bba2bcce010ecbbbf4df0a63570a66986d846 Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Tue, 25 Mar 2014 14:22:39 +0100 Subject: [PATCH 080/296] 'ID' => 'id' and check existence of EMAIL --- core/ajax/share.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/core/ajax/share.php b/core/ajax/share.php index 6bac2867c48..588781556ff 100644 --- a/core/ajax/share.php +++ b/core/ajax/share.php @@ -268,6 +268,10 @@ if (isset($_POST['action']) && isset($_POST['itemType']) && isset($_POST['itemSo if (!is_null($cm) && $cm->isEnabled()) { $contacts = $cm->search($_GET['search'], array('FN', 'EMAIL')); foreach ($contacts as $contact) { + if (!isset($emails = $contact['EMAIL']) { + continue; + } + $emails = $contact['EMAIL']; if (!is_array($emails)) { $emails = array($emails); @@ -275,7 +279,7 @@ if (isset($_POST['action']) && isset($_POST['itemType']) && isset($_POST['itemSo foreach($emails as $email) { $result[] = array( - 'id' => $contact['ID'], + 'id' => $contact['id'], 'email' => $email, 'displayname' => $contact['FN'], ); -- GitLab From 0b4d87961926d69e5f95b2a6477edb804d726b78 Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Tue, 25 Mar 2014 15:38:11 +0100 Subject: [PATCH 081/296] Fix copy/paste error :P --- core/ajax/share.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/ajax/share.php b/core/ajax/share.php index 588781556ff..747cb3c6dbb 100644 --- a/core/ajax/share.php +++ b/core/ajax/share.php @@ -268,7 +268,7 @@ if (isset($_POST['action']) && isset($_POST['itemType']) && isset($_POST['itemSo if (!is_null($cm) && $cm->isEnabled()) { $contacts = $cm->search($_GET['search'], array('FN', 'EMAIL')); foreach ($contacts as $contact) { - if (!isset($emails = $contact['EMAIL']) { + if (!isset($contact['EMAIL'])) { continue; } -- GitLab From f9279ac77ac8f4541bd0237fd5126f10cb7798a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 25 Mar 2014 17:42:41 +0100 Subject: [PATCH 082/296] killing some more calls to OC_App::loadApps(); - because we load all apps in handleRequest() --- apps/files/command/scan.php | 1 - core/ajax/share.php | 1 - search/ajax/search.php | 1 - settings/admin.php | 1 - settings/apps.php | 1 - settings/changepassword/controller.php | 6 ------ settings/help.php | 1 - settings/personal.php | 1 - settings/settings.php | 1 - settings/users.php | 1 - 10 files changed, 15 deletions(-) diff --git a/apps/files/command/scan.php b/apps/files/command/scan.php index f334f29a939..25ab70af362 100644 --- a/apps/files/command/scan.php +++ b/apps/files/command/scan.php @@ -58,7 +58,6 @@ class Scan extends Command { protected function execute(InputInterface $input, OutputInterface $output) { if ($input->getOption('all')) { - \OC_App::loadApps('authentication'); $users = $this->userManager->search(''); } else { $users = $input->getArgument('user_id'); diff --git a/core/ajax/share.php b/core/ajax/share.php index 3f04e1e4ad1..e667d9b5faa 100644 --- a/core/ajax/share.php +++ b/core/ajax/share.php @@ -21,7 +21,6 @@ OC_JSON::checkLoggedIn(); OCP\JSON::callCheck(); -OC_App::loadApps(); $defaults = new \OCP\Defaults(); diff --git a/search/ajax/search.php b/search/ajax/search.php index f0ca5752b9a..0cc1f9d30cd 100644 --- a/search/ajax/search.php +++ b/search/ajax/search.php @@ -23,7 +23,6 @@ // Check if we are a user OC_JSON::checkLoggedIn(); -OC_App::loadApps(); $query=(isset($_GET['query']))?$_GET['query']:''; if($query) { diff --git a/settings/admin.php b/settings/admin.php index 80b038d2ef6..5e04f34367a 100755 --- a/settings/admin.php +++ b/settings/admin.php @@ -6,7 +6,6 @@ */ OC_Util::checkAdminUser(); -OC_App::loadApps(); OC_Util::addStyle( "settings", "settings" ); OC_Util::addScript( "settings", "admin" ); diff --git a/settings/apps.php b/settings/apps.php index 96b6d21b502..6fd2efc2018 100644 --- a/settings/apps.php +++ b/settings/apps.php @@ -22,7 +22,6 @@ */ OC_Util::checkAdminUser(); -OC_App::loadApps(); // Load the files we need OC_Util::addStyle( "settings", "settings" ); diff --git a/settings/changepassword/controller.php b/settings/changepassword/controller.php index e8c2a1943f3..9f1e7329964 100644 --- a/settings/changepassword/controller.php +++ b/settings/changepassword/controller.php @@ -8,9 +8,6 @@ class Controller { \OC_JSON::callCheck(); \OC_JSON::checkLoggedIn(); - // Manually load apps to ensure hooks work correctly (workaround for issue 1503) - \OC_App::loadApps(); - $username = \OC_User::getUser(); $password = isset($_POST['personal-password']) ? $_POST['personal-password'] : null; $oldPassword = isset($_POST['oldpassword']) ? $_POST['oldpassword'] : ''; @@ -32,9 +29,6 @@ class Controller { \OC_JSON::callCheck(); \OC_JSON::checkLoggedIn(); - // Manually load apps to ensure hooks work correctly (workaround for issue 1503) - \OC_App::loadApps(); - if (isset($_POST['username'])) { $username = $_POST['username']; } else { diff --git a/settings/help.php b/settings/help.php index 88693939b84..301f50592ae 100644 --- a/settings/help.php +++ b/settings/help.php @@ -6,7 +6,6 @@ */ OC_Util::checkLoggedIn(); -OC_App::loadApps(); // Load the files we need OC_Util::addStyle( "settings", "settings" ); diff --git a/settings/personal.php b/settings/personal.php index cf1a496bdf0..be1aa6400bf 100644 --- a/settings/personal.php +++ b/settings/personal.php @@ -6,7 +6,6 @@ */ OC_Util::checkLoggedIn(); -OC_App::loadApps(); $defaults = new OC_Defaults(); // initialize themable default strings and urls diff --git a/settings/settings.php b/settings/settings.php index 1e05452ec4d..c08732fcf66 100644 --- a/settings/settings.php +++ b/settings/settings.php @@ -6,7 +6,6 @@ */ OC_Util::checkLoggedIn(); -OC_App::loadApps(); OC_Util::addStyle( 'settings', 'settings' ); OC_App::setActiveNavigationEntry( 'settings' ); diff --git a/settings/users.php b/settings/users.php index 2f1c63a0b59..f09d0e90d3c 100644 --- a/settings/users.php +++ b/settings/users.php @@ -6,7 +6,6 @@ */ OC_Util::checkSubAdminUser(); -OC_App::loadApps(); // We have some javascript foo! OC_Util::addScript( 'settings', 'users' ); -- GitLab From 8b86b94d47d7fa78669bdc4f17e4b1fa39079787 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 25 Mar 2014 17:46:05 +0100 Subject: [PATCH 083/296] call OC_App::loadApps(); to load all commands of all apps and related functionality --- console.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/console.php b/console.php index fc6957062be..dd2c1026e47 100644 --- a/console.php +++ b/console.php @@ -21,6 +21,9 @@ if (!OC::$CLI) { exit(0); } +// load all apps to get all api routes properly setup +OC_App::loadApps(); + $defaults = new OC_Defaults; $application = new Application($defaults->getName(), \OC_Util::getVersionString()); require_once 'core/register_command.php'; -- GitLab From 8b6d1d3bf2b31c13417bbac0ede6bc319877bf61 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Tue, 18 Feb 2014 12:37:32 +0100 Subject: [PATCH 084/296] added private share api --- lib/private/share/share.php | 1886 +++++++++++++++++++++++++++++++++++ lib/public/share.php | 1705 ++----------------------------- 2 files changed, 1944 insertions(+), 1647 deletions(-) create mode 100644 lib/private/share/share.php diff --git a/lib/private/share/share.php b/lib/private/share/share.php new file mode 100644 index 00000000000..b44d362672b --- /dev/null +++ b/lib/private/share/share.php @@ -0,0 +1,1886 @@ + + * 2014 Bjoern Schiessle + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE + * License as published by the Free Software Foundation; either + * version 3 of the License, or any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU Affero General Public + * License along with this library. If not, see . + */ + +namespace OC\Share; + +/** + * This class provides the ability for apps to share their content between users. + * Apps must create a backend class that implements OCP\Share_Backend and register it with this class. + * + * It provides the following hooks: + * - post_shared + */ +class Share { + + const SHARE_TYPE_USER = 0; + const SHARE_TYPE_GROUP = 1; + const SHARE_TYPE_LINK = 3; + const SHARE_TYPE_EMAIL = 4; + const SHARE_TYPE_CONTACT = 5; + const SHARE_TYPE_REMOTE = 6; + + /** CRUDS permissions (Create, Read, Update, Delete, Share) using a bitmask + * Construct permissions for share() and setPermissions with Or (|) e.g. + * Give user read and update permissions: PERMISSION_READ | PERMISSION_UPDATE + * + * Check if permission is granted with And (&) e.g. Check if delete is + * granted: if ($permissions & PERMISSION_DELETE) + * + * Remove permissions with And (&) and Not (~) e.g. Remove the update + * permission: $permissions &= ~PERMISSION_UPDATE + * + * Apps are required to handle permissions on their own, this class only + * stores and manages the permissions of shares + * @see lib/public/constants.php + */ + + const FORMAT_NONE = -1; + const FORMAT_STATUSES = -2; + const FORMAT_SOURCES = -3; + + const TOKEN_LENGTH = 32; // see db_structure.xml + + private static $shareTypeUserAndGroups = -1; + private static $shareTypeGroupUserUnique = 2; + private static $backends = array(); + private static $backendTypes = array(); + private static $isResharingAllowed; + + /** + * Register a sharing backend class that implements OCP\Share_Backend for an item type + * @param string Item type + * @param string Backend class + * @param string (optional) Depends on item type + * @param array (optional) List of supported file extensions if this item type depends on files + * @return Returns true if backend is registered or false if error + */ + public static function registerBackend($itemType, $class, $collectionOf = null, $supportedFileExtensions = null) { + if (self::isEnabled()) { + if (!isset(self::$backendTypes[$itemType])) { + self::$backendTypes[$itemType] = array( + 'class' => $class, + 'collectionOf' => $collectionOf, + 'supportedFileExtensions' => $supportedFileExtensions + ); + if(count(self::$backendTypes) === 1) { + \OC_Util::addScript('core', 'share'); + \OC_Util::addStyle('core', 'share'); + } + return true; + } + \OC_Log::write('OCP\Share', + 'Sharing backend '.$class.' not registered, '.self::$backendTypes[$itemType]['class'] + .' is already registered for '.$itemType, + \OC_Log::WARN); + } + return false; + } + + /** + * Check if the Share API is enabled + * @return Returns true if enabled or false + * + * The Share API is enabled by default if not configured + */ + public static function isEnabled() { + if (\OC_Appconfig::getValue('core', 'shareapi_enabled', 'yes') == 'yes') { + return true; + } + return false; + } + + /** + * Prepare a path to be passed to DB as file_target + * @param string $path path + * @return string Prepared path + */ + public static function prepFileTarget( $path ) { + + // Paths in DB are stored with leading slashes, so add one if necessary + if ( substr( $path, 0, 1 ) !== '/' ) { + + $path = '/' . $path; + + } + + return $path; + + } + + /** + * Find which users can access a shared item + * @param $path to the file + * @param $user owner of the file + * @param include owner to the list of users with access to the file + * @return array + * @note $path needs to be relative to user data dir, e.g. 'file.txt' + * not '/admin/data/file.txt' + */ + public static function getUsersSharingFile($path, $user, $includeOwner = false) { + + $shares = array(); + $publicShare = false; + $source = -1; + $cache = false; + + $view = new \OC\Files\View('/' . $user . '/files'); + if ($view->file_exists($path)) { + $meta = $view->getFileInfo($path); + } else { + // if the file doesn't exists yet we start with the parent folder + $meta = $view->getFileInfo(dirname($path)); + } + + if($meta !== false) { + $source = $meta['fileid']; + $cache = new \OC\Files\Cache\Cache($meta['storage']); + } + + while ($source !== -1) { + + // Fetch all shares with another user + $query = \OC_DB::prepare( + 'SELECT `share_with` + FROM + `*PREFIX*share` + WHERE + `item_source` = ? AND `share_type` = ? AND `item_type` IN (\'file\', \'folder\')' + ); + + $result = $query->execute(array($source, self::SHARE_TYPE_USER)); + + if (\OCP\DB::isError($result)) { + \OCP\Util::writeLog('OCP\Share', \OC_DB::getErrorMessage($result), \OC_Log::ERROR); + } else { + while ($row = $result->fetchRow()) { + $shares[] = $row['share_with']; + } + } + // We also need to take group shares into account + + $query = \OC_DB::prepare( + 'SELECT `share_with` + FROM + `*PREFIX*share` + WHERE + `item_source` = ? AND `share_type` = ? AND `item_type` IN (\'file\', \'folder\')' + ); + + $result = $query->execute(array($source, self::SHARE_TYPE_GROUP)); + + if (\OCP\DB::isError($result)) { + \OCP\Util::writeLog('OCP\Share', \OC_DB::getErrorMessage($result), \OC_Log::ERROR); + } else { + while ($row = $result->fetchRow()) { + $usersInGroup = \OC_Group::usersInGroup($row['share_with']); + $shares = array_merge($shares, $usersInGroup); + } + } + + //check for public link shares + if (!$publicShare) { + $query = \OC_DB::prepare( + 'SELECT `share_with` + FROM + `*PREFIX*share` + WHERE + `item_source` = ? AND `share_type` = ? AND `item_type` IN (\'file\', \'folder\')' + ); + + $result = $query->execute(array($source, self::SHARE_TYPE_LINK)); + + if (\OCP\DB::isError($result)) { + \OCP\Util::writeLog('OCP\Share', \OC_DB::getErrorMessage($result), \OC_Log::ERROR); + } else { + if ($result->fetchRow()) { + $publicShare = true; + } + } + } + + // let's get the parent for the next round + $meta = $cache->get((int)$source); + if($meta !== false) { + $source = (int)$meta['parent']; + } else { + $source = -1; + } + } + // Include owner in list of users, if requested + if ($includeOwner) { + $shares[] = $user; + } + + return array("users" => array_unique($shares), "public" => $publicShare); + } + + /** + * Get the items of item type shared with the current user + * @param string Item type + * @param int Format (optional) Format type must be defined by the backend + * @param mixed Parameters (optional) + * @param int Number of items to return (optional) Returns all by default + * @param bool include collections (optional) + * @return Return depends on format + */ + public static function getItemsSharedWith($itemType, $format = self::FORMAT_NONE, + $parameters = null, $limit = -1, $includeCollections = false) { + return self::getItems($itemType, null, self::$shareTypeUserAndGroups, \OC_User::getUser(), null, $format, + $parameters, $limit, $includeCollections); + } + + /** + * Get the item of item type shared with the current user + * @param string $itemType + * @param string $itemTarget + * @param int $format (optional) Format type must be defined by the backend + * @param mixed Parameters (optional) + * @param bool include collections (optional) + * @return Return depends on format + */ + public static function getItemSharedWith($itemType, $itemTarget, $format = self::FORMAT_NONE, + $parameters = null, $includeCollections = false) { + return self::getItems($itemType, $itemTarget, self::$shareTypeUserAndGroups, \OC_User::getUser(), null, $format, + $parameters, 1, $includeCollections); + } + + /** + * Get the item of item type shared with a given user by source + * @param string $itemType + * @param string $itemSource + * @param string $user User user to whom the item was shared + * @return array Return list of items with file_target, permissions and expiration + */ + public static function getItemSharedWithUser($itemType, $itemSource, $user) { + + $shares = array(); + + // first check if there is a db entry for the specific user + $query = \OC_DB::prepare( + 'SELECT `file_target`, `permissions`, `expiration` + FROM + `*PREFIX*share` + WHERE + `item_source` = ? AND `item_type` = ? AND `share_with` = ?' + ); + + $result = \OC_DB::executeAudited($query, array($itemSource, $itemType, $user)); + + while ($row = $result->fetchRow()) { + $shares[] = $row; + } + + //if didn't found a result than let's look for a group share. + if(empty($shares)) { + $groups = \OC_Group::getUserGroups($user); + + $query = \OC_DB::prepare( + 'SELECT `file_target`, `permissions`, `expiration` + FROM + `*PREFIX*share` + WHERE + `item_source` = ? AND `item_type` = ? AND `share_with` in (?)' + ); + + $result = \OC_DB::executeAudited($query, array($itemSource, $itemType, implode(',', $groups))); + + while ($row = $result->fetchRow()) { + $shares[] = $row; + } + } + + return $shares; + + } + + /** + * Get the item of item type shared with the current user by source + * @param string Item type + * @param string Item source + * @param int Format (optional) Format type must be defined by the backend + * @param mixed Parameters + * @param bool include collections + * @return Return depends on format + */ + public static function getItemSharedWithBySource($itemType, $itemSource, $format = self::FORMAT_NONE, + $parameters = null, $includeCollections = false) { + return self::getItems($itemType, $itemSource, self::$shareTypeUserAndGroups, \OC_User::getUser(), null, $format, + $parameters, 1, $includeCollections, true); + } + + /** + * Get the item of item type shared by a link + * @param string Item type + * @param string Item source + * @param string Owner of link + * @return Item + */ + public static function getItemSharedWithByLink($itemType, $itemSource, $uidOwner) { + return self::getItems($itemType, $itemSource, self::SHARE_TYPE_LINK, null, $uidOwner, self::FORMAT_NONE, + null, 1); + } + + /** + * Based on the given token the share information will be returned - password protected shares will be verified + * @param string $token + * @return array | bool false will be returned in case the token is unknown or unauthorized + */ + public static function getShareByToken($token, $checkPasswordProtection = true) { + $query = \OC_DB::prepare('SELECT * FROM `*PREFIX*share` WHERE `token` = ?', 1); + $result = $query->execute(array($token)); + if (\OC_DB::isError($result)) { + \OC_Log::write('OCP\Share', \OC_DB::getErrorMessage($result) . ', token=' . $token, \OC_Log::ERROR); + } + $row = $result->fetchRow(); + if ($row === false) { + return false; + } + if (is_array($row) and self::expireItem($row)) { + return false; + } + + // password protected shares need to be authenticated + if ($checkPasswordProtection && !\OCP\Share::checkPasswordProtectedShare($row)) { + return false; + } + + return $row; + } + + /** + * resolves reshares down to the last real share + * @param $linkItem + * @return $fileOwner + */ + public static function resolveReShare($linkItem) + { + if (isset($linkItem['parent'])) { + $parent = $linkItem['parent']; + while (isset($parent)) { + $query = \OC_DB::prepare('SELECT * FROM `*PREFIX*share` WHERE `id` = ?', 1); + $item = $query->execute(array($parent))->fetchRow(); + if (isset($item['parent'])) { + $parent = $item['parent']; + } else { + return $item; + } + } + } + return $linkItem; + } + + + /** + * Get the shared items of item type owned by the current user + * @param string Item type + * @param int Format (optional) Format type must be defined by the backend + * @param mixed Parameters + * @param int Number of items to return (optional) Returns all by default + * @param bool include collections + * @return Return depends on format + */ + public static function getItemsShared($itemType, $format = self::FORMAT_NONE, $parameters = null, + $limit = -1, $includeCollections = false) { + return self::getItems($itemType, null, null, null, \OC_User::getUser(), $format, + $parameters, $limit, $includeCollections); + } + + /** + * Get the shared item of item type owned by the current user + * @param string Item type + * @param string Item source + * @param int Format (optional) Format type must be defined by the backend + * @param mixed Parameters + * @param bool include collections + * @return Return depends on format + */ + public static function getItemShared($itemType, $itemSource, $format = self::FORMAT_NONE, + $parameters = null, $includeCollections = false) { + return self::getItems($itemType, $itemSource, null, null, \OC_User::getUser(), $format, + $parameters, -1, $includeCollections); + } + + /** + * Get all users an item is shared with + * @param string Item type + * @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, $checkExpireDate = true) { + + $users = array(); + $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) { + $users[] = $item['share_with']; + } else if ((int)$item['share_type'] === self::SHARE_TYPE_GROUP) { + $users = array_merge($users, \OC_Group::usersInGroup($item['share_with'])); + } + } + } + return $users; + } + + /** + * Share an item with a user, group, or via private link + * @param string $itemType + * @param string $itemSource + * @param int $shareType SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK + * @param string $shareWith User or group the item is being shared with + * @param int $permissions CRUDS + * @param null $itemSourceName + * @throws \Exception + * @internal param \OCP\Item $string type + * @internal param \OCP\Item $string source + * @internal param \OCP\SHARE_TYPE_USER $int , SHARE_TYPE_GROUP, or SHARE_TYPE_LINK + * @internal param \OCP\User $string or group the item is being shared with + * @internal param \OCP\CRUDS $int permissions + * @return bool|string Returns true on success or false on failure, Returns token on success for links + */ + public static function shareItem($itemType, $itemSource, $shareType, $shareWith, $permissions, $itemSourceName = null) { + $uidOwner = \OC_User::getUser(); + $sharingPolicy = \OC_Appconfig::getValue('core', 'shareapi_share_policy', 'global'); + + if (is_null($itemSourceName)) { + $itemSourceName = $itemSource; + } + + // Verify share type and sharing conditions are met + if ($shareType === self::SHARE_TYPE_USER) { + if ($shareWith == $uidOwner) { + $message = 'Sharing '.$itemSourceName.' failed, because the user '.$shareWith.' is the item owner'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + if (!\OC_User::userExists($shareWith)) { + $message = 'Sharing '.$itemSourceName.' failed, because the user '.$shareWith.' does not exist'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + if ($sharingPolicy == 'groups_only') { + $inGroup = array_intersect(\OC_Group::getUserGroups($uidOwner), \OC_Group::getUserGroups($shareWith)); + if (empty($inGroup)) { + $message = 'Sharing '.$itemSourceName.' failed, because the user ' + .$shareWith.' is not a member of any groups that '.$uidOwner.' is a member of'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + } + // Check if the item source is already shared with the user, either from the same owner or a different user + if ($checkExists = self::getItems($itemType, $itemSource, self::$shareTypeUserAndGroups, + $shareWith, null, self::FORMAT_NONE, null, 1, true, true)) { + // Only allow the same share to occur again if it is the same + // owner and is not a user share, this use case is for increasing + // permissions for a specific user + if ($checkExists['uid_owner'] != $uidOwner || $checkExists['share_type'] == $shareType) { + $message = 'Sharing '.$itemSourceName.' failed, because this item is already shared with '.$shareWith; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + } + } else if ($shareType === self::SHARE_TYPE_GROUP) { + if (!\OC_Group::groupExists($shareWith)) { + $message = 'Sharing '.$itemSourceName.' failed, because the group '.$shareWith.' does not exist'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + if ($sharingPolicy == 'groups_only' && !\OC_Group::inGroup($uidOwner, $shareWith)) { + $message = 'Sharing '.$itemSourceName.' failed, because ' + .$uidOwner.' is not a member of the group '.$shareWith; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + // Check if the item source is already shared with the group, either from the same owner or a different user + // The check for each user in the group is done inside the put() function + if ($checkExists = self::getItems($itemType, $itemSource, self::SHARE_TYPE_GROUP, $shareWith, + null, self::FORMAT_NONE, null, 1, true, true)) { + // Only allow the same share to occur again if it is the same + // owner and is not a group share, this use case is for increasing + // permissions for a specific user + if ($checkExists['uid_owner'] != $uidOwner || $checkExists['share_type'] == $shareType) { + $message = 'Sharing '.$itemSourceName.' failed, because this item is already shared with '.$shareWith; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + } + // Convert share with into an array with the keys group and users + $group = $shareWith; + $shareWith = array(); + $shareWith['group'] = $group; + $shareWith['users'] = array_diff(\OC_Group::usersInGroup($group), array($uidOwner)); + } else if ($shareType === self::SHARE_TYPE_LINK) { + if (\OC_Appconfig::getValue('core', 'shareapi_allow_links', 'yes') == 'yes') { + // when updating a link share + if ($checkExists = self::getItems($itemType, $itemSource, self::SHARE_TYPE_LINK, null, + $uidOwner, self::FORMAT_NONE, null, 1)) { + // remember old token + $oldToken = $checkExists['token']; + $oldPermissions = $checkExists['permissions']; + //delete the old share + self::delete($checkExists['id']); + } + + // Generate hash of password - same method as user passwords + if (isset($shareWith)) { + $forcePortable = (CRYPT_BLOWFISH != 1); + $hasher = new \PasswordHash(8, $forcePortable); + $shareWith = $hasher->HashPassword($shareWith.\OC_Config::getValue('passwordsalt', '')); + } else { + // reuse the already set password, but only if we change permissions + // otherwise the user disabled the password protection + if ($checkExists && (int)$permissions !== (int)$oldPermissions) { + $shareWith = $checkExists['share_with']; + } + } + + // Generate token + if (isset($oldToken)) { + $token = $oldToken; + } else { + $token = \OC_Util::generateRandomBytes(self::TOKEN_LENGTH); + } + $result = self::put($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $permissions, + null, $token, $itemSourceName); + if ($result) { + return $token; + } else { + return false; + } + } + $message = 'Sharing '.$itemSourceName.' failed, because sharing with links is not allowed'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + return false; + } else { + // Future share types need to include their own conditions + $message = 'Share type '.$shareType.' is not valid for '.$itemSource; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + // Put the item into the database + return self::put($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $permissions, null, null, $itemSourceName); + } + + /** + * Unshare an item from a user, group, or delete a private link + * @param string Item type + * @param string Item source + * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK + * @param string User or group the item is being shared with + * @return Returns true on success or false on failure + */ + public static function unshare($itemType, $itemSource, $shareType, $shareWith) { + if ($item = self::getItems($itemType, $itemSource, $shareType, $shareWith, \OC_User::getUser(), + self::FORMAT_NONE, null, 1)) { + self::unshareItem($item); + return true; + } + return false; + } + + /** + * Unshare an item from all users, groups, and remove all links + * @param string Item type + * @param string Item source + * @return Returns true on success or false on failure + */ + public static function unshareAll($itemType, $itemSource) { + // Get all of the owners of shares of this item. + $query = \OC_DB::prepare( 'SELECT `uid_owner` from `*PREFIX*share` WHERE `item_type`=? AND `item_source`=?' ); + $result = $query->execute(array($itemType, $itemSource)); + $shares = array(); + // Add each owner's shares to the array of all shares for this item. + while ($row = $result->fetchRow()) { + $shares = array_merge($shares, self::getItems($itemType, $itemSource, null, null, $row['uid_owner'])); + } + if (!empty($shares)) { + // Pass all the vars we have for now, they may be useful + $hookParams = array( + 'itemType' => $itemType, + 'itemSource' => $itemSource, + 'shares' => $shares, + ); + \OC_Hook::emit('OCP\Share', 'pre_unshareAll', $hookParams); + foreach ($shares as $share) { + self::unshareItem($share); + } + \OC_Hook::emit('OCP\Share', 'post_unshareAll', $hookParams); + return true; + } + return false; + } + + /** + * Unshare an item shared with the current user + * @param string Item type + * @param string Item target + * @return Returns true on success or false on failure + * + * Unsharing from self is not allowed for items inside collections + */ + public static function unshareFromSelf($itemType, $itemTarget) { + if ($item = self::getItemSharedWith($itemType, $itemTarget)) { + if ((int)$item['share_type'] === self::SHARE_TYPE_GROUP) { + // Insert an extra row for the group share and set permission + // to 0 to prevent it from showing up for the user + $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share`' + .' (`item_type`, `item_source`, `item_target`, `parent`, `share_type`,' + .' `share_with`, `uid_owner`, `permissions`, `stime`, `file_source`, `file_target`)' + .' VALUES (?,?,?,?,?,?,?,?,?,?,?)'); + $query->execute(array($item['item_type'], $item['item_source'], $item['item_target'], + $item['id'], self::$shareTypeGroupUserUnique, + \OC_User::getUser(), $item['uid_owner'], 0, $item['stime'], $item['file_source'], + $item['file_target'])); + \OC_DB::insertid('*PREFIX*share'); + // Delete all reshares by this user of the group share + self::delete($item['id'], true, \OC_User::getUser()); + } else if ((int)$item['share_type'] === self::$shareTypeGroupUserUnique) { + // Set permission to 0 to prevent it from showing up for the user + $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `permissions` = ? WHERE `id` = ?'); + $query->execute(array(0, $item['id'])); + self::delete($item['id'], true); + } else { + self::delete($item['id']); + } + return true; + } + return false; + } + /** + * sent status if users got informed by mail about share + * @param string $itemType + * @param string $itemSource + * @param int $shareType SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK + * @param bool $status + */ + public static function setSendMailStatus($itemType, $itemSource, $shareType, $status) { + $status = $status ? 1 : 0; + + $query = \OC_DB::prepare( + 'UPDATE `*PREFIX*share` + SET `mail_send` = ? + WHERE `item_type` = ? AND `item_source` = ? AND `share_type` = ?'); + + $result = $query->execute(array($status, $itemType, $itemSource, $shareType)); + + if($result === false) { + \OC_Log::write('OCP\Share', 'Couldn\'t set send mail status', \OC_Log::ERROR); + } + } + + /** + * Set the permissions of an item for a specific user or group + * @param string Item type + * @param string Item source + * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK + * @param string User or group the item is being shared with + * @param int CRUDS permissions + * @return Returns true on success or false on failure + */ + public static function setPermissions($itemType, $itemSource, $shareType, $shareWith, $permissions) { + if ($item = self::getItems($itemType, $itemSource, $shareType, $shareWith, + \OC_User::getUser(), self::FORMAT_NONE, null, 1, false)) { + // Check if this item is a reshare and verify that the permissions + // granted don't exceed the parent shared item + if (isset($item['parent'])) { + $query = \OC_DB::prepare('SELECT `permissions` FROM `*PREFIX*share` WHERE `id` = ?', 1); + $result = $query->execute(array($item['parent']))->fetchRow(); + if (~(int)$result['permissions'] & $permissions) { + $message = 'Setting permissions for '.$itemSource.' failed,' + .' because the permissions exceed permissions granted to '.\OC_User::getUser(); + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + } + $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `permissions` = ? WHERE `id` = ?'); + $query->execute(array($permissions, $item['id'])); + if ($itemType === 'file' || $itemType === 'folder') { + \OC_Hook::emit('OCP\Share', 'post_update_permissions', array( + 'itemType' => $itemType, + 'itemSource' => $itemSource, + 'shareType' => $shareType, + 'shareWith' => $shareWith, + 'uidOwner' => \OC_User::getUser(), + 'permissions' => $permissions, + 'path' => $item['path'], + )); + } + // Check if permissions were removed + if ($item['permissions'] & ~$permissions) { + // If share permission is removed all reshares must be deleted + if (($item['permissions'] & \OCP\PERMISSION_SHARE) && (~$permissions & \OCP\PERMISSION_SHARE)) { + self::delete($item['id'], true); + } else { + $ids = array(); + $parents = array($item['id']); + while (!empty($parents)) { + $parents = "'".implode("','", $parents)."'"; + $query = \OC_DB::prepare('SELECT `id`, `permissions` FROM `*PREFIX*share`' + .' WHERE `parent` IN ('.$parents.')'); + $result = $query->execute(); + // Reset parents array, only go through loop again if + // items are found that need permissions removed + $parents = array(); + while ($item = $result->fetchRow()) { + // Check if permissions need to be removed + if ($item['permissions'] & ~$permissions) { + // Add to list of items that need permissions removed + $ids[] = $item['id']; + $parents[] = $item['id']; + } + } + } + // Remove the permissions for all reshares of this item + if (!empty($ids)) { + $ids = "'".implode("','", $ids)."'"; + // TODO this should be done with Doctrine platform objects + if (\OC_Config::getValue( "dbtype") === 'oci') { + $andOp = 'BITAND(`permissions`, ?)'; + } else { + $andOp = '`permissions` & ?'; + } + $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `permissions` = '.$andOp + .' WHERE `id` IN ('.$ids.')'); + $query->execute(array($permissions)); + } + } + } + return true; + } + $message = 'Setting permissions for '.$itemSource.' failed, because the item was not found'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + + /** + * Set expiration date for a share + * @param string $itemType + * @param string $itemSource + * @param string $date expiration date + * @return \OCP\Share_Backend + */ + public static function setExpirationDate($itemType, $itemSource, $date) { + if ($items = self::getItems($itemType, $itemSource, null, null, \OC_User::getUser(), + self::FORMAT_NONE, null, -1, false)) { + if (!empty($items)) { + if ($date == '') { + $date = null; + } else { + $date = new \DateTime($date); + } + $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `expiration` = ? WHERE `id` = ?'); + $query->bindValue(1, $date, 'datetime'); + foreach ($items as $item) { + $query->bindValue(2, (int) $item['id']); + $query->execute(); + } + return true; + } + } + return false; + } + + /** + * Checks whether a share has expired, calls unshareItem() if yes. + * @param array $item Share data (usually database row) + * @return bool True if item was expired, false otherwise. + */ + protected static function expireItem(array $item) { + if (!empty($item['expiration'])) { + $now = new \DateTime(); + $expires = new \DateTime($item['expiration']); + if ($now > $expires) { + self::unshareItem($item); + return true; + } + } + return false; + } + + /** + * Unshares a share given a share data array + * @param array $item Share data (usually database row) + * @return null + */ + 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'], + 'uidOwner' => $item['uid_owner'], + ); + + \OC_Hook::emit('OCP\Share', 'pre_unshare', $hookParams + array( + 'fileSource' => $item['file_source'], + )); + self::delete($item['id']); + \OC_Hook::emit('OCP\Share', 'post_unshare', $hookParams); + } + + /** + * Get the backend class for the specified item type + * @param string $itemType + * @return \OCP\Share_Backend + */ + public static function getBackend($itemType) { + if (isset(self::$backends[$itemType])) { + return self::$backends[$itemType]; + } else if (isset(self::$backendTypes[$itemType]['class'])) { + $class = self::$backendTypes[$itemType]['class']; + if (class_exists($class)) { + self::$backends[$itemType] = new $class; + if (!(self::$backends[$itemType] instanceof \OCP\Share_Backend)) { + $message = 'Sharing backend '.$class.' must implement the interface OCP\Share_Backend'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + return self::$backends[$itemType]; + } else { + $message = 'Sharing backend '.$class.' not found'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + } + $message = 'Sharing backend for '.$itemType.' not found'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + + /** + * Check if resharing is allowed + * @return Returns true if allowed or false + * + * Resharing is allowed by default if not configured + */ + private static function isResharingAllowed() { + if (!isset(self::$isResharingAllowed)) { + if (\OC_Appconfig::getValue('core', 'shareapi_allow_resharing', 'yes') == 'yes') { + self::$isResharingAllowed = true; + } else { + self::$isResharingAllowed = false; + } + } + return self::$isResharingAllowed; + } + + /** + * Get a list of collection item types for the specified item type + * @param string Item type + * @return array + */ + private static function getCollectionItemTypes($itemType) { + $collectionTypes = array($itemType); + foreach (self::$backendTypes as $type => $backend) { + if (in_array($backend['collectionOf'], $collectionTypes)) { + $collectionTypes[] = $type; + } + } + // TODO Add option for collections to be collection of themselves, only 'folder' does it now... + if (!self::getBackend($itemType) instanceof \OCP\Share_Backend_Collection || $itemType != 'folder') { + unset($collectionTypes[0]); + } + // Return array if collections were found or the item type is a + // collection itself - collections can be inside collections + if (count($collectionTypes) > 0) { + return $collectionTypes; + } + return false; + } + + /** + * Get shared items from the database + * @param string Item type + * @param string Item source or target (optional) + * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, SHARE_TYPE_LINK, $shareTypeUserAndGroups, or $shareTypeGroupUserUnique + * @param string User or group the item is being shared with + * @param string User that is the owner of shared items (optional) + * @param int Format to convert items to with formatItems() + * @param mixed Parameters to pass to formatItems() + * @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 + * + */ + 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, $checkExpireDate = true) { + if (!self::isEnabled()) { + if ($limit == 1 || (isset($uidOwner) && isset($item))) { + return false; + } else { + return array(); + } + } + $backend = self::getBackend($itemType); + $collectionTypes = false; + // Get filesystem root to add it to the file target and remove from the + // file source, match file_source with the file cache + if ($itemType == 'file' || $itemType == 'folder') { + if(!is_null($uidOwner)) { + $root = \OC\Files\Filesystem::getRoot(); + } else { + $root = ''; + } + $where = 'INNER JOIN `*PREFIX*filecache` ON `file_source` = `*PREFIX*filecache`.`fileid`'; + if (!isset($item)) { + $where .= ' WHERE `file_target` IS NOT NULL'; + } + $fileDependent = true; + $queryArgs = array(); + } else { + $fileDependent = false; + $root = ''; + if ($includeCollections && !isset($item) && ($collectionTypes = self::getCollectionItemTypes($itemType))) { + // If includeCollections is true, find collections of this item type, e.g. a music album contains songs + if (!in_array($itemType, $collectionTypes)) { + $itemTypes = array_merge(array($itemType), $collectionTypes); + } else { + $itemTypes = $collectionTypes; + } + $placeholders = join(',', array_fill(0, count($itemTypes), '?')); + $where = ' WHERE `item_type` IN ('.$placeholders.'))'; + $queryArgs = $itemTypes; + } else { + $where = ' WHERE `item_type` = ?'; + $queryArgs = array($itemType); + } + } + if (\OC_Appconfig::getValue('core', 'shareapi_allow_links', 'yes') !== 'yes') { + $where .= ' AND `share_type` != ?'; + $queryArgs[] = self::SHARE_TYPE_LINK; + } + if (isset($shareType)) { + // Include all user and group items + if ($shareType == self::$shareTypeUserAndGroups && isset($shareWith)) { + $where .= ' AND `share_type` IN (?,?,?)'; + $queryArgs[] = self::SHARE_TYPE_USER; + $queryArgs[] = self::SHARE_TYPE_GROUP; + $queryArgs[] = self::$shareTypeGroupUserUnique; + $userAndGroups = array_merge(array($shareWith), \OC_Group::getUserGroups($shareWith)); + $placeholders = join(',', array_fill(0, count($userAndGroups), '?')); + $where .= ' AND `share_with` IN ('.$placeholders.')'; + $queryArgs = array_merge($queryArgs, $userAndGroups); + // Don't include own group shares + $where .= ' AND `uid_owner` != ?'; + $queryArgs[] = $shareWith; + } else { + $where .= ' AND `share_type` = ?'; + $queryArgs[] = $shareType; + if (isset($shareWith)) { + $where .= ' AND `share_with` = ?'; + $queryArgs[] = $shareWith; + } + } + } + if (isset($uidOwner)) { + $where .= ' AND `uid_owner` = ?'; + $queryArgs[] = $uidOwner; + if (!isset($shareType)) { + // Prevent unique user targets for group shares from being selected + $where .= ' AND `share_type` != ?'; + $queryArgs[] = self::$shareTypeGroupUserUnique; + } + if ($itemType == 'file' || $itemType == 'folder') { + $column = 'file_source'; + } else { + $column = 'item_source'; + } + } else { + if ($itemType == 'file' || $itemType == 'folder') { + $column = 'file_target'; + } else { + $column = 'item_target'; + } + } + if (isset($item)) { + if ($includeCollections && $collectionTypes = self::getCollectionItemTypes($itemType)) { + $where .= ' AND ('; + } else { + $where .= ' AND'; + } + // If looking for own shared items, check item_source else check item_target + if (isset($uidOwner) || $itemShareWithBySource) { + // If item type is a file, file source needs to be checked in case the item was converted + if ($itemType == 'file' || $itemType == 'folder') { + $where .= ' `file_source` = ?'; + $column = 'file_source'; + } else { + $where .= ' `item_source` = ?'; + $column = 'item_source'; + } + } else { + if ($itemType == 'file' || $itemType == 'folder') { + $where .= ' `file_target` = ?'; + $item = \OC\Files\Filesystem::normalizePath($item); + } else { + $where .= ' `item_target` = ?'; + } + } + $queryArgs[] = $item; + if ($includeCollections && $collectionTypes) { + $placeholders = join(',', array_fill(0, count($collectionTypes), '?')); + $where .= ' OR `item_type` IN ('.$placeholders.'))'; + $queryArgs = array_merge($queryArgs, $collectionTypes); + } + } + if ($limit != -1 && !$includeCollections) { + if ($shareType == self::$shareTypeUserAndGroups) { + // Make sure the unique user target is returned if it exists, + // unique targets should follow the group share in the database + // If the limit is not 1, the filtering can be done later + $where .= ' ORDER BY `*PREFIX*share`.`id` DESC'; + } + // The limit must be at least 3, because filtering needs to be done + if ($limit < 3) { + $queryLimit = 3; + } else { + $queryLimit = $limit; + } + } else { + $queryLimit = null; + } + // TODO Optimize selects + 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`, `share_with`, `mail_send`, `uid_owner`'; + } else { + $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`, `uid_owner`'; + } else { + $select = '`id`, `item_type`, `item_source`, `parent`, `share_type`, `share_with`, `permissions`,' + .' `stime`, `file_source`, `expiration`, `token`, `mail_send`, `uid_owner`'; + } + } else { + if ($fileDependent) { + if (($itemType == 'file' || $itemType == 'folder') + && $format == \OC_Share_Backend_File::FORMAT_GET_FOLDER_CONTENTS + || $format == \OC_Share_Backend_File::FORMAT_FILE_APP_ROOT + ) { + $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `*PREFIX*share`.`parent`, `uid_owner`, ' + .'`share_type`, `share_with`, `file_source`, `path`, `file_target`, ' + .'`permissions`, `expiration`, `storage`, `*PREFIX*filecache`.`parent` as `file_parent`, ' + .'`name`, `mtime`, `mimetype`, `mimepart`, `size`, `unencrypted_size`, `encrypted`, `etag`, `mail_send`'; + } else { + $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `item_target`, + `*PREFIX*share`.`parent`, `share_type`, `share_with`, `uid_owner`, + `file_source`, `path`, `file_target`, `permissions`, `stime`, `expiration`, `token`, `storage`, `mail_send`'; + } + } else { + $select = '*'; + } + } + } + $root = strlen($root); + $query = \OC_DB::prepare('SELECT '.$select.' FROM `*PREFIX*share` '.$where, $queryLimit); + $result = $query->execute($queryArgs); + if (\OC_DB::isError($result)) { + \OC_Log::write('OCP\Share', + \OC_DB::getErrorMessage($result) . ', select=' . $select . ' where=' . $where, + \OC_Log::ERROR); + } + $items = array(); + $targets = array(); + $switchedItems = array(); + $mounts = array(); + while ($row = $result->fetchRow()) { + if (isset($row['id'])) { + $row['id']=(int)$row['id']; + } + if (isset($row['share_type'])) { + $row['share_type']=(int)$row['share_type']; + } + if (isset($row['parent'])) { + $row['parent']=(int)$row['parent']; + } + if (isset($row['file_parent'])) { + $row['file_parent']=(int)$row['file_parent']; + } + if (isset($row['file_source'])) { + $row['file_source']=(int)$row['file_source']; + } + if (isset($row['permissions'])) { + $row['permissions']=(int)$row['permissions']; + } + if (isset($row['storage'])) { + $row['storage']=(int)$row['storage']; + } + if (isset($row['stime'])) { + $row['stime']=(int)$row['stime']; + } + // Filter out duplicate group shares for users with unique targets + if ($row['share_type'] == self::$shareTypeGroupUserUnique && isset($items[$row['parent']])) { + $row['share_type'] = self::SHARE_TYPE_GROUP; + $row['share_with'] = $items[$row['parent']]['share_with']; + // Remove the parent group share + unset($items[$row['parent']]); + if ($row['permissions'] == 0) { + continue; + } + } else if (!isset($uidOwner)) { + // Check if the same target already exists + if (isset($targets[$row[$column]])) { + // Check if the same owner shared with the user twice + // through a group and user share - this is allowed + $id = $targets[$row[$column]]; + if (isset($items[$id]) && $items[$id]['uid_owner'] == $row['uid_owner']) { + // Switch to group share type to ensure resharing conditions aren't bypassed + if ($items[$id]['share_type'] != self::SHARE_TYPE_GROUP) { + $items[$id]['share_type'] = self::SHARE_TYPE_GROUP; + $items[$id]['share_with'] = $row['share_with']; + } + // Switch ids if sharing permission is granted on only + // one share to ensure correct parent is used if resharing + if (~(int)$items[$id]['permissions'] & \OCP\PERMISSION_SHARE + && (int)$row['permissions'] & \OCP\PERMISSION_SHARE) { + $items[$row['id']] = $items[$id]; + $switchedItems[$id] = $row['id']; + unset($items[$id]); + $id = $row['id']; + } + // Combine the permissions for the item + $items[$id]['permissions'] |= (int)$row['permissions']; + continue; + } + } else { + $targets[$row[$column]] = $row['id']; + } + } + // Remove root from file source paths if retrieving own shared items + if (isset($uidOwner) && isset($row['path'])) { + if (isset($row['parent'])) { + $query = \OC_DB::prepare('SELECT `file_target` FROM `*PREFIX*share` WHERE `id` = ?'); + $parentResult = $query->execute(array($row['parent'])); + if (\OC_DB::isError($result)) { + \OC_Log::write('OCP\Share', 'Can\'t select parent: ' . + \OC_DB::getErrorMessage($result) . ', select=' . $select . ' where=' . $where, + \OC_Log::ERROR); + } else { + $parentRow = $parentResult->fetchRow(); + $splitPath = explode('/', $row['path']); + $tmpPath = '/Shared' . $parentRow['file_target']; + foreach (array_slice($splitPath, 2) as $pathPart) { + $tmpPath = $tmpPath . '/' . $pathPart; + } + $row['path'] = $tmpPath; + } + } else { + if (!isset($mounts[$row['storage']])) { + $mountPoints = \OC\Files\Filesystem::getMountByNumericId($row['storage']); + if (is_array($mountPoints)) { + $mounts[$row['storage']] = current($mountPoints); + } + } + if ($mounts[$row['storage']]) { + $path = $mounts[$row['storage']]->getMountPoint().$row['path']; + $row['path'] = substr($path, $root); + } + } + } + if($checkExpireDate) { + if (self::expireItem($row)) { + continue; + } + } + // Check if resharing is allowed, if not remove share permission + if (isset($row['permissions']) && !self::isResharingAllowed()) { + $row['permissions'] &= ~\OCP\PERMISSION_SHARE; + } + // Add display names to result + if ( isset($row['share_with']) && $row['share_with'] != '') { + $row['share_with_displayname'] = \OCP\User::getDisplayName($row['share_with']); + } + if ( isset($row['uid_owner']) && $row['uid_owner'] != '') { + $row['displayname_owner'] = \OCP\User::getDisplayName($row['uid_owner']); + } + + $items[$row['id']] = $row; + } + if (!empty($items)) { + $collectionItems = array(); + foreach ($items as &$row) { + // Return only the item instead of a 2-dimensional array + if ($limit == 1 && $row[$column] == $item && ($row['item_type'] == $itemType || $itemType == 'file')) { + if ($format == self::FORMAT_NONE) { + return $row; + } else { + break; + } + } + // Check if this is a collection of the requested item type + if ($includeCollections && $collectionTypes && in_array($row['item_type'], $collectionTypes)) { + if (($collectionBackend = self::getBackend($row['item_type'])) + && $collectionBackend instanceof \OCP\Share_Backend_Collection) { + // Collections can be inside collections, check if the item is a collection + if (isset($item) && $row['item_type'] == $itemType && $row[$column] == $item) { + $collectionItems[] = $row; + } else { + $collection = array(); + $collection['item_type'] = $row['item_type']; + if ($row['item_type'] == 'file' || $row['item_type'] == 'folder') { + $collection['path'] = basename($row['path']); + } + $row['collection'] = $collection; + // Fetch all of the children sources + $children = $collectionBackend->getChildren($row[$column]); + foreach ($children as $child) { + $childItem = $row; + $childItem['item_type'] = $itemType; + if ($row['item_type'] != 'file' && $row['item_type'] != 'folder') { + $childItem['item_source'] = $child['source']; + $childItem['item_target'] = $child['target']; + } + if ($backend instanceof \OCP\Share_Backend_File_Dependent) { + if ($row['item_type'] == 'file' || $row['item_type'] == 'folder') { + $childItem['file_source'] = $child['source']; + } else { + $meta = \OC\Files\Filesystem::getFileInfo($child['file_path']); + $childItem['file_source'] = $meta['fileid']; + } + $childItem['file_target'] = + \OC\Files\Filesystem::normalizePath($child['file_path']); + } + if (isset($item)) { + if ($childItem[$column] == $item) { + // Return only the item instead of a 2-dimensional array + if ($limit == 1) { + if ($format == self::FORMAT_NONE) { + return $childItem; + } else { + // Unset the items array and break out of both loops + $items = array(); + $items[] = $childItem; + break 2; + } + } else { + $collectionItems[] = $childItem; + } + } + } else { + $collectionItems[] = $childItem; + } + } + } + } + // Remove collection item + $toRemove = $row['id']; + if (array_key_exists($toRemove, $switchedItems)) { + $toRemove = $switchedItems[$toRemove]; + } + unset($items[$toRemove]); + } + } + if (!empty($collectionItems)) { + $items = array_merge($items, $collectionItems); + } + if (empty($items) && $limit == 1) { + return false; + } + if ($format == self::FORMAT_NONE) { + return $items; + } else if ($format == self::FORMAT_STATUSES) { + $statuses = array(); + foreach ($items as $item) { + if ($item['share_type'] == self::SHARE_TYPE_LINK) { + $statuses[$item[$column]]['link'] = true; + } else if (!isset($statuses[$item[$column]])) { + $statuses[$item[$column]]['link'] = false; + } + if ($itemType == 'file' || $itemType == 'folder') { + $statuses[$item[$column]]['path'] = $item['path']; + } + } + return $statuses; + } else { + return $backend->formatItems($items, $format, $parameters); + } + } else if ($limit == 1 || (isset($uidOwner) && isset($item))) { + return false; + } + return array(); + } + + /** + * Put shared item into the database + * @param string Item type + * @param string Item source + * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK + * @param string User or group the item is being shared with + * @param string User that is the owner of shared item + * @param int CRUDS permissions + * @param bool|array Parent folder target (optional) + * @param string token (optional) + * @param string name of the source item (optional) + * @return bool Returns true on success or false on failure + */ + private static function put($itemType, $itemSource, $shareType, $shareWith, $uidOwner, + $permissions, $parentFolder = null, $token = null, $itemSourceName = null) { + $backend = self::getBackend($itemType); + + // Check if this is a reshare + if ($checkReshare = self::getItemSharedWithBySource($itemType, $itemSource, self::FORMAT_NONE, null, true)) { + + // Check if attempting to share back to owner + if ($checkReshare['uid_owner'] == $shareWith && $shareType == self::SHARE_TYPE_USER) { + $message = 'Sharing '.$itemSourceName.' failed, because the user '.$shareWith.' is the original sharer'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + // Check if share permissions is granted + if (self::isResharingAllowed() && (int)$checkReshare['permissions'] & \OCP\PERMISSION_SHARE) { + if (~(int)$checkReshare['permissions'] & $permissions) { + $message = 'Sharing '.$itemSourceName + .' failed, because the permissions exceed permissions granted to '.$uidOwner; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } else { + // TODO Don't check if inside folder + $parent = $checkReshare['id']; + $itemSource = $checkReshare['item_source']; + $fileSource = $checkReshare['file_source']; + $suggestedItemTarget = $checkReshare['item_target']; + $suggestedFileTarget = $checkReshare['file_target']; + $filePath = $checkReshare['file_target']; + } + } else { + $message = 'Sharing '.$itemSourceName.' failed, because resharing is not allowed'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + } else { + $parent = null; + $suggestedItemTarget = null; + $suggestedFileTarget = null; + if (!$backend->isValidSource($itemSource, $uidOwner)) { + $message = 'Sharing '.$itemSource.' failed, because the sharing backend for ' + .$itemType.' could not find its source'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + $parent = null; + if ($backend instanceof \OCP\Share_Backend_File_Dependent) { + $filePath = $backend->getFilePath($itemSource, $uidOwner); + if ($itemType == 'file' || $itemType == 'folder') { + $fileSource = $itemSource; + } else { + $meta = \OC\Files\Filesystem::getFileInfo($filePath); + $fileSource = $meta['fileid']; + } + if ($fileSource == -1) { + $message = 'Sharing '.$itemSource.' failed, because the file could not be found in the file cache'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + } else { + $filePath = null; + $fileSource = null; + } + } + $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`item_type`, `item_source`, `item_target`,' + .' `parent`, `share_type`, `share_with`, `uid_owner`, `permissions`, `stime`, `file_source`,' + .' `file_target`, `token`) VALUES (?,?,?,?,?,?,?,?,?,?,?,?)'); + // Share with a group + if ($shareType == self::SHARE_TYPE_GROUP) { + $groupItemTarget = self::generateTarget($itemType, $itemSource, $shareType, $shareWith['group'], + $uidOwner, $suggestedItemTarget); + $run = true; + $error = ''; + \OC_Hook::emit('OCP\Share', 'pre_shared', array( + 'itemType' => $itemType, + 'itemSource' => $itemSource, + 'itemTarget' => $groupItemTarget, + 'shareType' => $shareType, + 'shareWith' => $shareWith['group'], + 'uidOwner' => $uidOwner, + 'permissions' => $permissions, + 'fileSource' => $fileSource, + 'token' => $token, + 'run' => &$run, + 'error' => &$error + )); + + if ($run === false) { + throw new \Exception($error); + } + + if (isset($fileSource)) { + if ($parentFolder) { + if ($parentFolder === true) { + $groupFileTarget = self::generateTarget('file', $filePath, $shareType, + $shareWith['group'], $uidOwner, $suggestedFileTarget); + // Set group default file target for future use + $parentFolders[0]['folder'] = $groupFileTarget; + } else { + // Get group default file target + $groupFileTarget = $parentFolder[0]['folder'].$itemSource; + $parent = $parentFolder[0]['id']; + } + } else { + $groupFileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith['group'], + $uidOwner, $suggestedFileTarget); + } + } else { + $groupFileTarget = null; + } + $query->execute(array($itemType, $itemSource, $groupItemTarget, $parent, $shareType, + $shareWith['group'], $uidOwner, $permissions, time(), $fileSource, $groupFileTarget, $token)); + // Save this id, any extra rows for this group share will need to reference it + $parent = \OC_DB::insertid('*PREFIX*share'); + // Loop through all users of this group in case we need to add an extra row + foreach ($shareWith['users'] as $uid) { + $itemTarget = self::generateTarget($itemType, $itemSource, self::SHARE_TYPE_USER, $uid, + $uidOwner, $suggestedItemTarget, $parent); + if (isset($fileSource)) { + if ($parentFolder) { + if ($parentFolder === true) { + $fileTarget = self::generateTarget('file', $filePath, self::SHARE_TYPE_USER, $uid, + $uidOwner, $suggestedFileTarget, $parent); + if ($fileTarget != $groupFileTarget) { + $parentFolders[$uid]['folder'] = $fileTarget; + } + } else if (isset($parentFolder[$uid])) { + $fileTarget = $parentFolder[$uid]['folder'].$itemSource; + $parent = $parentFolder[$uid]['id']; + } + } else { + $fileTarget = self::generateTarget('file', $filePath, self::SHARE_TYPE_USER, + $uid, $uidOwner, $suggestedFileTarget, $parent); + } + } else { + $fileTarget = null; + } + // Insert an extra row for the group share if the item or file target is unique for this user + if ($itemTarget != $groupItemTarget || (isset($fileSource) && $fileTarget != $groupFileTarget)) { + $query->execute(array($itemType, $itemSource, $itemTarget, $parent, + self::$shareTypeGroupUserUnique, $uid, $uidOwner, $permissions, time(), + $fileSource, $fileTarget, $token)); + $id = \OC_DB::insertid('*PREFIX*share'); + } + } + \OC_Hook::emit('OCP\Share', 'post_shared', array( + 'itemType' => $itemType, + 'itemSource' => $itemSource, + 'itemTarget' => $groupItemTarget, + 'parent' => $parent, + 'shareType' => $shareType, + 'shareWith' => $shareWith['group'], + 'uidOwner' => $uidOwner, + 'permissions' => $permissions, + 'fileSource' => $fileSource, + 'fileTarget' => $groupFileTarget, + 'id' => $parent, + 'token' => $token + )); + + if ($parentFolder === true) { + // Return parent folders to preserve file target paths for potential children + return $parentFolders; + } + } else { + $itemTarget = self::generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner, + $suggestedItemTarget); + $run = true; + $error = ''; + \OC_Hook::emit('OCP\Share', 'pre_shared', array( + 'itemType' => $itemType, + 'itemSource' => $itemSource, + 'itemTarget' => $itemTarget, + 'shareType' => $shareType, + 'shareWith' => $shareWith, + 'uidOwner' => $uidOwner, + 'permissions' => $permissions, + 'fileSource' => $fileSource, + 'token' => $token, + 'run' => &$run, + 'error' => &$error + )); + + if ($run === false) { + throw new \Exception($error); + } + + if (isset($fileSource)) { + if ($parentFolder) { + if ($parentFolder === true) { + $fileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith, + $uidOwner, $suggestedFileTarget); + $parentFolders['folder'] = $fileTarget; + } else { + $fileTarget = $parentFolder['folder'].$itemSource; + $parent = $parentFolder['id']; + } + } else { + $fileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith, $uidOwner, + $suggestedFileTarget); + } + } else { + $fileTarget = null; + } + $query->execute(array($itemType, $itemSource, $itemTarget, $parent, $shareType, $shareWith, $uidOwner, + $permissions, time(), $fileSource, $fileTarget, $token)); + $id = \OC_DB::insertid('*PREFIX*share'); + \OC_Hook::emit('OCP\Share', 'post_shared', array( + 'itemType' => $itemType, + 'itemSource' => $itemSource, + 'itemTarget' => $itemTarget, + 'parent' => $parent, + 'shareType' => $shareType, + 'shareWith' => $shareWith, + 'uidOwner' => $uidOwner, + 'permissions' => $permissions, + 'fileSource' => $fileSource, + 'fileTarget' => $fileTarget, + 'id' => $id, + 'token' => $token + )); + if ($parentFolder === true) { + $parentFolders['id'] = $id; + // Return parent folder to preserve file target paths for potential children + return $parentFolders; + } + } + return true; + } + + /** + * Generate a unique target for the item + * @param string Item type + * @param string Item source + * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK + * @param string User or group the item is being shared with + * @param string User that is the owner of shared item + * @param string The suggested target originating from a reshare (optional) + * @param int The id of the parent group share (optional) + * @return string Item target + */ + private static function generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner, + $suggestedTarget = null, $groupParent = null) { + $backend = self::getBackend($itemType); + if ($shareType == self::SHARE_TYPE_LINK) { + if (isset($suggestedTarget)) { + return $suggestedTarget; + } + return $backend->generateTarget($itemSource, false); + } else { + if ($itemType == 'file' || $itemType == 'folder') { + $column = 'file_target'; + $columnSource = 'file_source'; + } else { + $column = 'item_target'; + $columnSource = 'item_source'; + } + if ($shareType == self::SHARE_TYPE_USER) { + // Share with is a user, so set share type to user and groups + $shareType = self::$shareTypeUserAndGroups; + $userAndGroups = array_merge(array($shareWith), \OC_Group::getUserGroups($shareWith)); + } else { + $userAndGroups = false; + } + $exclude = null; + // Backend has 3 opportunities to generate a unique target + for ($i = 0; $i < 2; $i++) { + // Check if suggested target exists first + if ($i == 0 && isset($suggestedTarget)) { + $target = $suggestedTarget; + } else { + if ($shareType == self::SHARE_TYPE_GROUP) { + $target = $backend->generateTarget($itemSource, false, $exclude); + } else { + $target = $backend->generateTarget($itemSource, $shareWith, $exclude); + } + if (is_array($exclude) && in_array($target, $exclude)) { + break; + } + } + // Check if target already exists + $checkTarget = self::getItems($itemType, $target, $shareType, $shareWith); + if (!empty($checkTarget)) { + foreach ($checkTarget as $item) { + // Skip item if it is the group parent row + if (isset($groupParent) && $item['id'] == $groupParent) { + if (count($checkTarget) == 1) { + return $target; + } else { + continue; + } + } + if ($item['uid_owner'] == $uidOwner) { + if ($itemType == 'file' || $itemType == 'folder') { + $meta = \OC\Files\Filesystem::getFileInfo($itemSource); + if ($item['file_source'] == $meta['fileid']) { + return $target; + } + } else if ($item['item_source'] == $itemSource) { + return $target; + } + } + } + if (!isset($exclude)) { + $exclude = array(); + } + // Find similar targets to improve backend's chances to generate a unqiue target + if ($userAndGroups) { + if ($column == 'file_target') { + $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share`' + .' WHERE `item_type` IN (\'file\', \'folder\')' + .' AND `share_type` IN (?,?,?)' + .' AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\')'); + $result = $checkTargets->execute(array(self::SHARE_TYPE_USER, self::SHARE_TYPE_GROUP, + self::$shareTypeGroupUserUnique)); + } else { + $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share`' + .' WHERE `item_type` = ? AND `share_type` IN (?,?,?)' + .' AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\')'); + $result = $checkTargets->execute(array($itemType, self::SHARE_TYPE_USER, + self::SHARE_TYPE_GROUP, self::$shareTypeGroupUserUnique)); + } + } else { + if ($column == 'file_target') { + $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share`' + .' WHERE `item_type` IN (\'file\', \'folder\')' + .' AND `share_type` = ? AND `share_with` = ?'); + $result = $checkTargets->execute(array(self::SHARE_TYPE_GROUP, $shareWith)); + } else { + $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share`' + .' WHERE `item_type` = ? AND `share_type` = ? AND `share_with` = ?'); + $result = $checkTargets->execute(array($itemType, self::SHARE_TYPE_GROUP, $shareWith)); + } + } + while ($row = $result->fetchRow()) { + $exclude[] = $row[$column]; + } + } else { + return $target; + } + } + } + $message = 'Sharing backend registered for '.$itemType.' did not generate a unique target for '.$itemSource; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + + /** + * Delete all reshares of an item + * @param int Id of item to delete + * @param bool If true, exclude the parent from the delete (optional) + * @param string The user that the parent was shared with (optinal) + */ + private static function delete($parent, $excludeParent = false, $uidOwner = null) { + $ids = array($parent); + $parents = array($parent); + while (!empty($parents)) { + $parents = "'".implode("','", $parents)."'"; + // Check the owner on the first search of reshares, useful for + // finding and deleting the reshares by a single user of a group share + if (count($ids) == 1 && isset($uidOwner)) { + $query = \OC_DB::prepare('SELECT `id`, `uid_owner`, `item_type`, `item_target`, `parent`' + .' FROM `*PREFIX*share` WHERE `parent` IN ('.$parents.') AND `uid_owner` = ?'); + $result = $query->execute(array($uidOwner)); + } else { + $query = \OC_DB::prepare('SELECT `id`, `item_type`, `item_target`, `parent`, `uid_owner`' + .' FROM `*PREFIX*share` WHERE `parent` IN ('.$parents.')'); + $result = $query->execute(); + } + // Reset parents array, only go through loop again if items are found + $parents = array(); + while ($item = $result->fetchRow()) { + // Search for a duplicate parent share, this occurs when an + // item is shared to the same user through a group and user or the + // same item is shared by different users + $userAndGroups = array_merge(array($item['uid_owner']), \OC_Group::getUserGroups($item['uid_owner'])); + $query = \OC_DB::prepare('SELECT `id`, `permissions` FROM `*PREFIX*share`' + .' WHERE `item_type` = ?' + .' AND `item_target` = ?' + .' AND `share_type` IN (?,?,?)' + .' AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\')' + .' AND `uid_owner` != ? AND `id` != ?'); + $duplicateParent = $query->execute(array($item['item_type'], $item['item_target'], + self::SHARE_TYPE_USER, self::SHARE_TYPE_GROUP, self::$shareTypeGroupUserUnique, + $item['uid_owner'], $item['parent']))->fetchRow(); + if ($duplicateParent) { + // Change the parent to the other item id if share permission is granted + if ($duplicateParent['permissions'] & \OCP\PERMISSION_SHARE) { + $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `parent` = ? WHERE `id` = ?'); + $query->execute(array($duplicateParent['id'], $item['id'])); + continue; + } + } + $ids[] = $item['id']; + $parents[] = $item['id']; + } + } + if ($excludeParent) { + unset($ids[0]); + } + if (!empty($ids)) { + $ids = "'".implode("','", $ids)."'"; + $query = \OC_DB::prepare('DELETE FROM `*PREFIX*share` WHERE `id` IN ('.$ids.')'); + $query->execute(); + } + } + + /** + * Delete all shares with type SHARE_TYPE_LINK + */ + public static function removeAllLinkShares() { + // Delete any link shares + $query = \OC_DB::prepare('SELECT `id` FROM `*PREFIX*share` WHERE `share_type` = ?'); + $result = $query->execute(array(self::SHARE_TYPE_LINK)); + while ($item = $result->fetchRow()) { + self::delete($item['id']); + } + } + + /** + * Hook Listeners + */ + + /** + * Function that is called after a user is deleted. Cleans up the shares of that user. + * @param array arguments + */ + public static function post_deleteUser($arguments) { + // Delete any items shared with the deleted user + $query = \OC_DB::prepare('DELETE FROM `*PREFIX*share`' + .' WHERE `share_with` = ? AND `share_type` = ? OR `share_type` = ?'); + $result = $query->execute(array($arguments['uid'], self::SHARE_TYPE_USER, self::$shareTypeGroupUserUnique)); + // Delete any items the deleted user shared + $query = \OC_DB::prepare('SELECT `id` FROM `*PREFIX*share` WHERE `uid_owner` = ?'); + $result = $query->execute(array($arguments['uid'])); + while ($item = $result->fetchRow()) { + self::delete($item['id']); + } + } + + /** + * Function that is called after a user is added to a group. + * TODO what does it do? + * @param array arguments + */ + public static function post_addToGroup($arguments) { + // Find the group shares and check if the user needs a unique target + $query = \OC_DB::prepare('SELECT * FROM `*PREFIX*share` WHERE `share_type` = ? AND `share_with` = ?'); + $result = $query->execute(array(self::SHARE_TYPE_GROUP, $arguments['gid'])); + $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`item_type`, `item_source`,' + .' `item_target`, `parent`, `share_type`, `share_with`, `uid_owner`, `permissions`,' + .' `stime`, `file_source`, `file_target`) VALUES (?,?,?,?,?,?,?,?,?,?,?)'); + while ($item = $result->fetchRow()) { + if ($item['item_type'] == 'file' || $item['item_type'] == 'file') { + $itemTarget = null; + } else { + $itemTarget = self::generateTarget($item['item_type'], $item['item_source'], self::SHARE_TYPE_USER, + $arguments['uid'], $item['uid_owner'], $item['item_target'], $item['id']); + } + if (isset($item['file_source'])) { + $fileTarget = self::generateTarget($item['item_type'], $item['item_source'], self::SHARE_TYPE_USER, + $arguments['uid'], $item['uid_owner'], $item['file_target'], $item['id']); + } else { + $fileTarget = null; + } + // Insert an extra row for the group share if the item or file target is unique for this user + if ($itemTarget != $item['item_target'] || $fileTarget != $item['file_target']) { + $query->execute(array($item['item_type'], $item['item_source'], $itemTarget, $item['id'], + self::$shareTypeGroupUserUnique, $arguments['uid'], $item['uid_owner'], $item['permissions'], + $item['stime'], $item['file_source'], $fileTarget)); + \OC_DB::insertid('*PREFIX*share'); + } + } + } + + /** + * Function that is called after a user is removed from a group. Shares are cleaned up. + * @param array arguments + */ + public static function post_removeFromGroup($arguments) { + // TODO Don't call if user deleted? + $sql = 'SELECT `id`, `share_type` FROM `*PREFIX*share`' + .' WHERE (`share_type` = ? AND `share_with` = ?) OR (`share_type` = ? AND `share_with` = ?)'; + $result = \OC_DB::executeAudited($sql, array(self::SHARE_TYPE_GROUP, $arguments['gid'], + self::$shareTypeGroupUserUnique, $arguments['uid'])); + while ($item = $result->fetchRow()) { + if ($item['share_type'] == self::SHARE_TYPE_GROUP) { + // Delete all reshares by this user of the group share + self::delete($item['id'], true, $arguments['uid']); + } else { + self::delete($item['id']); + } + } + } + + /** + * Function that is called after a group is removed. Cleans up the shares to that group. + * @param array arguments + */ + public static function post_deleteGroup($arguments) { + $sql = 'SELECT `id` FROM `*PREFIX*share` WHERE `share_type` = ? AND `share_with` = ?'; + $result = \OC_DB::executeAudited($sql, array(self::SHARE_TYPE_GROUP, $arguments['gid'])); + while ($item = $result->fetchRow()) { + self::delete($item['id']); + } + } + + /** + * In case a password protected link is not yet authenticated this function will return false + * + * @param array $linkItem + * @return bool + */ + public static function checkPasswordProtectedShare(array $linkItem) { + if (!isset($linkItem['share_with'])) { + return true; + } + if (!isset($linkItem['share_type'])) { + return true; + } + if (!isset($linkItem['id'])) { + return true; + } + + if ($linkItem['share_type'] != \OCP\Share::SHARE_TYPE_LINK) { + return true; + } + + if ( \OC::$session->exists('public_link_authenticated') + && \OC::$session->get('public_link_authenticated') === $linkItem['id'] ) { + return true; + } + + return false; + } +} diff --git a/lib/public/share.php b/lib/public/share.php index 5066d40354d..adc02dfe8c4 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -2,8 +2,9 @@ /** * ownCloud * - * @author Michael Gapczynski - * @copyright 2012 Michael Gapczynski mtgap@owncloud.com + * @author Bjoern Schiessle, Michael Gapczynski + * @copyright 2012 Michael Gapczynski + * 2014 Bjoern Schiessle * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE @@ -38,6 +39,10 @@ namespace OCP; */ class Share { + const FORMAT_NONE = -1; + const FORMAT_STATUSES = -2; + const FORMAT_SOURCES = -3; + const SHARE_TYPE_USER = 0; const SHARE_TYPE_GROUP = 1; const SHARE_TYPE_LINK = 3; @@ -45,77 +50,26 @@ class Share { const SHARE_TYPE_CONTACT = 5; const SHARE_TYPE_REMOTE = 6; - /** CRUDS permissions (Create, Read, Update, Delete, Share) using a bitmask - * Construct permissions for share() and setPermissions with Or (|) e.g. - * Give user read and update permissions: PERMISSION_READ | PERMISSION_UPDATE - * - * Check if permission is granted with And (&) e.g. Check if delete is - * granted: if ($permissions & PERMISSION_DELETE) - * - * Remove permissions with And (&) and Not (~) e.g. Remove the update - * permission: $permissions &= ~PERMISSION_UPDATE - * - * Apps are required to handle permissions on their own, this class only - * stores and manages the permissions of shares - * @see lib/public/constants.php - */ - - const FORMAT_NONE = -1; - const FORMAT_STATUSES = -2; - const FORMAT_SOURCES = -3; - - const TOKEN_LENGTH = 32; // see db_structure.xml - - private static $shareTypeUserAndGroups = -1; - private static $shareTypeGroupUserUnique = 2; - private static $backends = array(); - private static $backendTypes = array(); - private static $isResharingAllowed; - /** * Register a sharing backend class that implements OCP\Share_Backend for an item type * @param string Item type * @param string Backend class * @param string (optional) Depends on item type * @param array (optional) List of supported file extensions if this item type depends on files - * @param string $itemType - * @param string $class - * @param string $collectionOf - * @return boolean true if backend is registered or false if error + * @return Returns true if backend is registered or false if error */ public static function registerBackend($itemType, $class, $collectionOf = null, $supportedFileExtensions = null) { - if (self::isEnabled()) { - if (!isset(self::$backendTypes[$itemType])) { - self::$backendTypes[$itemType] = array( - 'class' => $class, - 'collectionOf' => $collectionOf, - 'supportedFileExtensions' => $supportedFileExtensions - ); - if(count(self::$backendTypes) === 1) { - \OC_Util::addScript('core', 'share'); - \OC_Util::addStyle('core', 'share'); - } - return true; - } - \OC_Log::write('OCP\Share', - 'Sharing backend '.$class.' not registered, '.self::$backendTypes[$itemType]['class'] - .' is already registered for '.$itemType, - \OC_Log::WARN); - } - return false; + return \OC\Share\Share::registerBackend($itemType, $class, $collectionOf, $supportedFileExtensions); } /** * Check if the Share API is enabled - * @return boolean true if enabled or false + * @return Returns true if enabled or false * * The Share API is enabled by default if not configured */ public static function isEnabled() { - if (\OC_Appconfig::getValue('core', 'shareapi_enabled', 'yes') == 'yes') { - return true; - } - return false; + return \OC\Share\Share::isEnabled(); } /** @@ -123,22 +77,13 @@ class Share { * @param string $path path * @return string Prepared path */ - public static function prepFileTarget( $path ) { - - // Paths in DB are stored with leading slashes, so add one if necessary - if ( substr( $path, 0, 1 ) !== '/' ) { - - $path = '/' . $path; - - } - - return $path; - + public static function prepFileTarget($path) { + return \OC\Share\Share::prepFileTarget($path); } /** * Find which users can access a shared item - * @param string $path to the file + * @param $path to the file * @param $user owner of the file * @param include owner to the list of users with access to the file * @return array @@ -146,101 +91,7 @@ class Share { * not '/admin/data/file.txt' */ public static function getUsersSharingFile($path, $user, $includeOwner = false) { - - $shares = array(); - $publicShare = false; - $source = -1; - $cache = false; - - $view = new \OC\Files\View('/' . $user . '/files'); - if ($view->file_exists($path)) { - $meta = $view->getFileInfo($path); - } else { - // if the file doesn't exists yet we start with the parent folder - $meta = $view->getFileInfo(dirname($path)); - } - - if($meta !== false) { - $source = $meta['fileid']; - $cache = new \OC\Files\Cache\Cache($meta['storage']); - } - - while ($source !== -1) { - - // Fetch all shares with another user - $query = \OC_DB::prepare( - 'SELECT `share_with` - FROM - `*PREFIX*share` - WHERE - `item_source` = ? AND `share_type` = ? AND `item_type` IN (\'file\', \'folder\')' - ); - - $result = $query->execute(array($source, self::SHARE_TYPE_USER)); - - if (\OCP\DB::isError($result)) { - \OCP\Util::writeLog('OCP\Share', \OC_DB::getErrorMessage($result), \OC_Log::ERROR); - } else { - while ($row = $result->fetchRow()) { - $shares[] = $row['share_with']; - } - } - // We also need to take group shares into account - - $query = \OC_DB::prepare( - 'SELECT `share_with` - FROM - `*PREFIX*share` - WHERE - `item_source` = ? AND `share_type` = ? AND `item_type` IN (\'file\', \'folder\')' - ); - - $result = $query->execute(array($source, self::SHARE_TYPE_GROUP)); - - if (\OCP\DB::isError($result)) { - \OCP\Util::writeLog('OCP\Share', \OC_DB::getErrorMessage($result), \OC_Log::ERROR); - } else { - while ($row = $result->fetchRow()) { - $usersInGroup = \OC_Group::usersInGroup($row['share_with']); - $shares = array_merge($shares, $usersInGroup); - } - } - - //check for public link shares - if (!$publicShare) { - $query = \OC_DB::prepare( - 'SELECT `share_with` - FROM - `*PREFIX*share` - WHERE - `item_source` = ? AND `share_type` = ? AND `item_type` IN (\'file\', \'folder\')' - ); - - $result = $query->execute(array($source, self::SHARE_TYPE_LINK)); - - if (\OCP\DB::isError($result)) { - \OCP\Util::writeLog('OCP\Share', \OC_DB::getErrorMessage($result), \OC_Log::ERROR); - } else { - if ($result->fetchRow()) { - $publicShare = true; - } - } - } - - // let's get the parent for the next round - $meta = $cache->get((int)$source); - if($meta !== false) { - $source = (int)$meta['parent']; - } else { - $source = -1; - } - } - // Include owner in list of users, if requested - if ($includeOwner) { - $shares[] = $user; - } - - return array("users" => array_unique($shares), "public" => $publicShare); + return \OC\Share\Share::getUsersSharingFile($path, $user, $includeOwner); } /** @@ -250,13 +101,12 @@ class Share { * @param mixed Parameters (optional) * @param int Number of items to return (optional) Returns all by default * @param bool include collections (optional) - * @param string $itemType * @return Return depends on format */ public static function getItemsSharedWith($itemType, $format = self::FORMAT_NONE, $parameters = null, $limit = -1, $includeCollections = false) { - return self::getItems($itemType, null, self::$shareTypeUserAndGroups, \OC_User::getUser(), null, $format, - $parameters, $limit, $includeCollections); + + return \OC\Share\Share::getItemsSharedWith($itemType, $format, $parameters, $limit, $includeCollections); } /** @@ -266,12 +116,12 @@ class Share { * @param int $format (optional) Format type must be defined by the backend * @param mixed Parameters (optional) * @param bool include collections (optional) - * @return string depends on format + * @return Return depends on format */ public static function getItemSharedWith($itemType, $itemTarget, $format = self::FORMAT_NONE, $parameters = null, $includeCollections = false) { - return self::getItems($itemType, $itemTarget, self::$shareTypeUserAndGroups, \OC_User::getUser(), null, $format, - $parameters, 1, $includeCollections); + + return \OC\Share\Share::getItemSharedWith($itemType, $itemTarget, $format, $parameters, $includeCollections); } /** @@ -282,45 +132,7 @@ class Share { * @return array Return list of items with file_target, permissions and expiration */ public static function getItemSharedWithUser($itemType, $itemSource, $user) { - - $shares = array(); - - // first check if there is a db entry for the specific user - $query = \OC_DB::prepare( - 'SELECT `file_target`, `permissions`, `expiration` - FROM - `*PREFIX*share` - WHERE - `item_source` = ? AND `item_type` = ? AND `share_with` = ?' - ); - - $result = \OC_DB::executeAudited($query, array($itemSource, $itemType, $user)); - - while ($row = $result->fetchRow()) { - $shares[] = $row; - } - - //if didn't found a result than let's look for a group share. - if(empty($shares)) { - $groups = \OC_Group::getUserGroups($user); - - $query = \OC_DB::prepare( - 'SELECT `file_target`, `permissions`, `expiration` - FROM - `*PREFIX*share` - WHERE - `item_source` = ? AND `item_type` = ? AND `share_with` in (?)' - ); - - $result = \OC_DB::executeAudited($query, array($itemSource, $itemType, implode(',', $groups))); - - while ($row = $result->fetchRow()) { - $shares[] = $row; - } - } - - return $shares; - + return \OC\Share\Share::getItemSharedWithUser($itemType, $itemSource, $user); } /** @@ -334,8 +146,7 @@ class Share { */ public static function getItemSharedWithBySource($itemType, $itemSource, $format = self::FORMAT_NONE, $parameters = null, $includeCollections = false) { - return self::getItems($itemType, $itemSource, self::$shareTypeUserAndGroups, \OC_User::getUser(), null, $format, - $parameters, 1, $includeCollections, true); + return \OC\Share\Share::getItemSharedWithBySource($itemType, $itemSource, $format, $parameters, $includeCollections); } /** @@ -346,8 +157,7 @@ class Share { * @return Item */ public static function getItemSharedWithByLink($itemType, $itemSource, $uidOwner) { - return self::getItems($itemType, $itemSource, self::SHARE_TYPE_LINK, null, $uidOwner, self::FORMAT_NONE, - null, 1); + return \OC\Share\Share::getItemSharedWithByLink($itemType, $itemSource, $uidOwner); } /** @@ -356,25 +166,7 @@ class Share { * @return array | bool false will be returned in case the token is unknown or unauthorized */ public static function getShareByToken($token, $checkPasswordProtection = true) { - $query = \OC_DB::prepare('SELECT * FROM `*PREFIX*share` WHERE `token` = ?', 1); - $result = $query->execute(array($token)); - if (\OC_DB::isError($result)) { - \OC_Log::write('OCP\Share', \OC_DB::getErrorMessage($result) . ', token=' . $token, \OC_Log::ERROR); - } - $row = $result->fetchRow(); - if ($row === false) { - return false; - } - if (is_array($row) and self::expireItem($row)) { - return false; - } - - // password protected shares need to be authenticated - if ($checkPasswordProtection && !\OCP\Share::checkPasswordProtectedShare($row)) { - return false; - } - - return $row; + return \OC\Share\Share::getShareByToken($token, $checkPasswordProtection); } /** @@ -382,21 +174,8 @@ class Share { * @param $linkItem * @return $fileOwner */ - public static function resolveReShare($linkItem) - { - if (isset($linkItem['parent'])) { - $parent = $linkItem['parent']; - while (isset($parent)) { - $query = \OC_DB::prepare('SELECT * FROM `*PREFIX*share` WHERE `id` = ?', 1); - $item = $query->execute(array($parent))->fetchRow(); - if (isset($item['parent'])) { - $parent = $item['parent']; - } else { - return $item; - } - } - } - return $linkItem; + public static function resolveReShare($linkItem) { + return \OC\Share\Share::resolveReShare($linkItem); } @@ -407,13 +186,12 @@ class Share { * @param mixed Parameters * @param int Number of items to return (optional) Returns all by default * @param bool include collections - * @param string $itemType * @return Return depends on format */ public static function getItemsShared($itemType, $format = self::FORMAT_NONE, $parameters = null, $limit = -1, $includeCollections = false) { - return self::getItems($itemType, null, null, null, \OC_User::getUser(), $format, - $parameters, $limit, $includeCollections); + + return \OC\Share\Share::getItemsShared($itemType, $format, $parameters, $limit, $includeCollections); } /** @@ -427,8 +205,8 @@ class Share { */ public static function getItemShared($itemType, $itemSource, $format = self::FORMAT_NONE, $parameters = null, $includeCollections = false) { - return self::getItems($itemType, $itemSource, null, null, \OC_User::getUser(), $format, - $parameters, -1, $includeCollections); + + return \OC\Share\Share::getItemShared($itemType, $itemSource, $format, $parameters, $includeCollections); } /** @@ -441,19 +219,7 @@ class Share { * @return Return array of users */ 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, false, $checkExpireDate); - if ($items) { - foreach ($items as $item) { - if ((int)$item['share_type'] === self::SHARE_TYPE_USER) { - $users[] = $item['share_with']; - } else if ((int)$item['share_type'] === self::SHARE_TYPE_GROUP) { - $users = array_merge($users, \OC_Group::usersInGroup($item['share_with'])); - } - } - } - return $users; + return \OC\Share\Share::getUsersItemShared($itemType, $itemSource, $uidOwner, $includeCollections, $checkExpireDate); } /** @@ -473,176 +239,7 @@ class Share { * @return bool|string Returns true on success or false on failure, Returns token on success for links */ public static function shareItem($itemType, $itemSource, $shareType, $shareWith, $permissions, $itemSourceName = null) { - $uidOwner = \OC_User::getUser(); - $sharingPolicy = \OC_Appconfig::getValue('core', 'shareapi_share_policy', 'global'); - - if (is_null($itemSourceName)) { - $itemSourceName = $itemSource; - } - - // Verify share type and sharing conditions are met - if ($shareType === self::SHARE_TYPE_USER) { - if ($shareWith == $uidOwner) { - $message = 'Sharing '.$itemSourceName.' failed, because the user '.$shareWith.' is the item owner'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - if (!\OC_User::userExists($shareWith)) { - $message = 'Sharing '.$itemSourceName.' failed, because the user '.$shareWith.' does not exist'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - if ($sharingPolicy == 'groups_only') { - $inGroup = array_intersect(\OC_Group::getUserGroups($uidOwner), \OC_Group::getUserGroups($shareWith)); - if (empty($inGroup)) { - $message = 'Sharing '.$itemSourceName.' failed, because the user ' - .$shareWith.' is not a member of any groups that '.$uidOwner.' is a member of'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - } - // Check if the item source is already shared with the user, either from the same owner or a different user - if ($checkExists = self::getItems($itemType, $itemSource, self::$shareTypeUserAndGroups, - $shareWith, null, self::FORMAT_NONE, null, 1, true, true)) { - // Only allow the same share to occur again if it is the same - // owner and is not a user share, this use case is for increasing - // permissions for a specific user - if ($checkExists['uid_owner'] != $uidOwner || $checkExists['share_type'] == $shareType) { - $message = 'Sharing '.$itemSourceName.' failed, because this item is already shared with '.$shareWith; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - } - } else if ($shareType === self::SHARE_TYPE_GROUP) { - if (!\OC_Group::groupExists($shareWith)) { - $message = 'Sharing '.$itemSourceName.' failed, because the group '.$shareWith.' does not exist'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - if ($sharingPolicy == 'groups_only' && !\OC_Group::inGroup($uidOwner, $shareWith)) { - $message = 'Sharing '.$itemSourceName.' failed, because ' - .$uidOwner.' is not a member of the group '.$shareWith; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - // Check if the item source is already shared with the group, either from the same owner or a different user - // The check for each user in the group is done inside the put() function - if ($checkExists = self::getItems($itemType, $itemSource, self::SHARE_TYPE_GROUP, $shareWith, - null, self::FORMAT_NONE, null, 1, true, true)) { - // Only allow the same share to occur again if it is the same - // owner and is not a group share, this use case is for increasing - // permissions for a specific user - if ($checkExists['uid_owner'] != $uidOwner || $checkExists['share_type'] == $shareType) { - $message = 'Sharing '.$itemSourceName.' failed, because this item is already shared with '.$shareWith; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - } - // Convert share with into an array with the keys group and users - $group = $shareWith; - $shareWith = array(); - $shareWith['group'] = $group; - $shareWith['users'] = array_diff(\OC_Group::usersInGroup($group), array($uidOwner)); - } else if ($shareType === self::SHARE_TYPE_LINK) { - if (\OC_Appconfig::getValue('core', 'shareapi_allow_links', 'yes') == 'yes') { - // when updating a link share - if ($checkExists = self::getItems($itemType, $itemSource, self::SHARE_TYPE_LINK, null, - $uidOwner, self::FORMAT_NONE, null, 1)) { - // remember old token - $oldToken = $checkExists['token']; - $oldPermissions = $checkExists['permissions']; - //delete the old share - self::delete($checkExists['id']); - } - - // Generate hash of password - same method as user passwords - if (isset($shareWith)) { - $forcePortable = (CRYPT_BLOWFISH != 1); - $hasher = new \PasswordHash(8, $forcePortable); - $shareWith = $hasher->HashPassword($shareWith.\OC_Config::getValue('passwordsalt', '')); - } else { - // reuse the already set password, but only if we change permissions - // otherwise the user disabled the password protection - if ($checkExists && (int)$permissions !== (int)$oldPermissions) { - $shareWith = $checkExists['share_with']; - } - } - - // Generate token - if (isset($oldToken)) { - $token = $oldToken; - } else { - $token = \OC_Util::generateRandomBytes(self::TOKEN_LENGTH); - } - $result = self::put($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $permissions, - null, $token, $itemSourceName); - if ($result) { - return $token; - } else { - return false; - } - } - $message = 'Sharing '.$itemSourceName.' failed, because sharing with links is not allowed'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - return false; -// } else if ($shareType === self::SHARE_TYPE_CONTACT) { -// if (!\OC_App::isEnabled('contacts')) { -// $message = 'Sharing '.$itemSource.' failed, because the contacts app is not enabled'; -// \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); -// return false; -// } -// $vcard = \OC_Contacts_App::getContactVCard($shareWith); -// if (!isset($vcard)) { -// $message = 'Sharing '.$itemSource.' failed, because the contact does not exist'; -// \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); -// throw new \Exception($message); -// } -// $details = \OC_Contacts_VCard::structureContact($vcard); -// // TODO Add ownCloud user to contacts vcard -// if (!isset($details['EMAIL'])) { -// $message = 'Sharing '.$itemSource.' failed, because no email address is associated with the contact'; -// \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); -// throw new \Exception($message); -// } -// return self::shareItem($itemType, $itemSource, self::SHARE_TYPE_EMAIL, $details['EMAIL'], $permissions); - } else { - // Future share types need to include their own conditions - $message = 'Share type '.$shareType.' is not valid for '.$itemSource; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - // If the item is a folder, scan through the folder looking for equivalent item types -// if ($itemType == 'folder') { -// $parentFolder = self::put('folder', $itemSource, $shareType, $shareWith, $uidOwner, $permissions, true); -// if ($parentFolder && $files = \OC\Files\Filesystem::getDirectoryContent($itemSource)) { -// for ($i = 0; $i < count($files); $i++) { -// $name = substr($files[$i]['name'], strpos($files[$i]['name'], $itemSource) - strlen($itemSource)); -// if ($files[$i]['mimetype'] == 'httpd/unix-directory' -// && $children = \OC\Files\Filesystem::getDirectoryContent($name, '/') -// ) { -// // Continue scanning into child folders -// array_push($files, $children); -// } else { -// // Check file extension for an equivalent item type to convert to -// $extension = strtolower(substr($itemSource, strrpos($itemSource, '.') + 1)); -// foreach (self::$backends as $type => $backend) { -// if (isset($backend->dependsOn) && $backend->dependsOn == 'file' && isset($backend->supportedFileExtensions) && in_array($extension, $backend->supportedFileExtensions)) { -// $itemType = $type; -// break; -// } -// } -// // Pass on to put() to check if this item should be converted, the item won't be inserted into the database unless it can be converted -// self::put($itemType, $name, $shareType, $shareWith, $uidOwner, $permissions, $parentFolder); -// } -// } -// return true; -// } -// return false; -// } else { - // Put the item into the database - return self::put($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $permissions, null, null, $itemSourceName); -// } + return \OC\Share\Share::shareItem($itemType, $itemSource, $shareType, $shareWith, $permissions, $itemSourceName); } /** @@ -651,88 +248,32 @@ class Share { * @param string Item source * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK * @param string User or group the item is being shared with - * @return boolean true on success or false on failure + * @return Returns true on success or false on failure */ public static function unshare($itemType, $itemSource, $shareType, $shareWith) { - if ($item = self::getItems($itemType, $itemSource, $shareType, $shareWith, \OC_User::getUser(), - self::FORMAT_NONE, null, 1)) { - self::unshareItem($item); - return true; - } - return false; + return \OC\Share\Share::unshare($itemType, $itemSource, $shareType, $shareWith); } /** * Unshare an item from all users, groups, and remove all links * @param string Item type * @param string Item source - * @param string $itemType - * @param string $itemSource - * @return boolean true on success or false on failure + * @return Returns true on success or false on failure */ public static function unshareAll($itemType, $itemSource) { - // Get all of the owners of shares of this item. - $query = \OC_DB::prepare( 'SELECT `uid_owner` from `*PREFIX*share` WHERE `item_type`=? AND `item_source`=?' ); - $result = $query->execute(array($itemType, $itemSource)); - $shares = array(); - // Add each owner's shares to the array of all shares for this item. - while ($row = $result->fetchRow()) { - $shares = array_merge($shares, self::getItems($itemType, $itemSource, null, null, $row['uid_owner'])); - } - if (!empty($shares)) { - // Pass all the vars we have for now, they may be useful - $hookParams = array( - 'itemType' => $itemType, - 'itemSource' => $itemSource, - 'shares' => $shares, - ); - \OC_Hook::emit('OCP\Share', 'pre_unshareAll', $hookParams); - foreach ($shares as $share) { - self::unshareItem($share); - } - \OC_Hook::emit('OCP\Share', 'post_unshareAll', $hookParams); - return true; - } - return false; + return \OC\Share\Share::unshareAll($itemType, $itemSource); } /** * Unshare an item shared with the current user * @param string Item type * @param string Item target - * @param string $itemType - * @param string $itemTarget - * @return boolean true on success or false on failure + * @return Returns true on success or false on failure * * Unsharing from self is not allowed for items inside collections */ public static function unshareFromSelf($itemType, $itemTarget) { - if ($item = self::getItemSharedWith($itemType, $itemTarget)) { - if ((int)$item['share_type'] === self::SHARE_TYPE_GROUP) { - // Insert an extra row for the group share and set permission - // to 0 to prevent it from showing up for the user - $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share`' - .' (`item_type`, `item_source`, `item_target`, `parent`, `share_type`,' - .' `share_with`, `uid_owner`, `permissions`, `stime`, `file_source`, `file_target`)' - .' VALUES (?,?,?,?,?,?,?,?,?,?,?)'); - $query->execute(array($item['item_type'], $item['item_source'], $item['item_target'], - $item['id'], self::$shareTypeGroupUserUnique, - \OC_User::getUser(), $item['uid_owner'], 0, $item['stime'], $item['file_source'], - $item['file_target'])); - \OC_DB::insertid('*PREFIX*share'); - // Delete all reshares by this user of the group share - self::delete($item['id'], true, \OC_User::getUser()); - } else if ((int)$item['share_type'] === self::$shareTypeGroupUserUnique) { - // Set permission to 0 to prevent it from showing up for the user - $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `permissions` = ? WHERE `id` = ?'); - $query->execute(array(0, $item['id'])); - self::delete($item['id'], true); - } else { - self::delete($item['id']); - } - return true; - } - return false; + return \OC\Share\Share::unshareFromSelf($itemType, $itemTarget); } /** * sent status if users got informed by mail about share @@ -742,102 +283,20 @@ class Share { * @param bool $status */ public static function setSendMailStatus($itemType, $itemSource, $shareType, $status) { - $status = $status ? 1 : 0; - - $query = \OC_DB::prepare( - 'UPDATE `*PREFIX*share` - SET `mail_send` = ? - WHERE `item_type` = ? AND `item_source` = ? AND `share_type` = ?'); - - $result = $query->execute(array($status, $itemType, $itemSource, $shareType)); - - if($result === false) { - \OC_Log::write('OCP\Share', 'Couldn\'t set send mail status', \OC_Log::ERROR); - } + return \OC\Share\Share::setSendMailStatus($itemType, $itemSource, $shareType, $status); } /** * Set the permissions of an item for a specific user or group - * @param string $itemType Item type - * @param string $itemSource Item source - * @param int $shareType SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK - * @param string $shareWith User or group the item is being shared with - * @param integer|null $permissions CRUDS - * @return boolean true on success or false on failure + * @param string Item type + * @param string Item source + * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK + * @param string User or group the item is being shared with + * @param int CRUDS permissions + * @return Returns true on success or false on failure */ public static function setPermissions($itemType, $itemSource, $shareType, $shareWith, $permissions) { - if ($item = self::getItems($itemType, $itemSource, $shareType, $shareWith, - \OC_User::getUser(), self::FORMAT_NONE, null, 1, false)) { - // Check if this item is a reshare and verify that the permissions - // granted don't exceed the parent shared item - if (isset($item['parent'])) { - $query = \OC_DB::prepare('SELECT `permissions` FROM `*PREFIX*share` WHERE `id` = ?', 1); - $result = $query->execute(array($item['parent']))->fetchRow(); - if (~(int)$result['permissions'] & $permissions) { - $message = 'Setting permissions for '.$itemSource.' failed,' - .' because the permissions exceed permissions granted to '.\OC_User::getUser(); - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - } - $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `permissions` = ? WHERE `id` = ?'); - $query->execute(array($permissions, $item['id'])); - if ($itemType === 'file' || $itemType === 'folder') { - \OC_Hook::emit('OCP\Share', 'post_update_permissions', array( - 'itemType' => $itemType, - 'itemSource' => $itemSource, - 'shareType' => $shareType, - 'shareWith' => $shareWith, - 'uidOwner' => \OC_User::getUser(), - 'permissions' => $permissions, - 'path' => $item['path'], - )); - } - // Check if permissions were removed - if ($item['permissions'] & ~$permissions) { - // If share permission is removed all reshares must be deleted - if (($item['permissions'] & PERMISSION_SHARE) && (~$permissions & PERMISSION_SHARE)) { - self::delete($item['id'], true); - } else { - $ids = array(); - $parents = array($item['id']); - while (!empty($parents)) { - $parents = "'".implode("','", $parents)."'"; - $query = \OC_DB::prepare('SELECT `id`, `permissions` FROM `*PREFIX*share`' - .' WHERE `parent` IN ('.$parents.')'); - $result = $query->execute(); - // Reset parents array, only go through loop again if - // items are found that need permissions removed - $parents = array(); - while ($item = $result->fetchRow()) { - // Check if permissions need to be removed - if ($item['permissions'] & ~$permissions) { - // Add to list of items that need permissions removed - $ids[] = $item['id']; - $parents[] = $item['id']; - } - } - } - // Remove the permissions for all reshares of this item - if (!empty($ids)) { - $ids = "'".implode("','", $ids)."'"; - // TODO this should be done with Doctrine platform objects - if (\OC_Config::getValue( "dbtype") === 'oci') { - $andOp = 'BITAND(`permissions`, ?)'; - } else { - $andOp = '`permissions` & ?'; - } - $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `permissions` = '.$andOp - .' WHERE `id` IN ('.$ids.')'); - $query->execute(array($permissions)); - } - } - } - return true; - } - $message = 'Setting permissions for '.$itemSource.' failed, because the item was not found'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); + return \OC\Share\Share::setPermissions($itemType, $itemSource, $shareType, $shareWith, $permissions); } /** @@ -845,67 +304,10 @@ class Share { * @param string $itemType * @param string $itemSource * @param string $date expiration date - * @return boolean + * @return Share_Backend */ public static function setExpirationDate($itemType, $itemSource, $date) { - if ($items = self::getItems($itemType, $itemSource, null, null, \OC_User::getUser(), - self::FORMAT_NONE, null, -1, false)) { - if (!empty($items)) { - if ($date == '') { - $date = null; - } else { - $date = new \DateTime($date); - } - $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `expiration` = ? WHERE `id` = ?'); - $query->bindValue(1, $date, 'datetime'); - foreach ($items as $item) { - $query->bindValue(2, (int) $item['id']); - $query->execute(); - } - return true; - } - } - return false; - } - - /** - * Checks whether a share has expired, calls unshareItem() if yes. - * @param array $item Share data (usually database row) - * @return bool True if item was expired, false otherwise. - */ - protected static function expireItem(array $item) { - if (!empty($item['expiration'])) { - $now = new \DateTime(); - $expires = new \DateTime($item['expiration']); - if ($now > $expires) { - self::unshareItem($item); - return true; - } - } - return false; - } - - /** - * Unshares a share given a share data array - * @param array $item Share data (usually database row) - * @return null - */ - 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'], - 'uidOwner' => $item['uid_owner'], - ); - - \OC_Hook::emit('OCP\Share', 'pre_unshare', $hookParams + array( - 'fileSource' => $item['file_source'], - )); - self::delete($item['id']); - \OC_Hook::emit('OCP\Share', 'post_unshare', $hookParams); + return \OC\Share\Share::setExpirationDate($itemType, $itemSource, $date); } /** @@ -914,930 +316,14 @@ class Share { * @return Share_Backend */ public static function getBackend($itemType) { - if (isset(self::$backends[$itemType])) { - return self::$backends[$itemType]; - } else if (isset(self::$backendTypes[$itemType]['class'])) { - $class = self::$backendTypes[$itemType]['class']; - if (class_exists($class)) { - self::$backends[$itemType] = new $class; - if (!(self::$backends[$itemType] instanceof Share_Backend)) { - $message = 'Sharing backend '.$class.' must implement the interface OCP\Share_Backend'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - return self::$backends[$itemType]; - } else { - $message = 'Sharing backend '.$class.' not found'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - } - $message = 'Sharing backend for '.$itemType.' not found'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - - /** - * Check if resharing is allowed - * @return boolean true if allowed or false - * - * Resharing is allowed by default if not configured - */ - private static function isResharingAllowed() { - if (!isset(self::$isResharingAllowed)) { - if (\OC_Appconfig::getValue('core', 'shareapi_allow_resharing', 'yes') == 'yes') { - self::$isResharingAllowed = true; - } else { - self::$isResharingAllowed = false; - } - } - return self::$isResharingAllowed; - } - - /** - * Get a list of collection item types for the specified item type - * @param string Item type - * @return array - */ - private static function getCollectionItemTypes($itemType) { - $collectionTypes = array($itemType); - foreach (self::$backendTypes as $type => $backend) { - if (in_array($backend['collectionOf'], $collectionTypes)) { - $collectionTypes[] = $type; - } - } - // TODO Add option for collections to be collection of themselves, only 'folder' does it now... - if (!self::getBackend($itemType) instanceof Share_Backend_Collection || $itemType != 'folder') { - unset($collectionTypes[0]); - } - // Return array if collections were found or the item type is a - // collection itself - collections can be inside collections - if (count($collectionTypes) > 0) { - return $collectionTypes; - } - return false; - } - - /** - * Get shared items from the database - * @param string Item type - * @param string Item source or target (optional) - * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, SHARE_TYPE_LINK, $shareTypeUserAndGroups, or $shareTypeGroupUserUnique - * @param string User or group the item is being shared with - * @param string User that is the owner of shared items (optional) - * @param int Format to convert items to with formatItems() - * @param mixed Parameters to pass to formatItems() - * @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 - * - */ - 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, $checkExpireDate = true) { - if (!self::isEnabled()) { - if ($limit == 1 || (isset($uidOwner) && isset($item))) { - return false; - } else { - return array(); - } - } - $backend = self::getBackend($itemType); - $collectionTypes = false; - // Get filesystem root to add it to the file target and remove from the - // file source, match file_source with the file cache - if ($itemType == 'file' || $itemType == 'folder') { - if(!is_null($uidOwner)) { - $root = \OC\Files\Filesystem::getRoot(); - } else { - $root = ''; - } - $where = 'INNER JOIN `*PREFIX*filecache` ON `file_source` = `*PREFIX*filecache`.`fileid`'; - if (!isset($item)) { - $where .= ' WHERE `file_target` IS NOT NULL'; - } - $fileDependent = true; - $queryArgs = array(); - } else { - $fileDependent = false; - $root = ''; - if ($includeCollections && !isset($item) && ($collectionTypes = self::getCollectionItemTypes($itemType))) { - // If includeCollections is true, find collections of this item type, e.g. a music album contains songs - if (!in_array($itemType, $collectionTypes)) { - $itemTypes = array_merge(array($itemType), $collectionTypes); - } else { - $itemTypes = $collectionTypes; - } - $placeholders = join(',', array_fill(0, count($itemTypes), '?')); - $where = ' WHERE `item_type` IN ('.$placeholders.'))'; - $queryArgs = $itemTypes; - } else { - $where = ' WHERE `item_type` = ?'; - $queryArgs = array($itemType); - } - } - if (\OC_Appconfig::getValue('core', 'shareapi_allow_links', 'yes') !== 'yes') { - $where .= ' AND `share_type` != ?'; - $queryArgs[] = self::SHARE_TYPE_LINK; - } - if (isset($shareType)) { - // Include all user and group items - if ($shareType == self::$shareTypeUserAndGroups && isset($shareWith)) { - $where .= ' AND `share_type` IN (?,?,?)'; - $queryArgs[] = self::SHARE_TYPE_USER; - $queryArgs[] = self::SHARE_TYPE_GROUP; - $queryArgs[] = self::$shareTypeGroupUserUnique; - $userAndGroups = array_merge(array($shareWith), \OC_Group::getUserGroups($shareWith)); - $placeholders = join(',', array_fill(0, count($userAndGroups), '?')); - $where .= ' AND `share_with` IN ('.$placeholders.')'; - $queryArgs = array_merge($queryArgs, $userAndGroups); - // Don't include own group shares - $where .= ' AND `uid_owner` != ?'; - $queryArgs[] = $shareWith; - } else { - $where .= ' AND `share_type` = ?'; - $queryArgs[] = $shareType; - if (isset($shareWith)) { - $where .= ' AND `share_with` = ?'; - $queryArgs[] = $shareWith; - } - } - } - if (isset($uidOwner)) { - $where .= ' AND `uid_owner` = ?'; - $queryArgs[] = $uidOwner; - if (!isset($shareType)) { - // Prevent unique user targets for group shares from being selected - $where .= ' AND `share_type` != ?'; - $queryArgs[] = self::$shareTypeGroupUserUnique; - } - if ($itemType == 'file' || $itemType == 'folder') { - $column = 'file_source'; - } else { - $column = 'item_source'; - } - } else { - if ($itemType == 'file' || $itemType == 'folder') { - $column = 'file_target'; - } else { - $column = 'item_target'; - } - } - if (isset($item)) { - if ($includeCollections && $collectionTypes = self::getCollectionItemTypes($itemType)) { - $where .= ' AND ('; - } else { - $where .= ' AND'; - } - // If looking for own shared items, check item_source else check item_target - if (isset($uidOwner) || $itemShareWithBySource) { - // If item type is a file, file source needs to be checked in case the item was converted - if ($itemType == 'file' || $itemType == 'folder') { - $where .= ' `file_source` = ?'; - $column = 'file_source'; - } else { - $where .= ' `item_source` = ?'; - $column = 'item_source'; - } - } else { - if ($itemType == 'file' || $itemType == 'folder') { - $where .= ' `file_target` = ?'; - $item = \OC\Files\Filesystem::normalizePath($item); - } else { - $where .= ' `item_target` = ?'; - } - } - $queryArgs[] = $item; - if ($includeCollections && $collectionTypes) { - $placeholders = join(',', array_fill(0, count($collectionTypes), '?')); - $where .= ' OR `item_type` IN ('.$placeholders.'))'; - $queryArgs = array_merge($queryArgs, $collectionTypes); - } - } - if ($limit != -1 && !$includeCollections) { - if ($shareType == self::$shareTypeUserAndGroups) { - // Make sure the unique user target is returned if it exists, - // unique targets should follow the group share in the database - // If the limit is not 1, the filtering can be done later - $where .= ' ORDER BY `*PREFIX*share`.`id` DESC'; - } - // The limit must be at least 3, because filtering needs to be done - if ($limit < 3) { - $queryLimit = 3; - } else { - $queryLimit = $limit; - } - } else { - $queryLimit = null; - } - // TODO Optimize selects - 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`, `share_with`, `mail_send`, `uid_owner`'; - } else { - $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`, `uid_owner`'; - } else { - $select = '`id`, `item_type`, `item_source`, `parent`, `share_type`, `share_with`, `permissions`,' - .' `stime`, `file_source`, `expiration`, `token`, `mail_send`, `uid_owner`'; - } - } else { - if ($fileDependent) { - if (($itemType == 'file' || $itemType == 'folder') - && $format == \OC_Share_Backend_File::FORMAT_GET_FOLDER_CONTENTS - || $format == \OC_Share_Backend_File::FORMAT_FILE_APP_ROOT - ) { - $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `*PREFIX*share`.`parent`, `uid_owner`, ' - .'`share_type`, `share_with`, `file_source`, `path`, `file_target`, ' - .'`permissions`, `expiration`, `storage`, `*PREFIX*filecache`.`parent` as `file_parent`, ' - .'`name`, `mtime`, `mimetype`, `mimepart`, `size`, `unencrypted_size`, `encrypted`, `etag`, `mail_send`'; - } else { - $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `item_target`, - `*PREFIX*share`.`parent`, `share_type`, `share_with`, `uid_owner`, - `file_source`, `path`, `file_target`, `permissions`, `stime`, `expiration`, `token`, `storage`, `mail_send`'; - } - } else { - $select = '*'; - } - } - } - $root = strlen($root); - $query = \OC_DB::prepare('SELECT '.$select.' FROM `*PREFIX*share` '.$where, $queryLimit); - $result = $query->execute($queryArgs); - if (\OC_DB::isError($result)) { - \OC_Log::write('OCP\Share', - \OC_DB::getErrorMessage($result) . ', select=' . $select . ' where=' . $where, - \OC_Log::ERROR); - } - $items = array(); - $targets = array(); - $switchedItems = array(); - $mounts = array(); - while ($row = $result->fetchRow()) { - if (isset($row['id'])) { - $row['id']=(int)$row['id']; - } - if (isset($row['share_type'])) { - $row['share_type']=(int)$row['share_type']; - } - if (isset($row['parent'])) { - $row['parent']=(int)$row['parent']; - } - if (isset($row['file_parent'])) { - $row['file_parent']=(int)$row['file_parent']; - } - if (isset($row['file_source'])) { - $row['file_source']=(int)$row['file_source']; - } - if (isset($row['permissions'])) { - $row['permissions']=(int)$row['permissions']; - } - if (isset($row['storage'])) { - $row['storage']=(int)$row['storage']; - } - if (isset($row['stime'])) { - $row['stime']=(int)$row['stime']; - } - // Filter out duplicate group shares for users with unique targets - if ($row['share_type'] == self::$shareTypeGroupUserUnique && isset($items[$row['parent']])) { - $row['share_type'] = self::SHARE_TYPE_GROUP; - $row['share_with'] = $items[$row['parent']]['share_with']; - // Remove the parent group share - unset($items[$row['parent']]); - if ($row['permissions'] == 0) { - continue; - } - } else if (!isset($uidOwner)) { - // Check if the same target already exists - if (isset($targets[$row[$column]])) { - // Check if the same owner shared with the user twice - // through a group and user share - this is allowed - $id = $targets[$row[$column]]; - if (isset($items[$id]) && $items[$id]['uid_owner'] == $row['uid_owner']) { - // Switch to group share type to ensure resharing conditions aren't bypassed - if ($items[$id]['share_type'] != self::SHARE_TYPE_GROUP) { - $items[$id]['share_type'] = self::SHARE_TYPE_GROUP; - $items[$id]['share_with'] = $row['share_with']; - } - // Switch ids if sharing permission is granted on only - // one share to ensure correct parent is used if resharing - if (~(int)$items[$id]['permissions'] & PERMISSION_SHARE - && (int)$row['permissions'] & PERMISSION_SHARE) { - $items[$row['id']] = $items[$id]; - $switchedItems[$id] = $row['id']; - unset($items[$id]); - $id = $row['id']; - } - // Combine the permissions for the item - $items[$id]['permissions'] |= (int)$row['permissions']; - continue; - } - } else { - $targets[$row[$column]] = $row['id']; - } - } - // Remove root from file source paths if retrieving own shared items - if (isset($uidOwner) && isset($row['path'])) { - if (isset($row['parent'])) { - // FIXME: Doesn't always construct the correct path, example: - // Folder '/a/b', share '/a' and '/a/b' to user2 - // user2 reshares /Shared/b and ask for share status of /Shared/a/b - // expected result: path=/Shared/a/b; actual result /Shared/b because of the parent - $query = \OC_DB::prepare('SELECT `file_target` FROM `*PREFIX*share` WHERE `id` = ?'); - $parentResult = $query->execute(array($row['parent'])); - if (\OC_DB::isError($result)) { - \OC_Log::write('OCP\Share', 'Can\'t select parent: ' . - \OC_DB::getErrorMessage($result) . ', select=' . $select . ' where=' . $where, - \OC_Log::ERROR); - } else { - $parentRow = $parentResult->fetchRow(); - $tmpPath = '/Shared' . $parentRow['file_target']; - // find the right position where the row path continues from the target path - $pos = strrpos($row['path'], $parentRow['file_target']); - $subPath = substr($row['path'], $pos); - $splitPath = explode('/', $subPath); - foreach (array_slice($splitPath, 2) as $pathPart) { - $tmpPath = $tmpPath . '/' . $pathPart; - } - $row['path'] = $tmpPath; - } - } else { - if (!isset($mounts[$row['storage']])) { - $mountPoints = \OC\Files\Filesystem::getMountByNumericId($row['storage']); - if (is_array($mountPoints)) { - $mounts[$row['storage']] = current($mountPoints); - } - } - if ($mounts[$row['storage']]) { - $path = $mounts[$row['storage']]->getMountPoint().$row['path']; - $row['path'] = substr($path, $root); - } - } - } - if($checkExpireDate) { - if (self::expireItem($row)) { - continue; - } - } - // Check if resharing is allowed, if not remove share permission - if (isset($row['permissions']) && !self::isResharingAllowed()) { - $row['permissions'] &= ~PERMISSION_SHARE; - } - // Add display names to result - if ( isset($row['share_with']) && $row['share_with'] != '') { - $row['share_with_displayname'] = \OCP\User::getDisplayName($row['share_with']); - } - if ( isset($row['uid_owner']) && $row['uid_owner'] != '') { - $row['displayname_owner'] = \OCP\User::getDisplayName($row['uid_owner']); - } - - $items[$row['id']] = $row; - } - if (!empty($items)) { - $collectionItems = array(); - foreach ($items as &$row) { - // Return only the item instead of a 2-dimensional array - if ($limit == 1 && $row[$column] == $item && ($row['item_type'] == $itemType || $itemType == 'file')) { - if ($format == self::FORMAT_NONE) { - return $row; - } else { - break; - } - } - // Check if this is a collection of the requested item type - if ($includeCollections && $collectionTypes && in_array($row['item_type'], $collectionTypes)) { - if (($collectionBackend = self::getBackend($row['item_type'])) - && $collectionBackend instanceof Share_Backend_Collection) { - // Collections can be inside collections, check if the item is a collection - if (isset($item) && $row['item_type'] == $itemType && $row[$column] == $item) { - $collectionItems[] = $row; - } else { - $collection = array(); - $collection['item_type'] = $row['item_type']; - if ($row['item_type'] == 'file' || $row['item_type'] == 'folder') { - $collection['path'] = basename($row['path']); - } - $row['collection'] = $collection; - // Fetch all of the children sources - $children = $collectionBackend->getChildren($row[$column]); - foreach ($children as $child) { - $childItem = $row; - $childItem['item_type'] = $itemType; - if ($row['item_type'] != 'file' && $row['item_type'] != 'folder') { - $childItem['item_source'] = $child['source']; - $childItem['item_target'] = $child['target']; - } - if ($backend instanceof Share_Backend_File_Dependent) { - if ($row['item_type'] == 'file' || $row['item_type'] == 'folder') { - $childItem['file_source'] = $child['source']; - } else { - $meta = \OC\Files\Filesystem::getFileInfo($child['file_path']); - $childItem['file_source'] = $meta['fileid']; - } - $childItem['file_target'] = - \OC\Files\Filesystem::normalizePath($child['file_path']); - } - if (isset($item)) { - if ($childItem[$column] == $item) { - // Return only the item instead of a 2-dimensional array - if ($limit == 1) { - if ($format == self::FORMAT_NONE) { - return $childItem; - } else { - // Unset the items array and break out of both loops - $items = array(); - $items[] = $childItem; - break 2; - } - } else { - $collectionItems[] = $childItem; - } - } - } else { - $collectionItems[] = $childItem; - } - } - } - } - // Remove collection item - $toRemove = $row['id']; - if (array_key_exists($toRemove, $switchedItems)) { - $toRemove = $switchedItems[$toRemove]; - } - unset($items[$toRemove]); - } - } - if (!empty($collectionItems)) { - $items = array_merge($items, $collectionItems); - } - if (empty($items) && $limit == 1) { - return false; - } - if ($format == self::FORMAT_NONE) { - return $items; - } else if ($format == self::FORMAT_STATUSES) { - $statuses = array(); - foreach ($items as $item) { - if ($item['share_type'] == self::SHARE_TYPE_LINK) { - $statuses[$item[$column]]['link'] = true; - } else if (!isset($statuses[$item[$column]])) { - $statuses[$item[$column]]['link'] = false; - } - if ($itemType == 'file' || $itemType == 'folder') { - $statuses[$item[$column]]['path'] = $item['path']; - } - } - return $statuses; - } else { - return $backend->formatItems($items, $format, $parameters); - } - } else if ($limit == 1 || (isset($uidOwner) && isset($item))) { - return false; - } - return array(); - } - - /** - * Put shared item into the database - * @param string $itemType Item type - * @param string $itemSource Item source - * @param integer $shareType SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK - * @param string $shareWith User or group the item is being shared with - * @param string $uidOwner User that is the owner of shared item - * @param int $permissions CRUDS permissions - * @param bool|array, $parentFolder Parent folder target (optional) - * @param string $token (optional) - * @param string $itemSourceName name of the source item (optional) - * @return bool Returns true on success or false on failure - */ - private static function put($itemType, $itemSource, $shareType, $shareWith, $uidOwner, - $permissions, $parentFolder = null, $token = null, $itemSourceName = null) { - $backend = self::getBackend($itemType); - - // Check if this is a reshare - if ($checkReshare = self::getItemSharedWithBySource($itemType, $itemSource, self::FORMAT_NONE, null, true)) { - - // Check if attempting to share back to owner - if ($checkReshare['uid_owner'] == $shareWith && $shareType == self::SHARE_TYPE_USER) { - $message = 'Sharing '.$itemSourceName.' failed, because the user '.$shareWith.' is the original sharer'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - // Check if share permissions is granted - if (self::isResharingAllowed() && (int)$checkReshare['permissions'] & PERMISSION_SHARE) { - if (~(int)$checkReshare['permissions'] & $permissions) { - $message = 'Sharing '.$itemSourceName - .' failed, because the permissions exceed permissions granted to '.$uidOwner; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } else { - // TODO Don't check if inside folder - $parent = $checkReshare['id']; - $itemSource = $checkReshare['item_source']; - $fileSource = $checkReshare['file_source']; - $suggestedItemTarget = $checkReshare['item_target']; - $suggestedFileTarget = $checkReshare['file_target']; - $filePath = $checkReshare['file_target']; - } - } else { - $message = 'Sharing '.$itemSourceName.' failed, because resharing is not allowed'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - } else { - $parent = null; - $suggestedItemTarget = null; - $suggestedFileTarget = null; - if (!$backend->isValidSource($itemSource, $uidOwner)) { - $message = 'Sharing '.$itemSource.' failed, because the sharing backend for ' - .$itemType.' could not find its source'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - $parent = null; - if ($backend instanceof Share_Backend_File_Dependent) { - $filePath = $backend->getFilePath($itemSource, $uidOwner); - if ($itemType == 'file' || $itemType == 'folder') { - $fileSource = $itemSource; - } else { - $meta = \OC\Files\Filesystem::getFileInfo($filePath); - $fileSource = $meta['fileid']; - } - if ($fileSource == -1) { - $message = 'Sharing '.$itemSource.' failed, because the file could not be found in the file cache'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - } else { - $filePath = null; - $fileSource = null; - } - } - $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`item_type`, `item_source`, `item_target`,' - .' `parent`, `share_type`, `share_with`, `uid_owner`, `permissions`, `stime`, `file_source`,' - .' `file_target`, `token`) VALUES (?,?,?,?,?,?,?,?,?,?,?,?)'); - // Share with a group - if ($shareType == self::SHARE_TYPE_GROUP) { - $groupItemTarget = self::generateTarget($itemType, $itemSource, $shareType, $shareWith['group'], - $uidOwner, $suggestedItemTarget); - $run = true; - $error = ''; - \OC_Hook::emit('OCP\Share', 'pre_shared', array( - 'itemType' => $itemType, - 'itemSource' => $itemSource, - 'itemTarget' => $groupItemTarget, - 'shareType' => $shareType, - 'shareWith' => $shareWith['group'], - 'uidOwner' => $uidOwner, - 'permissions' => $permissions, - 'fileSource' => $fileSource, - 'token' => $token, - 'run' => &$run, - 'error' => &$error - )); - - if ($run === false) { - throw new \Exception($error); - } - - if (isset($fileSource)) { - if ($parentFolder) { - if ($parentFolder === true) { - $groupFileTarget = self::generateTarget('file', $filePath, $shareType, - $shareWith['group'], $uidOwner, $suggestedFileTarget); - // Set group default file target for future use - $parentFolders[0]['folder'] = $groupFileTarget; - } else { - // Get group default file target - $groupFileTarget = $parentFolder[0]['folder'].$itemSource; - $parent = $parentFolder[0]['id']; - } - } else { - $groupFileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith['group'], - $uidOwner, $suggestedFileTarget); - } - } else { - $groupFileTarget = null; - } - $query->execute(array($itemType, $itemSource, $groupItemTarget, $parent, $shareType, - $shareWith['group'], $uidOwner, $permissions, time(), $fileSource, $groupFileTarget, $token)); - // Save this id, any extra rows for this group share will need to reference it - $parent = \OC_DB::insertid('*PREFIX*share'); - // Loop through all users of this group in case we need to add an extra row - foreach ($shareWith['users'] as $uid) { - $itemTarget = self::generateTarget($itemType, $itemSource, self::SHARE_TYPE_USER, $uid, - $uidOwner, $suggestedItemTarget, $parent); - if (isset($fileSource)) { - if ($parentFolder) { - if ($parentFolder === true) { - $fileTarget = self::generateTarget('file', $filePath, self::SHARE_TYPE_USER, $uid, - $uidOwner, $suggestedFileTarget, $parent); - if ($fileTarget != $groupFileTarget) { - $parentFolders[$uid]['folder'] = $fileTarget; - } - } else if (isset($parentFolder[$uid])) { - $fileTarget = $parentFolder[$uid]['folder'].$itemSource; - $parent = $parentFolder[$uid]['id']; - } - } else { - $fileTarget = self::generateTarget('file', $filePath, self::SHARE_TYPE_USER, - $uid, $uidOwner, $suggestedFileTarget, $parent); - } - } else { - $fileTarget = null; - } - // Insert an extra row for the group share if the item or file target is unique for this user - if ($itemTarget != $groupItemTarget || (isset($fileSource) && $fileTarget != $groupFileTarget)) { - $query->execute(array($itemType, $itemSource, $itemTarget, $parent, - self::$shareTypeGroupUserUnique, $uid, $uidOwner, $permissions, time(), - $fileSource, $fileTarget, $token)); - $id = \OC_DB::insertid('*PREFIX*share'); - } - } - \OC_Hook::emit('OCP\Share', 'post_shared', array( - 'itemType' => $itemType, - 'itemSource' => $itemSource, - 'itemTarget' => $groupItemTarget, - 'parent' => $parent, - 'shareType' => $shareType, - 'shareWith' => $shareWith['group'], - 'uidOwner' => $uidOwner, - 'permissions' => $permissions, - 'fileSource' => $fileSource, - 'fileTarget' => $groupFileTarget, - 'id' => $parent, - 'token' => $token - )); - - if ($parentFolder === true) { - // Return parent folders to preserve file target paths for potential children - return $parentFolders; - } - } else { - $itemTarget = self::generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner, - $suggestedItemTarget); - $run = true; - $error = ''; - \OC_Hook::emit('OCP\Share', 'pre_shared', array( - 'itemType' => $itemType, - 'itemSource' => $itemSource, - 'itemTarget' => $itemTarget, - 'shareType' => $shareType, - 'shareWith' => $shareWith, - 'uidOwner' => $uidOwner, - 'permissions' => $permissions, - 'fileSource' => $fileSource, - 'token' => $token, - 'run' => &$run, - 'error' => &$error - )); - - if ($run === false) { - throw new \Exception($error); - } - - if (isset($fileSource)) { - if ($parentFolder) { - if ($parentFolder === true) { - $fileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith, - $uidOwner, $suggestedFileTarget); - $parentFolders['folder'] = $fileTarget; - } else { - $fileTarget = $parentFolder['folder'].$itemSource; - $parent = $parentFolder['id']; - } - } else { - $fileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith, $uidOwner, - $suggestedFileTarget); - } - } else { - $fileTarget = null; - } - $query->execute(array($itemType, $itemSource, $itemTarget, $parent, $shareType, $shareWith, $uidOwner, - $permissions, time(), $fileSource, $fileTarget, $token)); - $id = \OC_DB::insertid('*PREFIX*share'); - \OC_Hook::emit('OCP\Share', 'post_shared', array( - 'itemType' => $itemType, - 'itemSource' => $itemSource, - 'itemTarget' => $itemTarget, - 'parent' => $parent, - 'shareType' => $shareType, - 'shareWith' => $shareWith, - 'uidOwner' => $uidOwner, - 'permissions' => $permissions, - 'fileSource' => $fileSource, - 'fileTarget' => $fileTarget, - 'id' => $id, - 'token' => $token - )); - if ($parentFolder === true) { - $parentFolders['id'] = $id; - // Return parent folder to preserve file target paths for potential children - return $parentFolders; - } - } - return true; - } - - /** - * Generate a unique target for the item - * @param string Item type - * @param string Item source - * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK - * @param string User or group the item is being shared with - * @param string User that is the owner of shared item - * @param string The suggested target originating from a reshare (optional) - * @param int The id of the parent group share (optional) - * @param integer $shareType - * @return string Item target - */ - private static function generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner, - $suggestedTarget = null, $groupParent = null) { - $backend = self::getBackend($itemType); - if ($shareType == self::SHARE_TYPE_LINK) { - if (isset($suggestedTarget)) { - return $suggestedTarget; - } - return $backend->generateTarget($itemSource, false); - } else { - if ($itemType == 'file' || $itemType == 'folder') { - $column = 'file_target'; - $columnSource = 'file_source'; - } else { - $column = 'item_target'; - $columnSource = 'item_source'; - } - if ($shareType == self::SHARE_TYPE_USER) { - // Share with is a user, so set share type to user and groups - $shareType = self::$shareTypeUserAndGroups; - $userAndGroups = array_merge(array($shareWith), \OC_Group::getUserGroups($shareWith)); - } else { - $userAndGroups = false; - } - $exclude = null; - // Backend has 3 opportunities to generate a unique target - for ($i = 0; $i < 2; $i++) { - // Check if suggested target exists first - if ($i == 0 && isset($suggestedTarget)) { - $target = $suggestedTarget; - } else { - if ($shareType == self::SHARE_TYPE_GROUP) { - $target = $backend->generateTarget($itemSource, false, $exclude); - } else { - $target = $backend->generateTarget($itemSource, $shareWith, $exclude); - } - if (is_array($exclude) && in_array($target, $exclude)) { - break; - } - } - // Check if target already exists - $checkTarget = self::getItems($itemType, $target, $shareType, $shareWith); - if (!empty($checkTarget)) { - foreach ($checkTarget as $item) { - // Skip item if it is the group parent row - if (isset($groupParent) && $item['id'] == $groupParent) { - if (count($checkTarget) == 1) { - return $target; - } else { - continue; - } - } - if ($item['uid_owner'] == $uidOwner) { - if ($itemType == 'file' || $itemType == 'folder') { - $meta = \OC\Files\Filesystem::getFileInfo($itemSource); - if ($item['file_source'] == $meta['fileid']) { - return $target; - } - } else if ($item['item_source'] == $itemSource) { - return $target; - } - } - } - if (!isset($exclude)) { - $exclude = array(); - } - // Find similar targets to improve backend's chances to generate a unqiue target - if ($userAndGroups) { - if ($column == 'file_target') { - $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share`' - .' WHERE `item_type` IN (\'file\', \'folder\')' - .' AND `share_type` IN (?,?,?)' - .' AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\')'); - $result = $checkTargets->execute(array(self::SHARE_TYPE_USER, self::SHARE_TYPE_GROUP, - self::$shareTypeGroupUserUnique)); - } else { - $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share`' - .' WHERE `item_type` = ? AND `share_type` IN (?,?,?)' - .' AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\')'); - $result = $checkTargets->execute(array($itemType, self::SHARE_TYPE_USER, - self::SHARE_TYPE_GROUP, self::$shareTypeGroupUserUnique)); - } - } else { - if ($column == 'file_target') { - $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share`' - .' WHERE `item_type` IN (\'file\', \'folder\')' - .' AND `share_type` = ? AND `share_with` = ?'); - $result = $checkTargets->execute(array(self::SHARE_TYPE_GROUP, $shareWith)); - } else { - $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share`' - .' WHERE `item_type` = ? AND `share_type` = ? AND `share_with` = ?'); - $result = $checkTargets->execute(array($itemType, self::SHARE_TYPE_GROUP, $shareWith)); - } - } - while ($row = $result->fetchRow()) { - $exclude[] = $row[$column]; - } - } else { - return $target; - } - } - } - $message = 'Sharing backend registered for '.$itemType.' did not generate a unique target for '.$itemSource; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - - /** - * Delete all reshares of an item - * @param int Id of item to delete - * @param bool If true, exclude the parent from the delete (optional) - * @param string The user that the parent was shared with (optinal) - */ - private static function delete($parent, $excludeParent = false, $uidOwner = null) { - $ids = array($parent); - $parents = array($parent); - while (!empty($parents)) { - $parents = "'".implode("','", $parents)."'"; - // Check the owner on the first search of reshares, useful for - // finding and deleting the reshares by a single user of a group share - if (count($ids) == 1 && isset($uidOwner)) { - $query = \OC_DB::prepare('SELECT `id`, `uid_owner`, `item_type`, `item_target`, `parent`' - .' FROM `*PREFIX*share` WHERE `parent` IN ('.$parents.') AND `uid_owner` = ?'); - $result = $query->execute(array($uidOwner)); - } else { - $query = \OC_DB::prepare('SELECT `id`, `item_type`, `item_target`, `parent`, `uid_owner`' - .' FROM `*PREFIX*share` WHERE `parent` IN ('.$parents.')'); - $result = $query->execute(); - } - // Reset parents array, only go through loop again if items are found - $parents = array(); - while ($item = $result->fetchRow()) { - // Search for a duplicate parent share, this occurs when an - // item is shared to the same user through a group and user or the - // same item is shared by different users - $userAndGroups = array_merge(array($item['uid_owner']), \OC_Group::getUserGroups($item['uid_owner'])); - $query = \OC_DB::prepare('SELECT `id`, `permissions` FROM `*PREFIX*share`' - .' WHERE `item_type` = ?' - .' AND `item_target` = ?' - .' AND `share_type` IN (?,?,?)' - .' AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\')' - .' AND `uid_owner` != ? AND `id` != ?'); - $duplicateParent = $query->execute(array($item['item_type'], $item['item_target'], - self::SHARE_TYPE_USER, self::SHARE_TYPE_GROUP, self::$shareTypeGroupUserUnique, - $item['uid_owner'], $item['parent']))->fetchRow(); - if ($duplicateParent) { - // Change the parent to the other item id if share permission is granted - if ($duplicateParent['permissions'] & PERMISSION_SHARE) { - $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `parent` = ? WHERE `id` = ?'); - $query->execute(array($duplicateParent['id'], $item['id'])); - continue; - } - } - $ids[] = $item['id']; - $parents[] = $item['id']; - } - } - if ($excludeParent) { - unset($ids[0]); - } - if (!empty($ids)) { - $ids = "'".implode("','", $ids)."'"; - $query = \OC_DB::prepare('DELETE FROM `*PREFIX*share` WHERE `id` IN ('.$ids.')'); - $query->execute(); - } + return \OC\Share\Share::getBackend($itemType); } /** * Delete all shares with type SHARE_TYPE_LINK */ public static function removeAllLinkShares() { - // Delete any link shares - $query = \OC_DB::prepare('SELECT `id` FROM `*PREFIX*share` WHERE `share_type` = ?'); - $result = $query->execute(array(self::SHARE_TYPE_LINK)); - while ($item = $result->fetchRow()) { - self::delete($item['id']); - } + return \OC\Share\Share::removeAllLinkShares(); } /** @@ -1849,16 +335,7 @@ class Share { * @param array arguments */ public static function post_deleteUser($arguments) { - // Delete any items shared with the deleted user - $query = \OC_DB::prepare('DELETE FROM `*PREFIX*share`' - .' WHERE `share_with` = ? AND `share_type` = ? OR `share_type` = ?'); - $result = $query->execute(array($arguments['uid'], self::SHARE_TYPE_USER, self::$shareTypeGroupUserUnique)); - // Delete any items the deleted user shared - $query = \OC_DB::prepare('SELECT `id` FROM `*PREFIX*share` WHERE `uid_owner` = ?'); - $result = $query->execute(array($arguments['uid'])); - while ($item = $result->fetchRow()) { - self::delete($item['id']); - } + return \OC\Share\Share::post_deleteUser($arguments); } /** @@ -1867,33 +344,7 @@ class Share { * @param array arguments */ public static function post_addToGroup($arguments) { - // Find the group shares and check if the user needs a unique target - $query = \OC_DB::prepare('SELECT * FROM `*PREFIX*share` WHERE `share_type` = ? AND `share_with` = ?'); - $result = $query->execute(array(self::SHARE_TYPE_GROUP, $arguments['gid'])); - $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`item_type`, `item_source`,' - .' `item_target`, `parent`, `share_type`, `share_with`, `uid_owner`, `permissions`,' - .' `stime`, `file_source`, `file_target`) VALUES (?,?,?,?,?,?,?,?,?,?,?)'); - while ($item = $result->fetchRow()) { - if ($item['item_type'] == 'file' || $item['item_type'] == 'file') { - $itemTarget = null; - } else { - $itemTarget = self::generateTarget($item['item_type'], $item['item_source'], self::SHARE_TYPE_USER, - $arguments['uid'], $item['uid_owner'], $item['item_target'], $item['id']); - } - if (isset($item['file_source'])) { - $fileTarget = self::generateTarget($item['item_type'], $item['item_source'], self::SHARE_TYPE_USER, - $arguments['uid'], $item['uid_owner'], $item['file_target'], $item['id']); - } else { - $fileTarget = null; - } - // Insert an extra row for the group share if the item or file target is unique for this user - if ($itemTarget != $item['item_target'] || $fileTarget != $item['file_target']) { - $query->execute(array($item['item_type'], $item['item_source'], $itemTarget, $item['id'], - self::$shareTypeGroupUserUnique, $arguments['uid'], $item['uid_owner'], $item['permissions'], - $item['stime'], $item['file_source'], $fileTarget)); - \OC_DB::insertid('*PREFIX*share'); - } - } + return \OC\Share\Share::post_addToGroup($arguments); } /** @@ -1901,19 +352,7 @@ class Share { * @param array arguments */ public static function post_removeFromGroup($arguments) { - // TODO Don't call if user deleted? - $sql = 'SELECT `id`, `share_type` FROM `*PREFIX*share`' - .' WHERE (`share_type` = ? AND `share_with` = ?) OR (`share_type` = ? AND `share_with` = ?)'; - $result = \OC_DB::executeAudited($sql, array(self::SHARE_TYPE_GROUP, $arguments['gid'], - self::$shareTypeGroupUserUnique, $arguments['uid'])); - while ($item = $result->fetchRow()) { - if ($item['share_type'] == self::SHARE_TYPE_GROUP) { - // Delete all reshares by this user of the group share - self::delete($item['id'], true, $arguments['uid']); - } else { - self::delete($item['id']); - } - } + return \OC\Share\Share::post_removeFromGroup($arguments); } /** @@ -1921,11 +360,7 @@ class Share { * @param array arguments */ public static function post_deleteGroup($arguments) { - $sql = 'SELECT `id` FROM `*PREFIX*share` WHERE `share_type` = ? AND `share_with` = ?'; - $result = \OC_DB::executeAudited($sql, array(self::SHARE_TYPE_GROUP, $arguments['gid'])); - while ($item = $result->fetchRow()) { - self::delete($item['id']); - } + return \OC\Share\Share::post_deleteGroup($arguments); } /** @@ -1935,26 +370,7 @@ class Share { * @return bool */ public static function checkPasswordProtectedShare(array $linkItem) { - if (!isset($linkItem['share_with'])) { - return true; - } - if (!isset($linkItem['share_type'])) { - return true; - } - if (!isset($linkItem['id'])) { - return true; - } - - if ($linkItem['share_type'] != \OCP\Share::SHARE_TYPE_LINK) { - return true; - } - - if ( \OC::$session->exists('public_link_authenticated') - && \OC::$session->get('public_link_authenticated') === $linkItem['id'] ) { - return true; - } - - return false; + return \OC\Share\Share::checkPasswordProtectedShare($linkItem); } } @@ -1967,9 +383,7 @@ interface Share_Backend { * Get the source of the item to be stored in the database * @param string Item source * @param string Owner of the item - * @param string $itemSource - * @param string $uidOwner - * @return boolean Source + * @return mixed|array|false Source * * Return an array if the item is file dependent, the array needs two keys: 'item' and 'file' * Return false if the item does not exist for the user @@ -1992,8 +406,8 @@ interface Share_Backend { /** * Converts the shared item sources back into the item in the specified format - * @param array $items Shared items - * @param integer $format + * @param array Shared items + * @param int Format * @return TODO * * The items array is a 3-dimensional array with the item_source as the @@ -2025,9 +439,6 @@ interface Share_Backend_File_Dependent extends Share_Backend { * Get the file path of the item * @param string Item source * @param string User that is the owner of shared item - * @param string $itemSource - * @param string $uidOwner - * @return boolean */ public function getFilePath($itemSource, $uidOwner); -- GitLab From b6026625781b2fda8ee1b23c3984be4a064adccc Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Tue, 18 Feb 2014 15:07:03 +0100 Subject: [PATCH 085/296] add a "helper" and a "hooks" class. Move constants needed by multiple classes to a "constants" class --- lib/base.php | 8 +- lib/private/share/constants.php | 44 +++++ lib/private/share/helper.php | 202 ++++++++++++++++++++ lib/private/share/hooks.php | 108 +++++++++++ lib/private/share/share.php | 320 ++------------------------------ lib/public/share.php | 50 +---- 6 files changed, 377 insertions(+), 355 deletions(-) create mode 100644 lib/private/share/constants.php create mode 100644 lib/private/share/helper.php create mode 100644 lib/private/share/hooks.php diff --git a/lib/base.php b/lib/base.php index 2515b9657cb..b3f6776e6df 100644 --- a/lib/base.php +++ b/lib/base.php @@ -659,10 +659,10 @@ class OC { */ public static function registerShareHooks() { if (\OC_Config::getValue('installed')) { - OC_Hook::connect('OC_User', 'post_deleteUser', 'OCP\Share', 'post_deleteUser'); - OC_Hook::connect('OC_User', 'post_addToGroup', 'OCP\Share', 'post_addToGroup'); - OC_Hook::connect('OC_User', 'post_removeFromGroup', 'OCP\Share', 'post_removeFromGroup'); - OC_Hook::connect('OC_User', 'post_deleteGroup', 'OCP\Share', 'post_deleteGroup'); + OC_Hook::connect('OC_User', 'post_deleteUser', 'OC\Share\Hooks', 'post_deleteUser'); + OC_Hook::connect('OC_User', 'post_addToGroup', 'OC\Share\Hooks', 'post_addToGroup'); + OC_Hook::connect('OC_User', 'post_removeFromGroup', 'OC\Share\Hooks', 'post_removeFromGroup'); + OC_Hook::connect('OC_User', 'post_deleteGroup', 'OC\Share\Hooks', 'post_deleteGroup'); } } diff --git a/lib/private/share/constants.php b/lib/private/share/constants.php new file mode 100644 index 00000000000..7e4223d10fa --- /dev/null +++ b/lib/private/share/constants.php @@ -0,0 +1,44 @@ + + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE + * License as published by the Free Software Foundation; either + * version 3 of the License, or any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU Affero General Public + * License along with this library. If not, see . + */ + +namespace OC\Share; + +class Constants { + + const SHARE_TYPE_USER = 0; + const SHARE_TYPE_GROUP = 1; + const SHARE_TYPE_LINK = 3; + const SHARE_TYPE_EMAIL = 4; + const SHARE_TYPE_CONTACT = 5; + const SHARE_TYPE_REMOTE = 6; + + const FORMAT_NONE = -1; + const FORMAT_STATUSES = -2; + const FORMAT_SOURCES = -3; + + const TOKEN_LENGTH = 32; // see db_structure.xml + + protected static $shareTypeUserAndGroups = -1; + protected static $shareTypeGroupUserUnique = 2; + protected static $backends = array(); + protected static $backendTypes = array(); + protected static $isResharingAllowed; +} diff --git a/lib/private/share/helper.php b/lib/private/share/helper.php new file mode 100644 index 00000000000..fde55667281 --- /dev/null +++ b/lib/private/share/helper.php @@ -0,0 +1,202 @@ + + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE + * License as published by the Free Software Foundation; either + * version 3 of the License, or any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU Affero General Public + * License along with this library. If not, see . + */ + +namespace OC\Share; + +class Helper extends \OC\Share\Constants { + + /** + * Generate a unique target for the item + * @param string Item type + * @param string Item source + * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK + * @param string User or group the item is being shared with + * @param string User that is the owner of shared item + * @param string The suggested target originating from a reshare (optional) + * @param int The id of the parent group share (optional) + * @return string Item target + */ + public static function generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner, + $suggestedTarget = null, $groupParent = null) { + $backend = \OC\Share\Share::getBackend($itemType); + if ($shareType == self::SHARE_TYPE_LINK) { + if (isset($suggestedTarget)) { + return $suggestedTarget; + } + return $backend->generateTarget($itemSource, false); + } else { + if ($itemType == 'file' || $itemType == 'folder') { + $column = 'file_target'; + $columnSource = 'file_source'; + } else { + $column = 'item_target'; + $columnSource = 'item_source'; + } + if ($shareType == self::SHARE_TYPE_USER) { + // Share with is a user, so set share type to user and groups + $shareType = self::$shareTypeUserAndGroups; + $userAndGroups = array_merge(array($shareWith), \OC_Group::getUserGroups($shareWith)); + } else { + $userAndGroups = false; + } + $exclude = null; + // Backend has 3 opportunities to generate a unique target + for ($i = 0; $i < 2; $i++) { + // Check if suggested target exists first + if ($i == 0 && isset($suggestedTarget)) { + $target = $suggestedTarget; + } else { + if ($shareType == self::SHARE_TYPE_GROUP) { + $target = $backend->generateTarget($itemSource, false, $exclude); + } else { + $target = $backend->generateTarget($itemSource, $shareWith, $exclude); + } + if (is_array($exclude) && in_array($target, $exclude)) { + break; + } + } + // Check if target already exists + $checkTarget = \OC\Share\Share::getItems($itemType, $target, $shareType, $shareWith); + if (!empty($checkTarget)) { + foreach ($checkTarget as $item) { + // Skip item if it is the group parent row + if (isset($groupParent) && $item['id'] == $groupParent) { + if (count($checkTarget) == 1) { + return $target; + } else { + continue; + } + } + if ($item['uid_owner'] == $uidOwner) { + if ($itemType == 'file' || $itemType == 'folder') { + $meta = \OC\Files\Filesystem::getFileInfo($itemSource); + if ($item['file_source'] == $meta['fileid']) { + return $target; + } + } else if ($item['item_source'] == $itemSource) { + return $target; + } + } + } + if (!isset($exclude)) { + $exclude = array(); + } + // Find similar targets to improve backend's chances to generate a unqiue target + if ($userAndGroups) { + if ($column == 'file_target') { + $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share`' + .' WHERE `item_type` IN (\'file\', \'folder\')' + .' AND `share_type` IN (?,?,?)' + .' AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\')'); + $result = $checkTargets->execute(array(self::SHARE_TYPE_USER, self::SHARE_TYPE_GROUP, + self::$shareTypeGroupUserUnique)); + } else { + $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share`' + .' WHERE `item_type` = ? AND `share_type` IN (?,?,?)' + .' AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\')'); + $result = $checkTargets->execute(array($itemType, self::SHARE_TYPE_USER, + self::SHARE_TYPE_GROUP, self::$shareTypeGroupUserUnique)); + } + } else { + if ($column == 'file_target') { + $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share`' + .' WHERE `item_type` IN (\'file\', \'folder\')' + .' AND `share_type` = ? AND `share_with` = ?'); + $result = $checkTargets->execute(array(self::SHARE_TYPE_GROUP, $shareWith)); + } else { + $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share`' + .' WHERE `item_type` = ? AND `share_type` = ? AND `share_with` = ?'); + $result = $checkTargets->execute(array($itemType, self::SHARE_TYPE_GROUP, $shareWith)); + } + } + while ($row = $result->fetchRow()) { + $exclude[] = $row[$column]; + } + } else { + return $target; + } + } + } + $message = 'Sharing backend registered for '.$itemType.' did not generate a unique target for '.$itemSource; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + + /** + * Delete all reshares of an item + * @param int Id of item to delete + * @param bool If true, exclude the parent from the delete (optional) + * @param string The user that the parent was shared with (optinal) + */ + public static function delete($parent, $excludeParent = false, $uidOwner = null) { + $ids = array($parent); + $parents = array($parent); + while (!empty($parents)) { + $parents = "'".implode("','", $parents)."'"; + // Check the owner on the first search of reshares, useful for + // finding and deleting the reshares by a single user of a group share + if (count($ids) == 1 && isset($uidOwner)) { + $query = \OC_DB::prepare('SELECT `id`, `uid_owner`, `item_type`, `item_target`, `parent`' + .' FROM `*PREFIX*share` WHERE `parent` IN ('.$parents.') AND `uid_owner` = ?'); + $result = $query->execute(array($uidOwner)); + } else { + $query = \OC_DB::prepare('SELECT `id`, `item_type`, `item_target`, `parent`, `uid_owner`' + .' FROM `*PREFIX*share` WHERE `parent` IN ('.$parents.')'); + $result = $query->execute(); + } + // Reset parents array, only go through loop again if items are found + $parents = array(); + while ($item = $result->fetchRow()) { + // Search for a duplicate parent share, this occurs when an + // item is shared to the same user through a group and user or the + // same item is shared by different users + $userAndGroups = array_merge(array($item['uid_owner']), \OC_Group::getUserGroups($item['uid_owner'])); + $query = \OC_DB::prepare('SELECT `id`, `permissions` FROM `*PREFIX*share`' + .' WHERE `item_type` = ?' + .' AND `item_target` = ?' + .' AND `share_type` IN (?,?,?)' + .' AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\')' + .' AND `uid_owner` != ? AND `id` != ?'); + $duplicateParent = $query->execute(array($item['item_type'], $item['item_target'], + self::SHARE_TYPE_USER, self::SHARE_TYPE_GROUP, self::$shareTypeGroupUserUnique, + $item['uid_owner'], $item['parent']))->fetchRow(); + if ($duplicateParent) { + // Change the parent to the other item id if share permission is granted + if ($duplicateParent['permissions'] & \OCP\PERMISSION_SHARE) { + $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `parent` = ? WHERE `id` = ?'); + $query->execute(array($duplicateParent['id'], $item['id'])); + continue; + } + } + $ids[] = $item['id']; + $parents[] = $item['id']; + } + } + if ($excludeParent) { + unset($ids[0]); + } + if (!empty($ids)) { + $ids = "'".implode("','", $ids)."'"; + $query = \OC_DB::prepare('DELETE FROM `*PREFIX*share` WHERE `id` IN ('.$ids.')'); + $query->execute(); + } + } +} diff --git a/lib/private/share/hooks.php b/lib/private/share/hooks.php new file mode 100644 index 00000000000..a33c71eedd2 --- /dev/null +++ b/lib/private/share/hooks.php @@ -0,0 +1,108 @@ + + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE + * License as published by the Free Software Foundation; either + * version 3 of the License, or any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU Affero General Public + * License along with this library. If not, see . + */ + +namespace OC\Share; + +class Hooks extends \OC\Share\Constants { + /** + * Function that is called after a user is deleted. Cleans up the shares of that user. + * @param array arguments + */ + public static function post_deleteUser($arguments) { + // Delete any items shared with the deleted user + $query = \OC_DB::prepare('DELETE FROM `*PREFIX*share`' + .' WHERE `share_with` = ? AND `share_type` = ? OR `share_type` = ?'); + $result = $query->execute(array($arguments['uid'], self::SHARE_TYPE_USER, self::$shareTypeGroupUserUnique)); + // Delete any items the deleted user shared + $query = \OC_DB::prepare('SELECT `id` FROM `*PREFIX*share` WHERE `uid_owner` = ?'); + $result = $query->execute(array($arguments['uid'])); + while ($item = $result->fetchRow()) { + Helper::delete($item['id']); + } + } + + /** + * Function that is called after a user is added to a group. + * TODO what does it do? + * @param array arguments + */ + public static function post_addToGroup($arguments) { + // Find the group shares and check if the user needs a unique target + $query = \OC_DB::prepare('SELECT * FROM `*PREFIX*share` WHERE `share_type` = ? AND `share_with` = ?'); + $result = $query->execute(array(self::SHARE_TYPE_GROUP, $arguments['gid'])); + $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`item_type`, `item_source`,' + .' `item_target`, `parent`, `share_type`, `share_with`, `uid_owner`, `permissions`,' + .' `stime`, `file_source`, `file_target`) VALUES (?,?,?,?,?,?,?,?,?,?,?)'); + while ($item = $result->fetchRow()) { + if ($item['item_type'] == 'file' || $item['item_type'] == 'file') { + $itemTarget = null; + } else { + $itemTarget = Helper::generateTarget($item['item_type'], $item['item_source'], self::SHARE_TYPE_USER, + $arguments['uid'], $item['uid_owner'], $item['item_target'], $item['id']); + } + if (isset($item['file_source'])) { + $fileTarget = Helper::generateTarget($item['item_type'], $item['item_source'], self::SHARE_TYPE_USER, + $arguments['uid'], $item['uid_owner'], $item['file_target'], $item['id']); + } else { + $fileTarget = null; + } + // Insert an extra row for the group share if the item or file target is unique for this user + if ($itemTarget != $item['item_target'] || $fileTarget != $item['file_target']) { + $query->execute(array($item['item_type'], $item['item_source'], $itemTarget, $item['id'], + self::$shareTypeGroupUserUnique, $arguments['uid'], $item['uid_owner'], $item['permissions'], + $item['stime'], $item['file_source'], $fileTarget)); + \OC_DB::insertid('*PREFIX*share'); + } + } + } + + /** + * Function that is called after a user is removed from a group. Shares are cleaned up. + * @param array arguments + */ + public static function post_removeFromGroup($arguments) { + $sql = 'SELECT `id`, `share_type` FROM `*PREFIX*share`' + .' WHERE (`share_type` = ? AND `share_with` = ?) OR (`share_type` = ? AND `share_with` = ?)'; + $result = \OC_DB::executeAudited($sql, array(self::SHARE_TYPE_GROUP, $arguments['gid'], + self::$shareTypeGroupUserUnique, $arguments['uid'])); + while ($item = $result->fetchRow()) { + if ($item['share_type'] == self::SHARE_TYPE_GROUP) { + // Delete all reshares by this user of the group share + Helper::delete($item['id'], true, $arguments['uid']); + } else { + Helper::delete($item['id']); + } + } + } + + /** + * Function that is called after a group is removed. Cleans up the shares to that group. + * @param array arguments + */ + public static function post_deleteGroup($arguments) { + $sql = 'SELECT `id` FROM `*PREFIX*share` WHERE `share_type` = ? AND `share_with` = ?'; + $result = \OC_DB::executeAudited($sql, array(self::SHARE_TYPE_GROUP, $arguments['gid'])); + while ($item = $result->fetchRow()) { + Helper::delete($item['id']); + } + } + +} diff --git a/lib/private/share/share.php b/lib/private/share/share.php index b44d362672b..ef0ed257c5d 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -29,14 +29,7 @@ namespace OC\Share; * It provides the following hooks: * - post_shared */ -class Share { - - const SHARE_TYPE_USER = 0; - const SHARE_TYPE_GROUP = 1; - const SHARE_TYPE_LINK = 3; - const SHARE_TYPE_EMAIL = 4; - const SHARE_TYPE_CONTACT = 5; - const SHARE_TYPE_REMOTE = 6; +class Share extends \OC\Share\Constants { /** CRUDS permissions (Create, Read, Update, Delete, Share) using a bitmask * Construct permissions for share() and setPermissions with Or (|) e.g. @@ -53,18 +46,6 @@ class Share { * @see lib/public/constants.php */ - const FORMAT_NONE = -1; - const FORMAT_STATUSES = -2; - const FORMAT_SOURCES = -3; - - const TOKEN_LENGTH = 32; // see db_structure.xml - - private static $shareTypeUserAndGroups = -1; - private static $shareTypeGroupUserUnique = 2; - private static $backends = array(); - private static $backendTypes = array(); - private static $isResharingAllowed; - /** * Register a sharing backend class that implements OCP\Share_Backend for an item type * @param string Item type @@ -540,7 +521,7 @@ class Share { $oldToken = $checkExists['token']; $oldPermissions = $checkExists['permissions']; //delete the old share - self::delete($checkExists['id']); + Helper::delete($checkExists['id']); } // Generate hash of password - same method as user passwords @@ -656,14 +637,14 @@ class Share { $item['file_target'])); \OC_DB::insertid('*PREFIX*share'); // Delete all reshares by this user of the group share - self::delete($item['id'], true, \OC_User::getUser()); + Helper::delete($item['id'], true, \OC_User::getUser()); } else if ((int)$item['share_type'] === self::$shareTypeGroupUserUnique) { // Set permission to 0 to prevent it from showing up for the user $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `permissions` = ? WHERE `id` = ?'); $query->execute(array(0, $item['id'])); - self::delete($item['id'], true); + Helper::delete($item['id'], true); } else { - self::delete($item['id']); + Helper::delete($item['id']); } return true; } @@ -732,7 +713,7 @@ class Share { if ($item['permissions'] & ~$permissions) { // If share permission is removed all reshares must be deleted if (($item['permissions'] & \OCP\PERMISSION_SHARE) && (~$permissions & \OCP\PERMISSION_SHARE)) { - self::delete($item['id'], true); + Helper::delete($item['id'], true); } else { $ids = array(); $parents = array($item['id']); @@ -839,7 +820,7 @@ class Share { \OC_Hook::emit('OCP\Share', 'pre_unshare', $hookParams + array( 'fileSource' => $item['file_source'], )); - self::delete($item['id']); + Helper::delete($item['id']); \OC_Hook::emit('OCP\Share', 'post_unshare', $hookParams); } @@ -931,7 +912,7 @@ class Share { * See public functions getItem(s)... for parameter usage * */ - private static function getItems($itemType, $item = null, $shareType = null, $shareWith = null, + public static function getItems($itemType, $item = null, $shareType = null, $shareWith = null, $uidOwner = null, $format = self::FORMAT_NONE, $parameters = null, $limit = -1, $includeCollections = false, $itemShareWithBySource = false, $checkExpireDate = true) { if (!self::isEnabled()) { @@ -1417,7 +1398,7 @@ class Share { .' `file_target`, `token`) VALUES (?,?,?,?,?,?,?,?,?,?,?,?)'); // Share with a group if ($shareType == self::SHARE_TYPE_GROUP) { - $groupItemTarget = self::generateTarget($itemType, $itemSource, $shareType, $shareWith['group'], + $groupItemTarget = Helper::generateTarget($itemType, $itemSource, $shareType, $shareWith['group'], $uidOwner, $suggestedItemTarget); $run = true; $error = ''; @@ -1442,7 +1423,7 @@ class Share { if (isset($fileSource)) { if ($parentFolder) { if ($parentFolder === true) { - $groupFileTarget = self::generateTarget('file', $filePath, $shareType, + $groupFileTarget = Helper::generateTarget('file', $filePath, $shareType, $shareWith['group'], $uidOwner, $suggestedFileTarget); // Set group default file target for future use $parentFolders[0]['folder'] = $groupFileTarget; @@ -1452,7 +1433,7 @@ class Share { $parent = $parentFolder[0]['id']; } } else { - $groupFileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith['group'], + $groupFileTarget = Helper::generateTarget('file', $filePath, $shareType, $shareWith['group'], $uidOwner, $suggestedFileTarget); } } else { @@ -1464,12 +1445,12 @@ class Share { $parent = \OC_DB::insertid('*PREFIX*share'); // Loop through all users of this group in case we need to add an extra row foreach ($shareWith['users'] as $uid) { - $itemTarget = self::generateTarget($itemType, $itemSource, self::SHARE_TYPE_USER, $uid, + $itemTarget = Helper::generateTarget($itemType, $itemSource, self::SHARE_TYPE_USER, $uid, $uidOwner, $suggestedItemTarget, $parent); if (isset($fileSource)) { if ($parentFolder) { if ($parentFolder === true) { - $fileTarget = self::generateTarget('file', $filePath, self::SHARE_TYPE_USER, $uid, + $fileTarget = Helper::generateTarget('file', $filePath, self::SHARE_TYPE_USER, $uid, $uidOwner, $suggestedFileTarget, $parent); if ($fileTarget != $groupFileTarget) { $parentFolders[$uid]['folder'] = $fileTarget; @@ -1479,7 +1460,7 @@ class Share { $parent = $parentFolder[$uid]['id']; } } else { - $fileTarget = self::generateTarget('file', $filePath, self::SHARE_TYPE_USER, + $fileTarget = Helper::generateTarget('file', $filePath, self::SHARE_TYPE_USER, $uid, $uidOwner, $suggestedFileTarget, $parent); } } else { @@ -1513,7 +1494,7 @@ class Share { return $parentFolders; } } else { - $itemTarget = self::generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner, + $itemTarget = Helper::generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $suggestedItemTarget); $run = true; $error = ''; @@ -1538,7 +1519,7 @@ class Share { if (isset($fileSource)) { if ($parentFolder) { if ($parentFolder === true) { - $fileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith, + $fileTarget = Helper::generateTarget('file', $filePath, $shareType, $shareWith, $uidOwner, $suggestedFileTarget); $parentFolders['folder'] = $fileTarget; } else { @@ -1546,7 +1527,7 @@ class Share { $parent = $parentFolder['id']; } } else { - $fileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith, $uidOwner, + $fileTarget = Helper::generateTarget('file', $filePath, $shareType, $shareWith, $uidOwner, $suggestedFileTarget); } } else { @@ -1578,183 +1559,6 @@ class Share { return true; } - /** - * Generate a unique target for the item - * @param string Item type - * @param string Item source - * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK - * @param string User or group the item is being shared with - * @param string User that is the owner of shared item - * @param string The suggested target originating from a reshare (optional) - * @param int The id of the parent group share (optional) - * @return string Item target - */ - private static function generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner, - $suggestedTarget = null, $groupParent = null) { - $backend = self::getBackend($itemType); - if ($shareType == self::SHARE_TYPE_LINK) { - if (isset($suggestedTarget)) { - return $suggestedTarget; - } - return $backend->generateTarget($itemSource, false); - } else { - if ($itemType == 'file' || $itemType == 'folder') { - $column = 'file_target'; - $columnSource = 'file_source'; - } else { - $column = 'item_target'; - $columnSource = 'item_source'; - } - if ($shareType == self::SHARE_TYPE_USER) { - // Share with is a user, so set share type to user and groups - $shareType = self::$shareTypeUserAndGroups; - $userAndGroups = array_merge(array($shareWith), \OC_Group::getUserGroups($shareWith)); - } else { - $userAndGroups = false; - } - $exclude = null; - // Backend has 3 opportunities to generate a unique target - for ($i = 0; $i < 2; $i++) { - // Check if suggested target exists first - if ($i == 0 && isset($suggestedTarget)) { - $target = $suggestedTarget; - } else { - if ($shareType == self::SHARE_TYPE_GROUP) { - $target = $backend->generateTarget($itemSource, false, $exclude); - } else { - $target = $backend->generateTarget($itemSource, $shareWith, $exclude); - } - if (is_array($exclude) && in_array($target, $exclude)) { - break; - } - } - // Check if target already exists - $checkTarget = self::getItems($itemType, $target, $shareType, $shareWith); - if (!empty($checkTarget)) { - foreach ($checkTarget as $item) { - // Skip item if it is the group parent row - if (isset($groupParent) && $item['id'] == $groupParent) { - if (count($checkTarget) == 1) { - return $target; - } else { - continue; - } - } - if ($item['uid_owner'] == $uidOwner) { - if ($itemType == 'file' || $itemType == 'folder') { - $meta = \OC\Files\Filesystem::getFileInfo($itemSource); - if ($item['file_source'] == $meta['fileid']) { - return $target; - } - } else if ($item['item_source'] == $itemSource) { - return $target; - } - } - } - if (!isset($exclude)) { - $exclude = array(); - } - // Find similar targets to improve backend's chances to generate a unqiue target - if ($userAndGroups) { - if ($column == 'file_target') { - $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share`' - .' WHERE `item_type` IN (\'file\', \'folder\')' - .' AND `share_type` IN (?,?,?)' - .' AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\')'); - $result = $checkTargets->execute(array(self::SHARE_TYPE_USER, self::SHARE_TYPE_GROUP, - self::$shareTypeGroupUserUnique)); - } else { - $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share`' - .' WHERE `item_type` = ? AND `share_type` IN (?,?,?)' - .' AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\')'); - $result = $checkTargets->execute(array($itemType, self::SHARE_TYPE_USER, - self::SHARE_TYPE_GROUP, self::$shareTypeGroupUserUnique)); - } - } else { - if ($column == 'file_target') { - $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share`' - .' WHERE `item_type` IN (\'file\', \'folder\')' - .' AND `share_type` = ? AND `share_with` = ?'); - $result = $checkTargets->execute(array(self::SHARE_TYPE_GROUP, $shareWith)); - } else { - $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share`' - .' WHERE `item_type` = ? AND `share_type` = ? AND `share_with` = ?'); - $result = $checkTargets->execute(array($itemType, self::SHARE_TYPE_GROUP, $shareWith)); - } - } - while ($row = $result->fetchRow()) { - $exclude[] = $row[$column]; - } - } else { - return $target; - } - } - } - $message = 'Sharing backend registered for '.$itemType.' did not generate a unique target for '.$itemSource; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - - /** - * Delete all reshares of an item - * @param int Id of item to delete - * @param bool If true, exclude the parent from the delete (optional) - * @param string The user that the parent was shared with (optinal) - */ - private static function delete($parent, $excludeParent = false, $uidOwner = null) { - $ids = array($parent); - $parents = array($parent); - while (!empty($parents)) { - $parents = "'".implode("','", $parents)."'"; - // Check the owner on the first search of reshares, useful for - // finding and deleting the reshares by a single user of a group share - if (count($ids) == 1 && isset($uidOwner)) { - $query = \OC_DB::prepare('SELECT `id`, `uid_owner`, `item_type`, `item_target`, `parent`' - .' FROM `*PREFIX*share` WHERE `parent` IN ('.$parents.') AND `uid_owner` = ?'); - $result = $query->execute(array($uidOwner)); - } else { - $query = \OC_DB::prepare('SELECT `id`, `item_type`, `item_target`, `parent`, `uid_owner`' - .' FROM `*PREFIX*share` WHERE `parent` IN ('.$parents.')'); - $result = $query->execute(); - } - // Reset parents array, only go through loop again if items are found - $parents = array(); - while ($item = $result->fetchRow()) { - // Search for a duplicate parent share, this occurs when an - // item is shared to the same user through a group and user or the - // same item is shared by different users - $userAndGroups = array_merge(array($item['uid_owner']), \OC_Group::getUserGroups($item['uid_owner'])); - $query = \OC_DB::prepare('SELECT `id`, `permissions` FROM `*PREFIX*share`' - .' WHERE `item_type` = ?' - .' AND `item_target` = ?' - .' AND `share_type` IN (?,?,?)' - .' AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\')' - .' AND `uid_owner` != ? AND `id` != ?'); - $duplicateParent = $query->execute(array($item['item_type'], $item['item_target'], - self::SHARE_TYPE_USER, self::SHARE_TYPE_GROUP, self::$shareTypeGroupUserUnique, - $item['uid_owner'], $item['parent']))->fetchRow(); - if ($duplicateParent) { - // Change the parent to the other item id if share permission is granted - if ($duplicateParent['permissions'] & \OCP\PERMISSION_SHARE) { - $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `parent` = ? WHERE `id` = ?'); - $query->execute(array($duplicateParent['id'], $item['id'])); - continue; - } - } - $ids[] = $item['id']; - $parents[] = $item['id']; - } - } - if ($excludeParent) { - unset($ids[0]); - } - if (!empty($ids)) { - $ids = "'".implode("','", $ids)."'"; - $query = \OC_DB::prepare('DELETE FROM `*PREFIX*share` WHERE `id` IN ('.$ids.')'); - $query->execute(); - } - } - /** * Delete all shares with type SHARE_TYPE_LINK */ @@ -1763,95 +1567,7 @@ class Share { $query = \OC_DB::prepare('SELECT `id` FROM `*PREFIX*share` WHERE `share_type` = ?'); $result = $query->execute(array(self::SHARE_TYPE_LINK)); while ($item = $result->fetchRow()) { - self::delete($item['id']); - } - } - - /** - * Hook Listeners - */ - - /** - * Function that is called after a user is deleted. Cleans up the shares of that user. - * @param array arguments - */ - public static function post_deleteUser($arguments) { - // Delete any items shared with the deleted user - $query = \OC_DB::prepare('DELETE FROM `*PREFIX*share`' - .' WHERE `share_with` = ? AND `share_type` = ? OR `share_type` = ?'); - $result = $query->execute(array($arguments['uid'], self::SHARE_TYPE_USER, self::$shareTypeGroupUserUnique)); - // Delete any items the deleted user shared - $query = \OC_DB::prepare('SELECT `id` FROM `*PREFIX*share` WHERE `uid_owner` = ?'); - $result = $query->execute(array($arguments['uid'])); - while ($item = $result->fetchRow()) { - self::delete($item['id']); - } - } - - /** - * Function that is called after a user is added to a group. - * TODO what does it do? - * @param array arguments - */ - public static function post_addToGroup($arguments) { - // Find the group shares and check if the user needs a unique target - $query = \OC_DB::prepare('SELECT * FROM `*PREFIX*share` WHERE `share_type` = ? AND `share_with` = ?'); - $result = $query->execute(array(self::SHARE_TYPE_GROUP, $arguments['gid'])); - $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`item_type`, `item_source`,' - .' `item_target`, `parent`, `share_type`, `share_with`, `uid_owner`, `permissions`,' - .' `stime`, `file_source`, `file_target`) VALUES (?,?,?,?,?,?,?,?,?,?,?)'); - while ($item = $result->fetchRow()) { - if ($item['item_type'] == 'file' || $item['item_type'] == 'file') { - $itemTarget = null; - } else { - $itemTarget = self::generateTarget($item['item_type'], $item['item_source'], self::SHARE_TYPE_USER, - $arguments['uid'], $item['uid_owner'], $item['item_target'], $item['id']); - } - if (isset($item['file_source'])) { - $fileTarget = self::generateTarget($item['item_type'], $item['item_source'], self::SHARE_TYPE_USER, - $arguments['uid'], $item['uid_owner'], $item['file_target'], $item['id']); - } else { - $fileTarget = null; - } - // Insert an extra row for the group share if the item or file target is unique for this user - if ($itemTarget != $item['item_target'] || $fileTarget != $item['file_target']) { - $query->execute(array($item['item_type'], $item['item_source'], $itemTarget, $item['id'], - self::$shareTypeGroupUserUnique, $arguments['uid'], $item['uid_owner'], $item['permissions'], - $item['stime'], $item['file_source'], $fileTarget)); - \OC_DB::insertid('*PREFIX*share'); - } - } - } - - /** - * Function that is called after a user is removed from a group. Shares are cleaned up. - * @param array arguments - */ - public static function post_removeFromGroup($arguments) { - // TODO Don't call if user deleted? - $sql = 'SELECT `id`, `share_type` FROM `*PREFIX*share`' - .' WHERE (`share_type` = ? AND `share_with` = ?) OR (`share_type` = ? AND `share_with` = ?)'; - $result = \OC_DB::executeAudited($sql, array(self::SHARE_TYPE_GROUP, $arguments['gid'], - self::$shareTypeGroupUserUnique, $arguments['uid'])); - while ($item = $result->fetchRow()) { - if ($item['share_type'] == self::SHARE_TYPE_GROUP) { - // Delete all reshares by this user of the group share - self::delete($item['id'], true, $arguments['uid']); - } else { - self::delete($item['id']); - } - } - } - - /** - * Function that is called after a group is removed. Cleans up the shares to that group. - * @param array arguments - */ - public static function post_deleteGroup($arguments) { - $sql = 'SELECT `id` FROM `*PREFIX*share` WHERE `share_type` = ? AND `share_with` = ?'; - $result = \OC_DB::executeAudited($sql, array(self::SHARE_TYPE_GROUP, $arguments['gid'])); - while ($item = $result->fetchRow()) { - self::delete($item['id']); + Helper::delete($item['id']); } } diff --git a/lib/public/share.php b/lib/public/share.php index adc02dfe8c4..fcc61b2f4fd 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -37,18 +37,7 @@ namespace OCP; * It provides the following hooks: * - post_shared */ -class Share { - - const FORMAT_NONE = -1; - const FORMAT_STATUSES = -2; - const FORMAT_SOURCES = -3; - - const SHARE_TYPE_USER = 0; - const SHARE_TYPE_GROUP = 1; - const SHARE_TYPE_LINK = 3; - const SHARE_TYPE_EMAIL = 4; - const SHARE_TYPE_CONTACT = 5; - const SHARE_TYPE_REMOTE = 6; +class Share extends \OC\Share\Constants { /** * Register a sharing backend class that implements OCP\Share_Backend for an item type @@ -326,43 +315,6 @@ class Share { return \OC\Share\Share::removeAllLinkShares(); } - /** - * Hook Listeners - */ - - /** - * Function that is called after a user is deleted. Cleans up the shares of that user. - * @param array arguments - */ - public static function post_deleteUser($arguments) { - return \OC\Share\Share::post_deleteUser($arguments); - } - - /** - * Function that is called after a user is added to a group. - * TODO what does it do? - * @param array arguments - */ - public static function post_addToGroup($arguments) { - return \OC\Share\Share::post_addToGroup($arguments); - } - - /** - * Function that is called after a user is removed from a group. Shares are cleaned up. - * @param array arguments - */ - public static function post_removeFromGroup($arguments) { - return \OC\Share\Share::post_removeFromGroup($arguments); - } - - /** - * Function that is called after a group is removed. Cleans up the shares to that group. - * @param array arguments - */ - public static function post_deleteGroup($arguments) { - return \OC\Share\Share::post_deleteGroup($arguments); - } - /** * In case a password protected link is not yet authenticated this function will return false * -- GitLab From 6afd496d9bf64cdc911bab6393d24240db3df04d Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Tue, 18 Feb 2014 16:32:49 +0100 Subject: [PATCH 086/296] remove prepFileTarget() seems that it is no longer in use --- lib/private/share/share.php | 18 ------------------ lib/public/share.php | 9 --------- 2 files changed, 27 deletions(-) diff --git a/lib/private/share/share.php b/lib/private/share/share.php index ef0ed257c5d..c819f6bf54c 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -89,24 +89,6 @@ class Share extends \OC\Share\Constants { return false; } - /** - * Prepare a path to be passed to DB as file_target - * @param string $path path - * @return string Prepared path - */ - public static function prepFileTarget( $path ) { - - // Paths in DB are stored with leading slashes, so add one if necessary - if ( substr( $path, 0, 1 ) !== '/' ) { - - $path = '/' . $path; - - } - - return $path; - - } - /** * Find which users can access a shared item * @param $path to the file diff --git a/lib/public/share.php b/lib/public/share.php index fcc61b2f4fd..a08134b3837 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -61,15 +61,6 @@ class Share extends \OC\Share\Constants { return \OC\Share\Share::isEnabled(); } - /** - * Prepare a path to be passed to DB as file_target - * @param string $path path - * @return string Prepared path - */ - public static function prepFileTarget($path) { - return \OC\Share\Share::prepFileTarget($path); - } - /** * Find which users can access a shared item * @param $path to the file -- GitLab From 6607f7cb5e170568129ddd3ea0a7839a7f6229b5 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Mon, 3 Mar 2014 17:06:45 +0100 Subject: [PATCH 087/296] seperate creation of select statement --- lib/private/share/share.php | 82 ++++++++++++++++++++----------------- 1 file changed, 44 insertions(+), 38 deletions(-) diff --git a/lib/private/share/share.php b/lib/private/share/share.php index c819f6bf54c..d743cfccb71 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -1032,44 +1032,7 @@ class Share extends \OC\Share\Constants { } else { $queryLimit = null; } - // TODO Optimize selects - 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`, `share_with`, `mail_send`, `uid_owner`'; - } else { - $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`, `uid_owner`'; - } else { - $select = '`id`, `item_type`, `item_source`, `parent`, `share_type`, `share_with`, `permissions`,' - .' `stime`, `file_source`, `expiration`, `token`, `mail_send`, `uid_owner`'; - } - } else { - if ($fileDependent) { - if (($itemType == 'file' || $itemType == 'folder') - && $format == \OC_Share_Backend_File::FORMAT_GET_FOLDER_CONTENTS - || $format == \OC_Share_Backend_File::FORMAT_FILE_APP_ROOT - ) { - $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `*PREFIX*share`.`parent`, `uid_owner`, ' - .'`share_type`, `share_with`, `file_source`, `path`, `file_target`, ' - .'`permissions`, `expiration`, `storage`, `*PREFIX*filecache`.`parent` as `file_parent`, ' - .'`name`, `mtime`, `mimetype`, `mimepart`, `size`, `unencrypted_size`, `encrypted`, `etag`, `mail_send`'; - } else { - $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `item_target`, - `*PREFIX*share`.`parent`, `share_type`, `share_with`, `uid_owner`, - `file_source`, `path`, `file_target`, `permissions`, `stime`, `expiration`, `token`, `storage`, `mail_send`'; - } - } else { - $select = '*'; - } - } - } + $select = self::createSelectStatement($format, $fileDependent, $uidOwner); $root = strlen($root); $query = \OC_DB::prepare('SELECT '.$select.' FROM `*PREFIX*share` '.$where, $queryLimit); $result = $query->execute($queryArgs); @@ -1581,4 +1544,47 @@ class Share extends \OC\Share\Constants { return false; } + + /** + * @breif construct select statement + * @param int $format + * @param bool $fileDependent ist it a file/folder share or a generla share + * @param string $uidOwner + * @return string select statement + */ + private static function createSelectStatement($format, $fileDependent, $uidOwner = null) { + $select = '*'; + if ($format == self::FORMAT_STATUSES) { + if ($fileDependent) { + $select = '`*PREFIX*share`.`id`, `*PREFIX*share`.`parent`, `share_type`, `path`, `share_with`, `uid_owner`'; + } else { + $select = '`id`, `parent`, `share_type`, `share_with`, `uid_owner`'; + } + } else { + if (isset($uidOwner)) { + if ($fileDependent) { + $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`, `uid_owner`'; + } else { + $select = '`id`, `item_type`, `item_source`, `parent`, `share_type`, `share_with`, `permissions`,' + . ' `stime`, `file_source`, `expiration`, `token`, `mail_send`, `uid_owner`'; + } + } else { + if ($fileDependent) { + if ($format == \OC_Share_Backend_File::FORMAT_GET_FOLDER_CONTENTS || $format == \OC_Share_Backend_File::FORMAT_FILE_APP_ROOT) { + $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `*PREFIX*share`.`parent`, `uid_owner`, ' + . '`share_type`, `share_with`, `file_source`, `path`, `file_target`, ' + . '`permissions`, `expiration`, `storage`, `*PREFIX*filecache`.`parent` as `file_parent`, ' + . '`name`, `mtime`, `mimetype`, `mimepart`, `size`, `unencrypted_size`, `encrypted`, `etag`, `mail_send`'; + } else { + $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `item_target`, + `*PREFIX*share`.`parent`, `share_type`, `share_with`, `uid_owner`, + `file_source`, `path`, `file_target`, `permissions`, `stime`, `expiration`, `token`, `storage`, `mail_send`'; + } + } + } + } + return $select; + } } -- GitLab From 3a459db3585f02d02c492dc3ce836e2fea1c8cb2 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Mon, 3 Mar 2014 17:20:09 +0100 Subject: [PATCH 088/296] seperate transformDBResults --- lib/private/share/share.php | 57 +++++++++++++++++++++---------------- 1 file changed, 33 insertions(+), 24 deletions(-) diff --git a/lib/private/share/share.php b/lib/private/share/share.php index d743cfccb71..45ed4c70458 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -1046,30 +1046,7 @@ class Share extends \OC\Share\Constants { $switchedItems = array(); $mounts = array(); while ($row = $result->fetchRow()) { - if (isset($row['id'])) { - $row['id']=(int)$row['id']; - } - if (isset($row['share_type'])) { - $row['share_type']=(int)$row['share_type']; - } - if (isset($row['parent'])) { - $row['parent']=(int)$row['parent']; - } - if (isset($row['file_parent'])) { - $row['file_parent']=(int)$row['file_parent']; - } - if (isset($row['file_source'])) { - $row['file_source']=(int)$row['file_source']; - } - if (isset($row['permissions'])) { - $row['permissions']=(int)$row['permissions']; - } - if (isset($row['storage'])) { - $row['storage']=(int)$row['storage']; - } - if (isset($row['stime'])) { - $row['stime']=(int)$row['stime']; - } + self::transformDBResults($row); // Filter out duplicate group shares for users with unique targets if ($row['share_type'] == self::$shareTypeGroupUserUnique && isset($items[$row['parent']])) { $row['share_type'] = self::SHARE_TYPE_GROUP; @@ -1587,4 +1564,36 @@ class Share extends \OC\Share\Constants { } return $select; } + + + /** + * @brief transform db results + * @param array $row result + */ + private static function transformDBResults(&$row) { + if (isset($row['id'])) { + $row['id'] = (int) $row['id']; + } + if (isset($row['share_type'])) { + $row['share_type'] = (int) $row['share_type']; + } + if (isset($row['parent'])) { + $row['parent'] = (int) $row['parent']; + } + if (isset($row['file_parent'])) { + $row['file_parent'] = (int) $row['file_parent']; + } + if (isset($row['file_source'])) { + $row['file_source'] = (int) $row['file_source']; + } + if (isset($row['permissions'])) { + $row['permissions'] = (int) $row['permissions']; + } + if (isset($row['storage'])) { + $row['storage'] = (int) $row['storage']; + } + if (isset($row['stime'])) { + $row['stime'] = (int) $row['stime']; + } + } } -- GitLab From 078fafdc5ace1981a9e5582ac66cc087a1277aed Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Mon, 3 Mar 2014 17:24:31 +0100 Subject: [PATCH 089/296] use variable --- lib/private/share/share.php | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/lib/private/share/share.php b/lib/private/share/share.php index 45ed4c70458..48dd3cd68ea 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -973,13 +973,13 @@ class Share extends \OC\Share\Constants { $where .= ' AND `share_type` != ?'; $queryArgs[] = self::$shareTypeGroupUserUnique; } - if ($itemType == 'file' || $itemType == 'folder') { + if ($fileDependent) { $column = 'file_source'; } else { $column = 'item_source'; } } else { - if ($itemType == 'file' || $itemType == 'folder') { + if ($fileDependent) { $column = 'file_target'; } else { $column = 'item_target'; @@ -994,7 +994,7 @@ class Share extends \OC\Share\Constants { // If looking for own shared items, check item_source else check item_target if (isset($uidOwner) || $itemShareWithBySource) { // If item type is a file, file source needs to be checked in case the item was converted - if ($itemType == 'file' || $itemType == 'folder') { + if ($fileDependent) { $where .= ' `file_source` = ?'; $column = 'file_source'; } else { @@ -1002,7 +1002,7 @@ class Share extends \OC\Share\Constants { $column = 'item_source'; } } else { - if ($itemType == 'file' || $itemType == 'folder') { + if ($fileDependent) { $where .= ' `file_target` = ?'; $item = \OC\Files\Filesystem::normalizePath($item); } else { @@ -1225,7 +1225,7 @@ class Share extends \OC\Share\Constants { } else if (!isset($statuses[$item[$column]])) { $statuses[$item[$column]]['link'] = false; } - if ($itemType == 'file' || $itemType == 'folder') { + if ($fileDependent) { $statuses[$item[$column]]['path'] = $item['path']; } } @@ -1296,7 +1296,6 @@ class Share extends \OC\Share\Constants { \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); throw new \Exception($message); } - $parent = null; if ($backend instanceof \OCP\Share_Backend_File_Dependent) { $filePath = $backend->getFilePath($itemSource, $uidOwner); if ($itemType == 'file' || $itemType == 'folder') { -- GitLab From ecde48fce8b0cc580161da539b44899c406cd10d Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Mon, 3 Mar 2014 17:27:26 +0100 Subject: [PATCH 090/296] don't assign variables in if conditions --- lib/private/share/share.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/private/share/share.php b/lib/private/share/share.php index 48dd3cd68ea..69d93797ba0 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -923,7 +923,8 @@ class Share extends \OC\Share\Constants { } else { $fileDependent = false; $root = ''; - if ($includeCollections && !isset($item) && ($collectionTypes = self::getCollectionItemTypes($itemType))) { + $collectionTypes = self::getCollectionItemTypes($itemType); + if ($includeCollections && !isset($item) && $collectionTypes) { // If includeCollections is true, find collections of this item type, e.g. a music album contains songs if (!in_array($itemType, $collectionTypes)) { $itemTypes = array_merge(array($itemType), $collectionTypes); @@ -986,7 +987,8 @@ class Share extends \OC\Share\Constants { } } if (isset($item)) { - if ($includeCollections && $collectionTypes = self::getCollectionItemTypes($itemType)) { + $collectionTypes = self::getCollectionItemTypes($itemType); + if ($includeCollections && $collectionTypes) { $where .= ' AND ('; } else { $where .= ' AND'; -- GitLab From 154277ab1139c0705be2947c4c9995794c7d092b Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Mon, 3 Mar 2014 17:30:16 +0100 Subject: [PATCH 091/296] seperate formatResults() --- lib/private/share/share.php | 49 +++++++++++++++++++++++-------------- 1 file changed, 31 insertions(+), 18 deletions(-) diff --git a/lib/private/share/share.php b/lib/private/share/share.php index 69d93797ba0..f6f2ac8ccf8 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -1217,24 +1217,7 @@ class Share extends \OC\Share\Constants { if (empty($items) && $limit == 1) { return false; } - if ($format == self::FORMAT_NONE) { - return $items; - } else if ($format == self::FORMAT_STATUSES) { - $statuses = array(); - foreach ($items as $item) { - if ($item['share_type'] == self::SHARE_TYPE_LINK) { - $statuses[$item[$column]]['link'] = true; - } else if (!isset($statuses[$item[$column]])) { - $statuses[$item[$column]]['link'] = false; - } - if ($fileDependent) { - $statuses[$item[$column]]['path'] = $item['path']; - } - } - return $statuses; - } else { - return $backend->formatItems($items, $format, $parameters); - } + return self::formatResult($items, $column, $backend, $format, $parameters); } else if ($limit == 1 || (isset($uidOwner) && isset($item))) { return false; } @@ -1597,4 +1580,34 @@ class Share extends \OC\Share\Constants { $row['stime'] = (int) $row['stime']; } } + + /** + * @brief format result + * @param array $items result + * @prams string $column is it a file share or a general share ('file_target' or 'item_target') + * @params \OCP\Share_Backend $backend sharing backend + * @param int $format + * @param array additional format parameters + * @return array formate result + */ + private static function formatResult($items, $column, $backend, $format = self::FORMAT_NONE , $parameters = null) { + if ($format === self::FORMAT_NONE) { + return $items; + } else if ($format === self::FORMAT_STATUSES) { + $statuses = array(); + foreach ($items as $item) { + if ($item['share_type'] === self::SHARE_TYPE_LINK) { + $statuses[$item[$column]]['link'] = true; + } else if (!isset($statuses[$item[$column]])) { + $statuses[$item[$column]]['link'] = false; + } + if ('file_target') { + $statuses[$item[$column]]['path'] = $item['path']; + } + } + return $statuses; + } else { + return $backend->formatItems($items, $format, $parameters); + } + } } -- GitLab From bc0292c16d5fa8e99727306ef703da1e018defa2 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Thu, 6 Mar 2014 14:00:12 +0100 Subject: [PATCH 092/296] always return an array --- lib/private/share/share.php | 15 ++++----------- tests/lib/share/share.php | 12 ++++++------ 2 files changed, 10 insertions(+), 17 deletions(-) diff --git a/lib/private/share/share.php b/lib/private/share/share.php index f6f2ac8ccf8..b69f620646f 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -889,7 +889,7 @@ class Share extends \OC\Share\Constants { * @param bool Include collection item types (optional) * @param bool TODO (optional) * @prams bool check expire date - * @return mixed + * @return array * * See public functions getItem(s)... for parameter usage * @@ -898,11 +898,7 @@ class Share extends \OC\Share\Constants { $uidOwner = null, $format = self::FORMAT_NONE, $parameters = null, $limit = -1, $includeCollections = false, $itemShareWithBySource = false, $checkExpireDate = true) { if (!self::isEnabled()) { - if ($limit == 1 || (isset($uidOwner) && isset($item))) { - return false; - } else { - return array(); - } + return array(); } $backend = self::getBackend($itemType); $collectionTypes = false; @@ -1214,13 +1210,10 @@ class Share extends \OC\Share\Constants { if (!empty($collectionItems)) { $items = array_merge($items, $collectionItems); } - if (empty($items) && $limit == 1) { - return false; - } + return self::formatResult($items, $column, $backend, $format, $parameters); - } else if ($limit == 1 || (isset($uidOwner) && isset($item))) { - return false; } + return array(); } diff --git a/tests/lib/share/share.php b/tests/lib/share/share.php index b5cba9430aa..aae91fa1087 100644 --- a/tests/lib/share/share.php +++ b/tests/lib/share/share.php @@ -282,7 +282,7 @@ class Test_Share extends PHPUnit_Framework_TestCase { OC_User::setUserId($this->user2); $this->assertEquals(array(OCP\PERMISSION_READ), OCP\Share::getItemSharedWith('test', 'test.txt', Test_Share_Backend::FORMAT_PERMISSIONS)); OC_User::setUserId($this->user3); - $this->assertFalse(OCP\Share::getItemSharedWith('test', 'test.txt')); + $this->assertSame(array(), OCP\Share::getItemSharedWith('test', 'test.txt')); // Reshare again, and then have owner unshare OC_User::setUserId($this->user1); @@ -292,9 +292,9 @@ class Test_Share extends PHPUnit_Framework_TestCase { OC_User::setUserId($this->user1); $this->assertTrue(OCP\Share::unshare('test', 'test.txt', OCP\Share::SHARE_TYPE_USER, $this->user2)); OC_User::setUserId($this->user2); - $this->assertFalse(OCP\Share::getItemSharedWith('test', 'test.txt')); + $this->assertSame(array(), OCP\Share::getItemSharedWith('test', 'test.txt')); OC_User::setUserId($this->user3); - $this->assertFalse(OCP\Share::getItemSharedWith('test', 'test.txt')); + $this->assertSame(array(), OCP\Share::getItemSharedWith('test', 'test.txt')); // Attempt target conflict OC_User::setUserId($this->user1); @@ -325,7 +325,7 @@ class Test_Share extends PHPUnit_Framework_TestCase { ); OC_User::setUserId($this->user2); - $this->assertFalse( + $this->assertSame(array(), OCP\Share::getItemSharedWith('test', 'test.txt', Test_Share_Backend::FORMAT_SOURCE), 'Failed asserting that user 2 no longer has access to test.txt after expiration.' ); @@ -526,13 +526,13 @@ class Test_Share extends PHPUnit_Framework_TestCase { ); OC_User::setUserId($this->user2); - $this->assertFalse( + $this->assertSame(array(), OCP\Share::getItemSharedWith('test', 'test.txt', Test_Share_Backend::FORMAT_SOURCE), 'Failed asserting that user 2 no longer has access to test.txt after expiration.' ); OC_User::setUserId($this->user3); - $this->assertFalse( + $this->assertSame(array(), OCP\Share::getItemSharedWith('test', 'test.txt', Test_Share_Backend::FORMAT_SOURCE), 'Failed asserting that user 3 no longer has access to test.txt after expiration.' ); -- GitLab From 5db3b049fd459e3a8e6e36a3a9e12f53e97c4b0b Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Thu, 6 Mar 2014 15:30:01 +0100 Subject: [PATCH 093/296] add todo --- lib/private/share/share.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/share/share.php b/lib/private/share/share.php index b69f620646f..3471514c487 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -1170,7 +1170,7 @@ class Share extends \OC\Share\Constants { if ($backend instanceof \OCP\Share_Backend_File_Dependent) { if ($row['item_type'] == 'file' || $row['item_type'] == 'folder') { $childItem['file_source'] = $child['source']; - } else { + } else { // TODO is this really needed if we already know that we use the file backend? $meta = \OC\Files\Filesystem::getFileInfo($child['file_path']); $childItem['file_source'] = $meta['fileid']; } -- GitLab From 2d8607fae92e083a431d476f670acdbc1cfdc947 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Fri, 7 Mar 2014 15:38:14 +0100 Subject: [PATCH 094/296] don't assign variables in if condition --- lib/private/share/share.php | 35 +++++++++++++++++------------------ 1 file changed, 17 insertions(+), 18 deletions(-) diff --git a/lib/private/share/share.php b/lib/private/share/share.php index 3471514c487..ae7b6f5fbc7 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -556,8 +556,8 @@ class Share extends \OC\Share\Constants { * @return Returns true on success or false on failure */ public static function unshare($itemType, $itemSource, $shareType, $shareWith) { - if ($item = self::getItems($itemType, $itemSource, $shareType, $shareWith, \OC_User::getUser(), - self::FORMAT_NONE, null, 1)) { + $item = self::getItems($itemType, $itemSource, $shareType, $shareWith, \OC_User::getUser(),self::FORMAT_NONE, null, 1); + if (!empty($item)) { self::unshareItem($item); return true; } @@ -605,7 +605,8 @@ class Share extends \OC\Share\Constants { * Unsharing from self is not allowed for items inside collections */ public static function unshareFromSelf($itemType, $itemTarget) { - if ($item = self::getItemSharedWith($itemType, $itemTarget)) { + $item = self::getItemSharedWith($itemType, $itemTarget); + if (!empty($item)) { if ((int)$item['share_type'] === self::SHARE_TYPE_GROUP) { // Insert an extra row for the group share and set permission // to 0 to prevent it from showing up for the user @@ -746,22 +747,20 @@ class Share extends \OC\Share\Constants { * @return \OCP\Share_Backend */ public static function setExpirationDate($itemType, $itemSource, $date) { - if ($items = self::getItems($itemType, $itemSource, null, null, \OC_User::getUser(), - self::FORMAT_NONE, null, -1, false)) { - if (!empty($items)) { - if ($date == '') { - $date = null; - } else { - $date = new \DateTime($date); - } - $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `expiration` = ? WHERE `id` = ?'); - $query->bindValue(1, $date, 'datetime'); - foreach ($items as $item) { - $query->bindValue(2, (int) $item['id']); - $query->execute(); - } - return true; + $items = self::getItems($itemType, $itemSource, null, null, \OC_User::getUser(), self::FORMAT_NONE, null, -1, false); + if (!empty($items)) { + if ($date == '') { + $date = null; + } else { + $date = new \DateTime($date); + } + $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `expiration` = ? WHERE `id` = ?'); + $query->bindValue(1, $date, 'datetime'); + foreach ($items as $item) { + $query->bindValue(2, (int) $item['id']); + $query->execute(); } + return true; } return false; } -- GitLab From 3653a51af2f21065f7afad40624e053f0dfaadb3 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Tue, 11 Mar 2014 12:58:46 +0100 Subject: [PATCH 095/296] fix path creation for re-shares, issue #7662 --- apps/files_sharing/tests/api.php | 83 -------------------------------- lib/private/share/share.php | 9 +++- 2 files changed, 7 insertions(+), 85 deletions(-) diff --git a/apps/files_sharing/tests/api.php b/apps/files_sharing/tests/api.php index e2bbb548182..4ada0118d37 100644 --- a/apps/files_sharing/tests/api.php +++ b/apps/files_sharing/tests/api.php @@ -477,89 +477,6 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { } - /** - * @brief test multiple shared folder if the path gets constructed correctly - * @medium - */ - function testGetShareMultipleSharedFolder() { - - self::loginHelper(self::TEST_FILES_SHARING_API_USER1); - - $fileInfo1 = $this->view->getFileInfo($this->folder); - $fileInfo2 = $this->view->getFileInfo($this->folder . $this->subfolder); - - - // share sub-folder to user2 - $result = \OCP\Share::shareItem('folder', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_USER, - \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31); - - // share was successful? - $this->assertTrue($result); - - // share folder to user2 - $result = \OCP\Share::shareItem('folder', $fileInfo1['fileid'], \OCP\Share::SHARE_TYPE_USER, - \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31); - - // share was successful? - $this->assertTrue($result); - - - // login as user2 - self::loginHelper(self::TEST_FILES_SHARING_API_USER2); - - $result = \OCP\Share::shareItem('folder', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_LINK, null, 1); - // share was successful? - $this->assertTrue(is_string($result)); - - - // ask for shared/subfolder - $expectedPath1 = '/Shared' . $this->subfolder; - $_GET['path'] = $expectedPath1; - - $result1 = Share\Api::getAllShares(array()); - - $this->assertTrue($result1->succeeded()); - - // test should return one share within $this->folder - $data1 = $result1->getData(); - $share1 = reset($data1); - - // ask for shared/folder/subfolder - $expectedPath2 = '/Shared' . $this->folder . $this->subfolder; - $_GET['path'] = $expectedPath2; - - $result2 = Share\Api::getAllShares(array()); - - $this->assertTrue($result2->succeeded()); - - // test should return one share within $this->folder - $data2 = $result2->getData(); - $share2 = reset($data2); - - - // validate results - // we should get exactly one result each time - $this->assertEquals(1, count($data1)); - $this->assertEquals(1, count($data2)); - - $this->assertEquals($expectedPath1, $share1['path']); - $this->assertEquals($expectedPath2, $share2['path']); - - - // cleanup - $result = \OCP\Share::unshare('folder', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_LINK, null); - $this->assertTrue($result); - - self::loginHelper(self::TEST_FILES_SHARING_API_USER1); - $result = \OCP\Share::unshare('folder', $fileInfo1['fileid'], \OCP\Share::SHARE_TYPE_USER, - \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2); - $this->assertTrue($result); - $result = \OCP\Share::unshare('folder', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_USER, - \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2); - $this->assertTrue($result); - - } - /** * @brief test re-re-share of folder if the path gets constructed correctly * @medium diff --git a/lib/private/share/share.php b/lib/private/share/share.php index ae7b6f5fbc7..e4886abd2b5 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -1087,18 +1087,23 @@ class Share extends \OC\Share\Constants { if (isset($row['parent'])) { $query = \OC_DB::prepare('SELECT `file_target` FROM `*PREFIX*share` WHERE `id` = ?'); $parentResult = $query->execute(array($row['parent'])); + //$query = \OC_DB::prepare('SELECT `file_target` FROM `*PREFIX*share` WHERE `id` = ?'); + //$parentResult = $query->execute(array($row['id'])); if (\OC_DB::isError($result)) { \OC_Log::write('OCP\Share', 'Can\'t select parent: ' . \OC_DB::getErrorMessage($result) . ', select=' . $select . ' where=' . $where, \OC_Log::ERROR); } else { $parentRow = $parentResult->fetchRow(); - $splitPath = explode('/', $row['path']); $tmpPath = '/Shared' . $parentRow['file_target']; + // find the right position where the row path continues from the target path + $pos = strrpos($row['path'], $parentRow['file_target']); + $subPath = substr($row['path'], $pos); + $splitPath = explode('/', $subPath); foreach (array_slice($splitPath, 2) as $pathPart) { $tmpPath = $tmpPath . '/' . $pathPart; } - $row['path'] = $tmpPath; + $row['path'] = $tmpPath; } } else { if (!isset($mounts[$row['storage']])) { -- GitLab From 31681a3a27d1f36a980a044479a5948b4310ebe5 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Wed, 12 Mar 2014 11:00:30 +0100 Subject: [PATCH 096/296] finally fix the paths for the OCS Share API --- apps/files_sharing/tests/api.php | 85 +++++++++++++++++++++++++++++++- lib/private/share/share.php | 6 ++- 2 files changed, 88 insertions(+), 3 deletions(-) diff --git a/apps/files_sharing/tests/api.php b/apps/files_sharing/tests/api.php index 4ada0118d37..e3c5b6e4315 100644 --- a/apps/files_sharing/tests/api.php +++ b/apps/files_sharing/tests/api.php @@ -477,6 +477,89 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { } + /** + * @brief test multiple shared folder if the path gets constructed correctly + * @medium + */ + function testGetShareMultipleSharedFolder() { + + self::loginHelper(self::TEST_FILES_SHARING_API_USER1); + + $fileInfo1 = $this->view->getFileInfo($this->folder); + $fileInfo2 = $this->view->getFileInfo($this->folder . $this->subfolder); + + + // share sub-folder to user2 + $result = \OCP\Share::shareItem('folder', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_USER, + \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31); + + // share was successful? + $this->assertTrue($result); + + // share folder to user2 + $result = \OCP\Share::shareItem('folder', $fileInfo1['fileid'], \OCP\Share::SHARE_TYPE_USER, + \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31); + + // share was successful? + $this->assertTrue($result); + + + // login as user2 + self::loginHelper(self::TEST_FILES_SHARING_API_USER2); + + $result = \OCP\Share::shareItem('folder', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_LINK, null, 1); + // share was successful? + $this->assertTrue(is_string($result)); + + + // ask for shared/subfolder + $expectedPath1 = '/Shared' . $this->subfolder; + $_GET['path'] = $expectedPath1; + + $result1 = Share\Api::getAllShares(array()); + + $this->assertTrue($result1->succeeded()); + + // test should return one share within $this->folder + $data1 = $result1->getData(); + $share1 = reset($data1); + + // ask for shared/folder/subfolder + $expectedPath2 = '/Shared' . $this->folder . $this->subfolder; + $_GET['path'] = $expectedPath2; + + $result2 = Share\Api::getAllShares(array()); + + $this->assertTrue($result2->succeeded()); + + // test should return one share within $this->folder + $data2 = $result2->getData(); + $share2 = reset($data2); + + + // validate results + // we should get exactly one result each time + $this->assertEquals(1, count($data1)); + $this->assertEquals(1, count($data2)); + + $this->assertEquals($expectedPath1, $share1['path']); + $this->assertEquals($expectedPath2, $share2['path']); + + + // cleanup + $result = \OCP\Share::unshare('folder', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_LINK, null); + $this->assertTrue($result); + + self::loginHelper(self::TEST_FILES_SHARING_API_USER1); + $result = \OCP\Share::unshare('folder', $fileInfo1['fileid'], \OCP\Share::SHARE_TYPE_USER, + \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2); + $this->assertTrue($result); + $result = \OCP\Share::unshare('folder', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_USER, + \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2); + $this->assertTrue($result); + + } + /** * @brief test re-re-share of folder if the path gets constructed correctly * @medium @@ -803,5 +886,5 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { class TestShareApi extends \OCA\Files\Share\Api { public function correctPathTest($path, $folder) { return self::correctPath($path, $folder); -} + } } diff --git a/lib/private/share/share.php b/lib/private/share/share.php index e4886abd2b5..a385328edc1 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -1085,10 +1085,12 @@ class Share extends \OC\Share\Constants { // Remove root from file source paths if retrieving own shared items if (isset($uidOwner) && isset($row['path'])) { if (isset($row['parent'])) { + // FIXME: Doesn't always construct the correct path, example: + // Folder '/a/b', share '/a' and '/a/b' to user2 + // user2 reshares /Shared/b and ask for share status of /Shared/a/b + // expected result: path=/Shared/a/b; actual result /Shared/b because of the parent $query = \OC_DB::prepare('SELECT `file_target` FROM `*PREFIX*share` WHERE `id` = ?'); $parentResult = $query->execute(array($row['parent'])); - //$query = \OC_DB::prepare('SELECT `file_target` FROM `*PREFIX*share` WHERE `id` = ?'); - //$parentResult = $query->execute(array($row['id'])); if (\OC_DB::isError($result)) { \OC_Log::write('OCP\Share', 'Can\'t select parent: ' . \OC_DB::getErrorMessage($result) . ', select=' . $select . ' where=' . $where, -- GitLab From ec9260647a5ec0bb62065eba6bfa004b6d2c696c Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Tue, 25 Mar 2014 20:18:58 +0100 Subject: [PATCH 097/296] Fixed share updater unit test Now using \OC_DB::insertId() to retrieve the generated ids because Oracle ignores the passed values. --- apps/files_sharing/tests/updater.php | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/apps/files_sharing/tests/updater.php b/apps/files_sharing/tests/updater.php index 1148399bf95..993bf0169e7 100644 --- a/apps/files_sharing/tests/updater.php +++ b/apps/files_sharing/tests/updater.php @@ -30,21 +30,23 @@ class Test_Files_Sharing_Updater extends \PHPUnit_Framework_TestCase { // FIXME: DIRTY HACK - TODO: find tests, that don't clean up and fix it there $this->tearDown(); - $addShares = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`file_source`, `id`, `item_type`, `uid_owner`) VALUES (?, ?, \'file\', 1)'); - $shares = array(1, 2, 3); - foreach($shares as $share) { - // the number is used as item_source and id - $addShares->execute(array($share, $share)); - } // add items except one - because this is the test case for the broken share table $addItems = \OC_DB::prepare('INSERT INTO `*PREFIX*filecache` (`fileid`, `storage`, `path_hash`, ' . '`parent`, `mimetype`, `mimepart`, `size`, `mtime`, `storage_mtime`) ' . 'VALUES (?, 1, ?, 1, 1, 1, 1, 1, 1)'); $items = array(1, 3); + $fileIds = array(); foreach($items as $item) { // the number is used as file_id and path_hash $addItems->execute(array($item, $item)); + $fileIds[] = \OC_DB::insertId('*PREFIX*filecache'); } + + $addShares = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`file_source`, `id`, `item_type`, `uid_owner`) VALUES (?, ?, \'file\', 1)'); + // the number is used as item_source and id + $addShares->execute(array(1, $fileIds[0])); + $addShares->execute(array(2, 200)); // id of "deleted" file + $addShares->execute(array(3, $fileIds[1])); } function tearDown() { @@ -76,8 +78,8 @@ class Test_Files_Sharing_Updater extends \PHPUnit_Framework_TestCase { $result = $countShares->execute()->fetchOne(); $this->assertEquals(2, $result); - // check if the share of file '2' is removed as there is no entry for this in filecache table - $countShares = \OC_DB::prepare('SELECT COUNT(`id`) FROM `*PREFIX*share` WHERE `file_source` = 2'); + // check if the share of file '200' is removed as there is no entry for this in filecache table + $countShares = \OC_DB::prepare('SELECT COUNT(`id`) FROM `*PREFIX*share` WHERE `file_source` = 200'); $result = $countShares->execute()->fetchOne(); $this->assertEquals(0, $result); -- GitLab From a54260b5174cca222fb7589d9f582b454b37ef08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 25 Mar 2014 23:35:55 +0100 Subject: [PATCH 098/296] use minimum-scale=1.0 --- core/templates/layout.user.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index 3d897503480..b7266d50cfb 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -15,7 +15,7 @@ - + -- GitLab From e6392163a437ad5d44cba452edeaba35aeff250b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 25 Mar 2014 23:40:40 +0100 Subject: [PATCH 099/296] adding ellipsis on file names --- apps/files/css/mobile.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/apps/files/css/mobile.css b/apps/files/css/mobile.css index 087bb1f8364..bb71d67c761 100644 --- a/apps/files/css/mobile.css +++ b/apps/files/css/mobile.css @@ -49,5 +49,12 @@ table td.filename .nametext { display: none; } +/* ellipsis on file names */ +.nametext { + width: 60%; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; +} } -- GitLab From d0f84e936f3be2a4622b0b1b8be8d070c970b1cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Wed, 26 Mar 2014 00:04:11 +0100 Subject: [PATCH 100/296] adding proper notification area for multi line messages --- apps/files/css/mobile.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/apps/files/css/mobile.css b/apps/files/css/mobile.css index bb71d67c761..3ad7d634838 100644 --- a/apps/files/css/mobile.css +++ b/apps/files/css/mobile.css @@ -57,4 +57,12 @@ table td.filename .nametext { text-overflow: ellipsis; } +/* proper notification area for multi line messages */ +#notification-container { + display: -webkit-box; + display: -moz-box; + display: -ms-flexbox; + display: -webkit-flex; + display: flex; +} } -- GitLab From 8958b9147b4134d1732b23882d8bc419572b7bd7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Wed, 26 Mar 2014 00:14:38 +0100 Subject: [PATCH 101/296] adding ellipsis on file names to public file list as well --- apps/files_sharing/css/mobile.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/apps/files_sharing/css/mobile.css b/apps/files_sharing/css/mobile.css index 7d2116d190d..988ae862efa 100644 --- a/apps/files_sharing/css/mobile.css +++ b/apps/files_sharing/css/mobile.css @@ -45,5 +45,13 @@ table td.filename .nametext { display: none; } +/* ellipsis on file names */ +.nametext { + width: 60%; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; +} + } -- GitLab From cbfd16089b8c4317dc831dbab52f36f2ad60c5c0 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Wed, 26 Mar 2014 09:29:28 +0100 Subject: [PATCH 102/296] Fixed share upgrade cleanup tests to use the correct ids --- apps/files_sharing/tests/updater.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/apps/files_sharing/tests/updater.php b/apps/files_sharing/tests/updater.php index 993bf0169e7..79ae4879b64 100644 --- a/apps/files_sharing/tests/updater.php +++ b/apps/files_sharing/tests/updater.php @@ -31,22 +31,22 @@ class Test_Files_Sharing_Updater extends \PHPUnit_Framework_TestCase { $this->tearDown(); // add items except one - because this is the test case for the broken share table - $addItems = \OC_DB::prepare('INSERT INTO `*PREFIX*filecache` (`fileid`, `storage`, `path_hash`, ' . + $addItems = \OC_DB::prepare('INSERT INTO `*PREFIX*filecache` (`storage`, `path_hash`, ' . '`parent`, `mimetype`, `mimepart`, `size`, `mtime`, `storage_mtime`) ' . - 'VALUES (?, 1, ?, 1, 1, 1, 1, 1, 1)'); + 'VALUES (1, ?, 1, 1, 1, 1, 1, 1)'); $items = array(1, 3); $fileIds = array(); foreach($items as $item) { - // the number is used as file_id and path_hash - $addItems->execute(array($item, $item)); + // the number is used as path_hash + $addItems->execute(array($item)); $fileIds[] = \OC_DB::insertId('*PREFIX*filecache'); } - $addShares = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`file_source`, `id`, `item_type`, `uid_owner`) VALUES (?, ?, \'file\', 1)'); - // the number is used as item_source and id - $addShares->execute(array(1, $fileIds[0])); - $addShares->execute(array(2, 200)); // id of "deleted" file - $addShares->execute(array(3, $fileIds[1])); + $addShares = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`file_source`, `item_type`, `uid_owner`) VALUES (?, \'file\', 1)'); + // the number is used as item_source + $addShares->execute(array($fileIds[0])); + $addShares->execute(array(200)); // id of "deleted" file + $addShares->execute(array($fileIds[1])); } function tearDown() { -- GitLab From e76be308eb8e969b1a4b74d97c2ccb320a986937 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Wed, 26 Mar 2014 09:39:09 +0100 Subject: [PATCH 103/296] Remove unused setUserVars utility method That method was moved to the external storage recently so isn't needed here any more. --- lib/private/files/filesystem.php | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/lib/private/files/filesystem.php b/lib/private/files/filesystem.php index 56bafc7e974..7e27650c557 100644 --- a/lib/private/files/filesystem.php +++ b/lib/private/files/filesystem.php @@ -350,17 +350,6 @@ class Filesystem { } } - /** - * fill in the correct values for $user - * - * @param string $user - * @param string $input - * @return string - */ - private static function setUserVars($user, $input) { - return str_replace('$user', $user, $input); - } - /** * get the default filesystem view * -- GitLab From 83b4bcfdbf832f1ebc78c9cf6f6aba5490b65cb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Wed, 26 Mar 2014 11:17:23 +0100 Subject: [PATCH 104/296] idn_to_ascii is only used if available --- lib/private/mail.php | 3 +++ tests/lib/mail.php | 9 +++++++++ 2 files changed, 12 insertions(+) diff --git a/lib/private/mail.php b/lib/private/mail.php index 79f51609631..f9083cc4e64 100644 --- a/lib/private/mail.php +++ b/lib/private/mail.php @@ -137,6 +137,9 @@ class OC_Mail { * @return string */ public static function buildAsciiEmail($emailAddress) { + if (!function_exists('idn_to_ascii')) { + return $emailAddress; + } list($name, $domain) = explode('@', $emailAddress, 2); $domain = idn_to_ascii($domain); diff --git a/tests/lib/mail.php b/tests/lib/mail.php index a88a9d797ae..3cc9868e25e 100644 --- a/tests/lib/mail.php +++ b/tests/lib/mail.php @@ -8,6 +8,15 @@ class Test_Mail extends PHPUnit_Framework_TestCase { + protected function setUp() + { + if (!function_exists('idn_to_ascii')) { + $this->markTestSkipped( + 'The intl extension is not available.' + ); + } + } + /** * @dataProvider buildAsciiEmailProvider * @param $expected -- GitLab From e002b7242cb19a0e028d325cd64b57e67dc48108 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Wed, 26 Mar 2014 12:10:17 +0100 Subject: [PATCH 105/296] Fix merging of external storage configurations Merging of configurations is whenever the same config is available for multiple users/groups, in which case the config is considered as a single one by the UI, and shows multiple users/groups selected. Fixed merging logic to make sure that class, mount point and options are the same before merging them. Fixed merging to work correctly when the same mount point path is used for separate users and configs. These are now correctly shows in the UI as separate entries. --- apps/files_external/lib/config.php | 78 +++++--- apps/files_external/templates/settings.php | 14 +- apps/files_external/tests/mountconfig.php | 201 +++++++++++++++++++-- 3 files changed, 242 insertions(+), 51 deletions(-) diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index ffbab7bca80..384ab410e9c 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -304,18 +304,23 @@ class OC_Mount_Config { $mount['options'] = self::decryptPasswords($mount['options']); // Remove '/$user/files/' from mount point $mountPoint = substr($mountPoint, 13); - // Merge the mount point into the current mount points - if (isset($system[$mountPoint]) && $system[$mountPoint]['configuration'] == $mount['options']) { - $system[$mountPoint]['applicable']['groups'] - = array_merge($system[$mountPoint]['applicable']['groups'], array($group)); + + $config = array( + 'class' => $mount['class'], + 'mountpoint' => $mountPoint, + 'backend' => $backends[$mount['class']]['backend'], + 'options' => $mount['options'], + 'applicable' => array('groups' => array($group), 'users' => array()), + 'status' => self::getBackendStatus($mount['class'], $mount['options']) + ); + $hash = self::makeConfigHash($config); + // If an existing config exists (with same class, mountpoint and options) + if (isset($system[$hash])) { + // add the groups into that config + $system[$hash]['applicable']['groups'] + = array_merge($system[$hash]['applicable']['groups'], array($group)); } else { - $system[$mountPoint] = array( - 'class' => $mount['class'], - 'backend' => $backends[$mount['class']]['backend'], - 'configuration' => $mount['options'], - 'applicable' => array('groups' => array($group), 'users' => array()), - 'status' => self::getBackendStatus($mount['class'], $mount['options']) - ); + $system[$hash] = $config; } } } @@ -330,23 +335,27 @@ class OC_Mount_Config { $mount['options'] = self::decryptPasswords($mount['options']); // Remove '/$user/files/' from mount point $mountPoint = substr($mountPoint, 13); - // Merge the mount point into the current mount points - if (isset($system[$mountPoint]) && $system[$mountPoint]['configuration'] == $mount['options']) { - $system[$mountPoint]['applicable']['users'] - = array_merge($system[$mountPoint]['applicable']['users'], array($user)); + $config = array( + 'class' => $mount['class'], + 'mountpoint' => $mountPoint, + 'backend' => $backends[$mount['class']]['backend'], + 'options' => $mount['options'], + 'applicable' => array('groups' => array(), 'users' => array($user)), + 'status' => self::getBackendStatus($mount['class'], $mount['options']) + ); + $hash = self::makeConfigHash($config); + // If an existing config exists (with same class, mountpoint and options) + if (isset($system[$hash])) { + // add the users into that config + $system[$hash]['applicable']['users'] + = array_merge($system[$hash]['applicable']['users'], array($user)); } else { - $system[$mountPoint] = array( - 'class' => $mount['class'], - 'backend' => $backends[$mount['class']]['backend'], - 'configuration' => $mount['options'], - 'applicable' => array('groups' => array(), 'users' => array($user)), - 'status' => self::getBackendStatus($mount['class'], $mount['options']) - ); + $system[$hash] = $config; } } } } - return $system; + return array_values($system); } /** @@ -366,11 +375,12 @@ class OC_Mount_Config { $mount['class'] = '\OC\Files\Storage\\'.substr($mount['class'], 15); } $mount['options'] = self::decryptPasswords($mount['options']); - // Remove '/uid/files/' from mount point - $personal[substr($mountPoint, strlen($uid) + 8)] = array( + $personal[] = array( 'class' => $mount['class'], + // Remove '/uid/files/' from mount point + 'mountpoint' => substr($mountPoint, strlen($uid) + 8), 'backend' => $backends[$mount['class']]['backend'], - 'configuration' => $mount['options'], + 'options' => $mount['options'], 'status' => self::getBackendStatus($mount['class'], $mount['options']) ); } @@ -707,4 +717,20 @@ class OC_Mount_Config { $cipher->setKey(\OCP\Config::getSystemValue('passwordsalt')); return $cipher; } + + /** + * Computes a hash based on the given configuration. + * This is mostly used to find out whether configurations + * are the same. + */ + private static function makeConfigHash($config) { + $data = json_encode( + array( + 'c' => $config['class'], + 'm' => $config['mountpoint'], + 'o' => $config['options'] + ) + ); + return hash('md5', $data); + } } diff --git a/apps/files_external/templates/settings.php b/apps/files_external/templates/settings.php index de44d3c8644..5e84fa8a252 100644 --- a/apps/files_external/templates/settings.php +++ b/apps/files_external/templates/settings.php @@ -16,17 +16,17 @@ array())); ?> - $mount): ?> - > + + > - + - class="remove" + class="remove" style="visibility:hidden;" ><?php p($l->t('Delete')); ?> array('all'), + 'groups' => array() + ) + ), + // applicable to single user + array( + OC_Mount_Config::MOUNT_TYPE_USER, + self::TEST_USER1, + array( + 'users' => array(self::TEST_USER1), + 'groups' => array() + ) + ), + // applicable to single group + array( + OC_Mount_Config::MOUNT_TYPE_GROUP, + self::TEST_GROUP1, + array( + 'users' => array(), + 'groups' => array(self::TEST_GROUP1) + ) + ), + ); + } + /** * Test reading and writing global config + * + * @dataProvider applicableConfigProvider */ - public function testReadWriteGlobalConfig() { - $mountType = OC_Mount_Config::MOUNT_TYPE_USER; - $applicable = 'all'; + public function testReadWriteGlobalConfig($mountType, $applicable, $expectApplicableArray) { + $mountType = $mountType; + $applicable = $applicable; $isPersonal = false; - $mountConfig = array( + $options = array( 'host' => 'smbhost', 'user' => 'smbuser', 'password' => 'smbpassword', @@ -231,7 +269,7 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { OC_Mount_Config::addMountPoint( '/ext', '\OC\Files\Storage\SMB', - $mountConfig, + $options, $mountType, $applicable, $isPersonal @@ -241,12 +279,13 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { // re-read config $config = OC_Mount_Config::getSystemMountPoints(); $this->assertEquals(1, count($config)); - $this->assertTrue(isset($config['ext'])); - $this->assertEquals('\OC\Files\Storage\SMB', $config['ext']['class']); - $savedMountConfig = $config['ext']['configuration']; - $this->assertEquals($mountConfig, $savedMountConfig); + $this->assertEquals('\OC\Files\Storage\SMB', $config[0]['class']); + $this->assertEquals('ext', $config[0]['mountpoint']); + $this->assertEquals($expectApplicableArray, $config[0]['applicable']); + $savedOptions = $config[0]['options']; + $this->assertEquals($options, $savedOptions); // key order needs to be preserved for the UI... - $this->assertEquals(array_keys($mountConfig), array_keys($savedMountConfig)); + $this->assertEquals(array_keys($options), array_keys($savedOptions)); } /** @@ -256,7 +295,7 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { $mountType = OC_Mount_Config::MOUNT_TYPE_USER; $applicable = self::TEST_USER1; $isPersonal = true; - $mountConfig = array( + $options = array( 'host' => 'smbhost', 'user' => 'smbuser', 'password' => 'smbpassword', @@ -269,7 +308,7 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { OC_Mount_Config::addMountPoint( '/ext', '\OC\Files\Storage\SMB', - $mountConfig, + $options, $mountType, $applicable, $isPersonal @@ -279,12 +318,12 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { // re-read config $config = OC_Mount_Config::getPersonalMountPoints(); $this->assertEquals(1, count($config)); - $this->assertTrue(isset($config['ext'])); - $this->assertEquals('\OC\Files\Storage\SMB', $config['ext']['class']); - $savedMountConfig = $config['ext']['configuration']; - $this->assertEquals($mountConfig, $savedMountConfig); + $this->assertEquals('\OC\Files\Storage\SMB', $config[0]['class']); + $this->assertEquals('ext', $config[0]['mountpoint']); + $savedOptions = $config[0]['options']; + $this->assertEquals($options, $savedOptions); // key order needs to be preserved for the UI... - $this->assertEquals(array_keys($mountConfig), array_keys($savedMountConfig)); + $this->assertEquals(array_keys($options), array_keys($savedOptions)); } /** @@ -362,7 +401,7 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { // re-read config, password was read correctly $config = OC_Mount_Config::getPersonalMountPoints(); - $savedMountConfig = $config['ext']['configuration']; + $savedMountConfig = $config[0]['options']; $this->assertEquals($mountConfig, $savedMountConfig); } @@ -475,4 +514,130 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { $this->assertEquals(0, count($mountPoints)); } } + + /** + * Test the same config for multiple users. + * The config will be merged by getSystemMountPoints(). + */ + public function testConfigMerging() { + $mountType = OC_Mount_Config::MOUNT_TYPE_USER; + $isPersonal = false; + $options = array( + 'host' => 'smbhost', + 'user' => 'smbuser', + 'password' => 'smbpassword', + 'share' => 'smbshare', + 'root' => 'smbroot' + ); + + // write config + $this->assertTrue( + OC_Mount_Config::addMountPoint( + '/ext', + '\OC\Files\Storage\SMB', + $options, + OC_Mount_Config::MOUNT_TYPE_USER, + self::TEST_USER1, + $isPersonal + ) + ); + + $this->assertTrue( + OC_Mount_Config::addMountPoint( + '/ext', + '\OC\Files\Storage\SMB', + $options, + OC_Mount_Config::MOUNT_TYPE_USER, + self::TEST_USER2, + $isPersonal + ) + ); + + $this->assertTrue( + OC_Mount_Config::addMountPoint( + '/ext', + '\OC\Files\Storage\SMB', + $options, + OC_Mount_Config::MOUNT_TYPE_GROUP, + self::TEST_GROUP2, + $isPersonal + ) + ); + + $this->assertTrue( + OC_Mount_Config::addMountPoint( + '/ext', + '\OC\Files\Storage\SMB', + $options, + OC_Mount_Config::MOUNT_TYPE_GROUP, + self::TEST_GROUP1, + $isPersonal + ) + ); + + // re-read config + $config = OC_Mount_Config::getSystemMountPoints(); + $this->assertEquals(1, count($config)); + $this->assertEquals('\OC\Files\Storage\SMB', $config[0]['class']); + $this->assertEquals('ext', $config[0]['mountpoint']); + $this->assertEquals($options, $config[0]['options']); + $this->assertEquals(array(self::TEST_USER1, self::TEST_USER2), $config[0]['applicable']['users']); + $this->assertEquals(array(self::TEST_GROUP2, self::TEST_GROUP1), $config[0]['applicable']['groups']); + } + + /** + * Create then re-read mount points configs where the mount points + * have the same path, the config must NOT be merged. + */ + public function testRereadMountpointWithSamePath() { + $mountType = OC_Mount_Config::MOUNT_TYPE_USER; + $isPersonal = false; + $options1 = array( + 'host' => 'smbhost', + 'user' => 'smbuser', + 'password' => 'smbpassword', + 'share' => 'smbshare', + 'root' => 'smbroot' + ); + + // write config + $this->assertTrue( + OC_Mount_Config::addMountPoint( + '/ext', + '\OC\Files\Storage\SMB', + $options1, + $mountType, + self::TEST_USER1, + $isPersonal + ) + ); + + $options2 = array( + 'host' => 'anothersmbhost', + 'user' => 'anothersmbuser', + 'password' => 'anothersmbpassword', + 'share' => 'anothersmbshare', + 'root' => 'anothersmbroot' + ); + $this->assertTrue( + OC_Mount_Config::addMountPoint( + '/ext', + '\OC\Files\Storage\SMB', + $options2, + $mountType, + self::TEST_USER2, + $isPersonal + ) + ); + + // re-read config + $config = OC_Mount_Config::getSystemMountPoints(); + $this->assertEquals(2, count($config)); + $this->assertEquals('\OC\Files\Storage\SMB', $config[0]['class']); + $this->assertEquals('ext', $config[0]['mountpoint']); + $this->assertEquals($options1, $config[0]['options']); + $this->assertEquals('\OC\Files\Storage\SMB', $config[1]['class']); + $this->assertEquals('ext', $config[1]['mountpoint']); + $this->assertEquals($options2, $config[1]['options']); + } } -- GitLab From 9b2bb7c6abba9cdbcd982c7460e43d024b11198b Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 26 Mar 2014 13:02:11 +0100 Subject: [PATCH 106/296] fix undefined index warning in router --- lib/private/route/router.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/route/router.php b/lib/private/route/router.php index bad74c925fa..1f0a23ee124 100644 --- a/lib/private/route/router.php +++ b/lib/private/route/router.php @@ -114,7 +114,7 @@ class Router implements IRouter { } } foreach ($routingFiles as $app => $file) { - if (!$this->loadedApps[$app]) { + if (!isset($this->loadedApps[$app])) { $this->loadedApps[$app] = true; $this->useCollection($app); require_once $file; -- GitLab From ba63e46b5e11bddc1bc5a636ef6622b60da579f1 Mon Sep 17 00:00:00 2001 From: Robin McCorkell Date: Fri, 21 Mar 2014 14:22:48 +0000 Subject: [PATCH 107/296] SMB/CIFS mount using OwnCloud logon credentials Selecting 'SMB/CIFS Auto' in the mounts configuration allows an SMB/CIFS mount to be configured that uses the credentials of the user logging in to authenticate to the server. Optionally, the username can be used as the share name, permitting home shares to be dynamically mounted. --- apps/files_external/appinfo/app.php | 3 ++ apps/files_external/lib/config.php | 14 +++++++-- apps/files_external/lib/smb_auto.php | 46 ++++++++++++++++++++++++++++ 3 files changed, 60 insertions(+), 3 deletions(-) create mode 100644 apps/files_external/lib/smb_auto.php diff --git a/apps/files_external/appinfo/app.php b/apps/files_external/appinfo/app.php index 0e83660f845..f98d000b989 100644 --- a/apps/files_external/appinfo/app.php +++ b/apps/files_external/appinfo/app.php @@ -1,6 +1,7 @@ + * Copyright (c) 2014 Robin McCorkell * This file is licensed under the Affero General Public License version 3 or * later. * See the COPYING-README file. @@ -13,6 +14,7 @@ OC::$CLASSPATH['OC\Files\Storage\OwnCloud'] = 'files_external/lib/owncloud.php'; OC::$CLASSPATH['OC\Files\Storage\Google'] = 'files_external/lib/google.php'; OC::$CLASSPATH['OC\Files\Storage\Swift'] = 'files_external/lib/swift.php'; OC::$CLASSPATH['OC\Files\Storage\SMB'] = 'files_external/lib/smb.php'; +OC::$CLASSPATH['OC\Files\Storage\SMB_Auto'] = 'files_external/lib/smb_auto.php'; OC::$CLASSPATH['OC\Files\Storage\AmazonS3'] = 'files_external/lib/amazons3.php'; OC::$CLASSPATH['OC\Files\Storage\Dropbox'] = 'files_external/lib/dropbox.php'; OC::$CLASSPATH['OC\Files\Storage\SFTP'] = 'files_external/lib/sftp.php'; @@ -27,4 +29,5 @@ if (OCP\Config::getAppValue('files_external', 'allow_user_mounting', 'yes') == ' // connecting hooks OCP\Util::connectHook('OC_Filesystem', 'post_initMountPoints', '\OC_Mount_Config', 'initMountPointsHook'); OCP\Util::connectHook('OC_User', 'post_login', 'OC\Files\Storage\iRODS', 'login'); +OCP\Util::connectHook('OC_User', 'post_login', 'OC\Files\Storage\SMB_Auto', 'login'); diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index f7caafb74aa..3512071aeb8 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -5,6 +5,7 @@ * @author Michael Gapczynski * @copyright 2012 Michael Gapczynski mtgap@owncloud.com * @copyright 2014 Vincent Petry +* @copyright 2014 Robin McCorkell * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE @@ -122,11 +123,18 @@ class OC_Mount_Config { 'password' => '*Password', 'share' => 'Share', 'root' => '&Root')); + $backends['\OC\Files\Storage\SMB_Auto'] = array( + 'backend' => 'SMB / CIFS Auto', + 'configuration' => array( + 'host' => 'URL', + 'username_as_share' => '!Username as share', + 'share' => '&Share', + 'root' => '&Root')); } } if(OC_Mount_Config::checkcurl()){ - $backends['\OC\Files\Storage\DAV']=array( + $backends['\OC\Files\Storage\DAV']=array( 'backend' => 'WebDAV', 'configuration' => array( 'host' => 'URL', @@ -134,7 +142,7 @@ class OC_Mount_Config { 'password' => '*Password', 'root' => '&Root', 'secure' => '!Secure https://')); - $backends['\OC\Files\Storage\OwnCloud']=array( + $backends['\OC\Files\Storage\OwnCloud']=array( 'backend' => 'ownCloud', 'configuration' => array( 'host' => 'URL', @@ -185,7 +193,7 @@ class OC_Mount_Config { * @return array of mount point string as key, mountpoint config as value */ public static function getAbsoluteMountPoints($user) { - $mountPoints = array(); + $mountPoints = array(); $datadir = \OC_Config::getValue("datadirectory", \OC::$SERVERROOT . "/data"); $mount_file = \OC_Config::getValue("mount_file", $datadir . "/mount.json"); diff --git a/apps/files_external/lib/smb_auto.php b/apps/files_external/lib/smb_auto.php new file mode 100644 index 00000000000..52fceea64f4 --- /dev/null +++ b/apps/files_external/lib/smb_auto.php @@ -0,0 +1,46 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC\Files\Storage; + +class SMB_Auto extends \OC\Files\Storage\SMB{ + public function __construct($params) { + if (isset($params['host']) && \OC::$session->exists('smb-credentials')) { + $host=$params['host']; + $username_as_share = ($params['username_as_share'] === 'true'); + + $params_auth = \OC::$session->get('smb-credentials'); + $user = \OC_User::getDisplayName($params_auth['uid']); + $password = $params_auth['password']; + + $root=isset($params['root'])?$params['root']:'/'; + $share = ''; + + if ($username_as_share) { + $share = '/'.$user; + } elseif (isset($params['share'])) { + $share = $params['share']; + } else { + throw new \Exception(); + } + parent::__construct(array( + "user" => $user, + "password" => $password, + "host" => $host, + "share" => $share, + "root" => $root + )); + } else { + throw new \Exception(); + } + } + + public static function login( $params ) { + \OC::$session->set('smb-credentials', $params); + } +} -- GitLab From 3445c062ecf188134c3ef236aa911a074ff29cff Mon Sep 17 00:00:00 2001 From: Robin McCorkell Date: Mon, 24 Mar 2014 15:05:14 +0000 Subject: [PATCH 108/296] Use loginname instead of display name getDisplayName would return the display name of the user, not great if it is a canonical string. The uid passed back from 'login' is the UUID of the user, so also not suitable. The login name from the session is the username the user used to log in to ownCloud in the first place, which is what is needed. --- apps/files_external/lib/smb_auto.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_external/lib/smb_auto.php b/apps/files_external/lib/smb_auto.php index 52fceea64f4..f2ebdca9cdf 100644 --- a/apps/files_external/lib/smb_auto.php +++ b/apps/files_external/lib/smb_auto.php @@ -15,7 +15,7 @@ class SMB_Auto extends \OC\Files\Storage\SMB{ $username_as_share = ($params['username_as_share'] === 'true'); $params_auth = \OC::$session->get('smb-credentials'); - $user = \OC_User::getDisplayName($params_auth['uid']); + $user = \OC::$session->get('loginname'); $password = $params_auth['password']; $root=isset($params['root'])?$params['root']:'/'; -- GitLab From 86aa6104e690f8647c800f49b61bb95e2a625f97 Mon Sep 17 00:00:00 2001 From: Robin McCorkell Date: Mon, 24 Mar 2014 15:15:15 +0000 Subject: [PATCH 109/296] Revoke sharable permission on automatic SMB shares Shares authenticated with user credentials (aka not hard coded) cannot be accessed by other users, breaking sharing. This change completely revokes sharing for such shares --- apps/files_external/lib/smb_auto.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/files_external/lib/smb_auto.php b/apps/files_external/lib/smb_auto.php index f2ebdca9cdf..0556aa64843 100644 --- a/apps/files_external/lib/smb_auto.php +++ b/apps/files_external/lib/smb_auto.php @@ -43,4 +43,8 @@ class SMB_Auto extends \OC\Files\Storage\SMB{ public static function login( $params ) { \OC::$session->set('smb-credentials', $params); } + + public function isSharable($path) { + return false; + } } -- GitLab From cac4aaa8c4dab1b59ab3ba3f155439473ae28250 Mon Sep 17 00:00:00 2001 From: Robin McCorkell Date: Tue, 25 Mar 2014 13:54:54 +0000 Subject: [PATCH 110/296] Rename SMB_Auto to SMB_OC and change visible name SMB_Auto is now SMB_OC, and the name has been changed from "SMB / CIFS Auto" to "SMB / CIFS using OC login" --- apps/files_external/appinfo/app.php | 4 ++-- apps/files_external/lib/config.php | 4 ++-- apps/files_external/lib/{smb_auto.php => smb_oc.php} | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) rename apps/files_external/lib/{smb_auto.php => smb_oc.php} (96%) diff --git a/apps/files_external/appinfo/app.php b/apps/files_external/appinfo/app.php index f98d000b989..aeb7a2cb23a 100644 --- a/apps/files_external/appinfo/app.php +++ b/apps/files_external/appinfo/app.php @@ -14,7 +14,7 @@ OC::$CLASSPATH['OC\Files\Storage\OwnCloud'] = 'files_external/lib/owncloud.php'; OC::$CLASSPATH['OC\Files\Storage\Google'] = 'files_external/lib/google.php'; OC::$CLASSPATH['OC\Files\Storage\Swift'] = 'files_external/lib/swift.php'; OC::$CLASSPATH['OC\Files\Storage\SMB'] = 'files_external/lib/smb.php'; -OC::$CLASSPATH['OC\Files\Storage\SMB_Auto'] = 'files_external/lib/smb_auto.php'; +OC::$CLASSPATH['OC\Files\Storage\SMB_OC'] = 'files_external/lib/smb_oc.php'; OC::$CLASSPATH['OC\Files\Storage\AmazonS3'] = 'files_external/lib/amazons3.php'; OC::$CLASSPATH['OC\Files\Storage\Dropbox'] = 'files_external/lib/dropbox.php'; OC::$CLASSPATH['OC\Files\Storage\SFTP'] = 'files_external/lib/sftp.php'; @@ -29,5 +29,5 @@ if (OCP\Config::getAppValue('files_external', 'allow_user_mounting', 'yes') == ' // connecting hooks OCP\Util::connectHook('OC_Filesystem', 'post_initMountPoints', '\OC_Mount_Config', 'initMountPointsHook'); OCP\Util::connectHook('OC_User', 'post_login', 'OC\Files\Storage\iRODS', 'login'); -OCP\Util::connectHook('OC_User', 'post_login', 'OC\Files\Storage\SMB_Auto', 'login'); +OCP\Util::connectHook('OC_User', 'post_login', 'OC\Files\Storage\SMB_OC', 'login'); diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index 3512071aeb8..af37a05cae0 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -123,8 +123,8 @@ class OC_Mount_Config { 'password' => '*Password', 'share' => 'Share', 'root' => '&Root')); - $backends['\OC\Files\Storage\SMB_Auto'] = array( - 'backend' => 'SMB / CIFS Auto', + $backends['\OC\Files\Storage\SMB_OC'] = array( + 'backend' => 'SMB / CIFS using OC login', 'configuration' => array( 'host' => 'URL', 'username_as_share' => '!Username as share', diff --git a/apps/files_external/lib/smb_auto.php b/apps/files_external/lib/smb_oc.php similarity index 96% rename from apps/files_external/lib/smb_auto.php rename to apps/files_external/lib/smb_oc.php index 0556aa64843..a62a2c01533 100644 --- a/apps/files_external/lib/smb_auto.php +++ b/apps/files_external/lib/smb_oc.php @@ -8,7 +8,7 @@ namespace OC\Files\Storage; -class SMB_Auto extends \OC\Files\Storage\SMB{ +class SMB_OC extends \OC\Files\Storage\SMB { public function __construct($params) { if (isset($params['host']) && \OC::$session->exists('smb-credentials')) { $host=$params['host']; -- GitLab From b077528087fba76add6913563b4c8221ca99aa3f Mon Sep 17 00:00:00 2001 From: Robin McCorkell Date: Wed, 26 Mar 2014 11:04:13 +0000 Subject: [PATCH 111/296] Perform proper checking for share availability To check for shares, the code attempts to connect anonymously to the share. In most cases this will fail with NT_STATUS_ACCESS_DENIED, so the regex array used for parsing the output of smbclient in smb4php has been overridden to treat such output as success. The 'test' method for storage classes can now take a single parameter, $isPersonal, which allows the storage to adjust the tests performed based on if they are being configured as personal shares or as system shares. --- apps/files_external/3rdparty/smb4php/smb.php | 80 +++++++++++--------- apps/files_external/lib/config.php | 12 +-- apps/files_external/lib/smb_oc.php | 43 ++++++++++- 3 files changed, 90 insertions(+), 45 deletions(-) diff --git a/apps/files_external/3rdparty/smb4php/smb.php b/apps/files_external/3rdparty/smb4php/smb.php index 656930514f0..e325506fa14 100644 --- a/apps/files_external/3rdparty/smb4php/smb.php +++ b/apps/files_external/3rdparty/smb4php/smb.php @@ -8,6 +8,8 @@ # Homepage: http://www.phpclasses.org/smb4php # # Copyright (c) 2007 Victor M. Varela +# Copyright (c) 2012 Frank Karlitschek +# Copyright (c) 2014 Robin McCorkell # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License @@ -19,8 +21,6 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # -# Addition 17/12/2012 Frank Karlitschek (frank@owncloud.org) -# Addition 17/03/2014 Robin McCorkell (rmccorkell@karoshi.org.uk) # On the official website http://www.phpclasses.org/smb4php the # license is listed as LGPL so we assume that this is # dual-licensed GPL/LGPL @@ -44,6 +44,42 @@ $GLOBALS['__smb_cache'] = array ('stat' => array (), 'dir' => array ()); class smb { + private static $regexp = array ( + '^added interface ip=(.*) bcast=(.*) nmask=(.*)$' => 'skip', + 'Anonymous login successful' => 'skip', + '^Domain=\[(.*)\] OS=\[(.*)\] Server=\[(.*)\]$' => 'skip', + '^\tSharename[ ]+Type[ ]+Comment$' => 'shares', + '^\t---------[ ]+----[ ]+-------$' => 'skip', + '^\tServer [ ]+Comment$' => 'servers', + '^\t---------[ ]+-------$' => 'skip', + '^\tWorkgroup[ ]+Master$' => 'workg', + '^\t(.*)[ ]+(Disk|IPC)[ ]+IPC.*$' => 'skip', + '^\tIPC\\\$(.*)[ ]+IPC' => 'skip', + '^\t(.*)[ ]+(Disk)[ ]+(.*)$' => 'share', + '^\t(.*)[ ]+(Printer)[ ]+(.*)$' => 'skip', + '([0-9]+) blocks of size ([0-9]+)\. ([0-9]+) blocks available' => 'skip', + 'Got a positive name query response from ' => 'skip', + '^(session setup failed): (.*)$' => 'error', + '^(.*): ERRSRV - ERRbadpw' => 'error', + '^Error returning browse list: (.*)$' => 'error', + '^tree connect failed: (.*)$' => 'error', + '^(Connection to .* failed)(.*)$' => 'error-connect', + '^NT_STATUS_(.*) ' => 'error', + '^NT_STATUS_(.*)\$' => 'error', + 'ERRDOS - ERRbadpath \((.*).\)' => 'error', + 'cd (.*): (.*)$' => 'error', + '^cd (.*): NT_STATUS_(.*)' => 'error', + '^\t(.*)$' => 'srvorwg', + '^([0-9]+)[ ]+([0-9]+)[ ]+(.*)$' => 'skip', + '^Job ([0-9]+) cancelled' => 'skip', + '^[ ]+(.*)[ ]+([0-9]+)[ ]+(Mon|Tue|Wed|Thu|Fri|Sat|Sun)[ ](Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)[ ]+([0-9]+)[ ]+([0-9]{2}:[0-9]{2}:[0-9]{2})[ ]([0-9]{4})$' => 'files', + '^message start: ERRSRV - (ERRmsgoff)' => 'error' + ); + + function getRegexp() { + return self::$regexp; + } + function parse_url ($url) { $pu = parse_url (trim($url)); foreach (array ('domain', 'user', 'pass', 'host', 'port', 'path') as $i) { @@ -75,46 +111,16 @@ class smb { } - function execute ($command, $purl) { + function execute ($command, $purl, $regexp = NULL) { return smb::client ('-d 0 ' . escapeshellarg ('//' . $purl['host'] . '/' . $purl['share']) - . ' -c ' . escapeshellarg ($command), $purl + . ' -c ' . escapeshellarg ($command), $purl, $regexp ); } - function client ($params, $purl) { - - static $regexp = array ( - '^added interface ip=(.*) bcast=(.*) nmask=(.*)$' => 'skip', - 'Anonymous login successful' => 'skip', - '^Domain=\[(.*)\] OS=\[(.*)\] Server=\[(.*)\]$' => 'skip', - '^\tSharename[ ]+Type[ ]+Comment$' => 'shares', - '^\t---------[ ]+----[ ]+-------$' => 'skip', - '^\tServer [ ]+Comment$' => 'servers', - '^\t---------[ ]+-------$' => 'skip', - '^\tWorkgroup[ ]+Master$' => 'workg', - '^\t(.*)[ ]+(Disk|IPC)[ ]+IPC.*$' => 'skip', - '^\tIPC\\\$(.*)[ ]+IPC' => 'skip', - '^\t(.*)[ ]+(Disk)[ ]+(.*)$' => 'share', - '^\t(.*)[ ]+(Printer)[ ]+(.*)$' => 'skip', - '([0-9]+) blocks of size ([0-9]+)\. ([0-9]+) blocks available' => 'skip', - 'Got a positive name query response from ' => 'skip', - '^(session setup failed): (.*)$' => 'error', - '^(.*): ERRSRV - ERRbadpw' => 'error', - '^Error returning browse list: (.*)$' => 'error', - '^tree connect failed: (.*)$' => 'error', - '^(Connection to .* failed)(.*)$' => 'error-connect', - '^NT_STATUS_(.*) ' => 'error', - '^NT_STATUS_(.*)\$' => 'error', - 'ERRDOS - ERRbadpath \((.*).\)' => 'error', - 'cd (.*): (.*)$' => 'error', - '^cd (.*): NT_STATUS_(.*)' => 'error', - '^\t(.*)$' => 'srvorwg', - '^([0-9]+)[ ]+([0-9]+)[ ]+(.*)$' => 'skip', - '^Job ([0-9]+) cancelled' => 'skip', - '^[ ]+(.*)[ ]+([0-9]+)[ ]+(Mon|Tue|Wed|Thu|Fri|Sat|Sun)[ ](Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)[ ]+([0-9]+)[ ]+([0-9]{2}:[0-9]{2}:[0-9]{2})[ ]([0-9]{4})$' => 'files', - '^message start: ERRSRV - (ERRmsgoff)' => 'error' - ); + function client ($params, $purl, $regexp = NULL) { + + if ($regexp === NULL) $regexp = smb::$regexp; if (SMB4PHP_AUTHMODE == 'env') { putenv("USER={$purl['user']}%{$purl['pass']}"); diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index af37a05cae0..043265d8982 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -319,7 +319,7 @@ class OC_Mount_Config { 'backend' => $backends[$mount['class']]['backend'], 'options' => $mount['options'], 'applicable' => array('groups' => array($group), 'users' => array()), - 'status' => self::getBackendStatus($mount['class'], $mount['options']) + 'status' => self::getBackendStatus($mount['class'], $mount['options'], false) ); $hash = self::makeConfigHash($config); // If an existing config exists (with same class, mountpoint and options) @@ -349,7 +349,7 @@ class OC_Mount_Config { 'backend' => $backends[$mount['class']]['backend'], 'options' => $mount['options'], 'applicable' => array('groups' => array(), 'users' => array($user)), - 'status' => self::getBackendStatus($mount['class'], $mount['options']) + 'status' => self::getBackendStatus($mount['class'], $mount['options'], true) ); $hash = self::makeConfigHash($config); // If an existing config exists (with same class, mountpoint and options) @@ -389,7 +389,7 @@ class OC_Mount_Config { 'mountpoint' => substr($mountPoint, strlen($uid) + 8), 'backend' => $backends[$mount['class']]['backend'], 'options' => $mount['options'], - 'status' => self::getBackendStatus($mount['class'], $mount['options']) + 'status' => self::getBackendStatus($mount['class'], $mount['options'], true) ); } } @@ -402,7 +402,7 @@ class OC_Mount_Config { * @param array $options backend configuration options * @return bool true if the connection succeeded, false otherwise */ - private static function getBackendStatus($class, $options) { + private static function getBackendStatus($class, $options, $isPersonal) { if (self::$skipTest) { return true; } @@ -412,7 +412,7 @@ class OC_Mount_Config { if (class_exists($class)) { try { $storage = new $class($options); - return $storage->test(); + return $storage->test($isPersonal); } catch (Exception $exception) { \OCP\Util::logException('files_external', $exception); return false; @@ -479,7 +479,7 @@ class OC_Mount_Config { $mountPoints[$mountType] = $mount; } self::writeData($isPersonal, $mountPoints); - return self::getBackendStatus($class, $classOptions); + return self::getBackendStatus($class, $classOptions, $isPersonal); } /** diff --git a/apps/files_external/lib/smb_oc.php b/apps/files_external/lib/smb_oc.php index a62a2c01533..ac325cd4fbc 100644 --- a/apps/files_external/lib/smb_oc.php +++ b/apps/files_external/lib/smb_oc.php @@ -8,11 +8,15 @@ namespace OC\Files\Storage; +require_once __DIR__ . '/../3rdparty/smb4php/smb.php'; + class SMB_OC extends \OC\Files\Storage\SMB { + private $username_as_share; + public function __construct($params) { if (isset($params['host']) && \OC::$session->exists('smb-credentials')) { $host=$params['host']; - $username_as_share = ($params['username_as_share'] === 'true'); + $this->username_as_share = ($params['username_as_share'] === 'true'); $params_auth = \OC::$session->get('smb-credentials'); $user = \OC::$session->get('loginname'); @@ -21,7 +25,7 @@ class SMB_OC extends \OC\Files\Storage\SMB { $root=isset($params['root'])?$params['root']:'/'; $share = ''; - if ($username_as_share) { + if ($this->username_as_share) { $share = '/'.$user; } elseif (isset($params['share'])) { $share = $params['share']; @@ -47,4 +51,39 @@ class SMB_OC extends \OC\Files\Storage\SMB { public function isSharable($path) { return false; } + + public function test($isPersonal = true) { + if ($isPersonal) { + if ($this->stat('')) + return true; + return false; + } else { + $smb = new \smb(); + $pu = $smb->parse_url($this->constructUrl('')); + + // Attempt to connect anonymously + $pu['user'] = ''; + $pu['pass'] = ''; + + // Share cannot be checked if dynamic + if ($this->username_as_share) { + if ($smb->look($pu)) + return true; + else + return false; + } + if (!$pu['share']) + return false; + + // The following error messages are expected due to anonymous login + $regexp = array( + '(NT_STATUS_ACCESS_DENIED)' => 'skip' + ) + $smb->getRegexp(); + + if ($smb->client("-d 0 " . escapeshellarg('//' . $pu['host'] . '/' . $pu['share']) . " -c exit", $pu, $regexp)) + return true; + else + return false; + } + } } -- GitLab From 93b984ecf8da4148fa10a72a35ce5cba371c7a87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Wed, 26 Mar 2014 15:36:55 +0100 Subject: [PATCH 112/296] css files are not to be routed through index.php anymore --- lib/private/urlgenerator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/urlgenerator.php b/lib/private/urlgenerator.php index 44b46ef6700..b7ae8dd0f60 100644 --- a/lib/private/urlgenerator.php +++ b/lib/private/urlgenerator.php @@ -60,7 +60,7 @@ class URLGenerator implements IURLGenerator { $app_path = \OC_App::getAppPath($app); // Check if the app is in the app folder if ($app_path && file_exists($app_path . '/' . $file)) { - if (substr($file, -3) == 'php' || substr($file, -3) == 'css') { + if (substr($file, -3) == 'php') { $urlLinkTo = \OC::$WEBROOT . '/index.php/apps/' . $app; if ($frontControllerActive) { -- GitLab From cd5ebac7c40ad045828ea44c533b57fa25f01177 Mon Sep 17 00:00:00 2001 From: Robin McCorkell Date: Wed, 26 Mar 2014 11:22:47 +0000 Subject: [PATCH 113/296] Fix error in $isPersonal setting --- apps/files_external/lib/config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index 043265d8982..472c3963d51 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -349,7 +349,7 @@ class OC_Mount_Config { 'backend' => $backends[$mount['class']]['backend'], 'options' => $mount['options'], 'applicable' => array('groups' => array(), 'users' => array($user)), - 'status' => self::getBackendStatus($mount['class'], $mount['options'], true) + 'status' => self::getBackendStatus($mount['class'], $mount['options'], false) ); $hash = self::makeConfigHash($config); // If an existing config exists (with same class, mountpoint and options) -- GitLab From a1dca821f9c2cf770b6884e943a0841c0ab6171d Mon Sep 17 00:00:00 2001 From: Robin McCorkell Date: Wed, 26 Mar 2014 15:11:09 +0000 Subject: [PATCH 114/296] Use braces on single line if statements --- apps/files_external/lib/smb_oc.php | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/apps/files_external/lib/smb_oc.php b/apps/files_external/lib/smb_oc.php index ac325cd4fbc..0c79c06c5df 100644 --- a/apps/files_external/lib/smb_oc.php +++ b/apps/files_external/lib/smb_oc.php @@ -54,8 +54,9 @@ class SMB_OC extends \OC\Files\Storage\SMB { public function test($isPersonal = true) { if ($isPersonal) { - if ($this->stat('')) + if ($this->stat('')) { return true; + } return false; } else { $smb = new \smb(); @@ -67,23 +68,26 @@ class SMB_OC extends \OC\Files\Storage\SMB { // Share cannot be checked if dynamic if ($this->username_as_share) { - if ($smb->look($pu)) + if ($smb->look($pu)) { return true; - else + } else { return false; + } } - if (!$pu['share']) + if (!$pu['share']) { return false; + } // The following error messages are expected due to anonymous login $regexp = array( '(NT_STATUS_ACCESS_DENIED)' => 'skip' ) + $smb->getRegexp(); - if ($smb->client("-d 0 " . escapeshellarg('//' . $pu['host'] . '/' . $pu['share']) . " -c exit", $pu, $regexp)) + if ($smb->client("-d 0 " . escapeshellarg('//' . $pu['host'] . '/' . $pu['share']) . " -c exit", $pu, $regexp)) { return true; - else + } else { return false; + } } } } -- GitLab From eeaefd84c3911a166920084947ad1018c744e6a6 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Wed, 26 Mar 2014 16:32:09 +0100 Subject: [PATCH 115/296] change mobile breakpoint for shared view to 768px as well --- apps/files_sharing/css/mobile.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_sharing/css/mobile.css b/apps/files_sharing/css/mobile.css index 988ae862efa..333c4c77fc9 100644 --- a/apps/files_sharing/css/mobile.css +++ b/apps/files_sharing/css/mobile.css @@ -1,4 +1,4 @@ -@media only screen and (max-width: 600px) { +@media only screen and (max-width: 768px) { /* make header scroll up for single shares, more view of content on small screens */ #header.share-file { -- GitLab From 50dba97bdecbb48cdc5c721973c812421a717283 Mon Sep 17 00:00:00 2001 From: Robin McCorkell Date: Wed, 26 Mar 2014 15:43:03 +0000 Subject: [PATCH 116/296] Miscellaneous text fixes for core apps --- apps/files_encryption/appinfo/info.xml | 2 +- apps/files_versions/appinfo/info.xml | 2 +- apps/user_ldap/appinfo/info.xml | 4 ++-- apps/user_webdavauth/appinfo/info.xml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/apps/files_encryption/appinfo/info.xml b/apps/files_encryption/appinfo/info.xml index ab47de828b9..15a09a29f51 100644 --- a/apps/files_encryption/appinfo/info.xml +++ b/apps/files_encryption/appinfo/info.xml @@ -2,7 +2,7 @@ files_encryption Encryption - The ownCloud files encryption system provides server side-encryption. After the app was enabled you need to re-login to initialize your encryption keys. Please note that server side encryption requires that the ownCloud server admin can be trusted. The main purpose of this app is the encryption of files that are stored on externally mounted storages. + The ownCloud files encryption system provides server side-encryption. After the app is enabled you need to re-login to initialize your encryption keys. Please note that server side encryption requires that the ownCloud server admin can be trusted. The main purpose of this app is the encryption of files that are stored on externally mounted storages. AGPL Sam Tuke, Bjoern Schiessle, Florin Peter 4 diff --git a/apps/files_versions/appinfo/info.xml b/apps/files_versions/appinfo/info.xml index 661d64aa979..a735caee945 100644 --- a/apps/files_versions/appinfo/info.xml +++ b/apps/files_versions/appinfo/info.xml @@ -9,7 +9,7 @@ ownCloud supports simple version control for files. The versioning app expires old versions automatically to make sure that - the user doesn't run out of space. Following pattern is used to delete + the user doesn't run out of space. The following pattern is used to delete old versions: For the first 10 seconds ownCloud keeps one version every 2 seconds; For the first hour ownCloud keeps one version every minute; diff --git a/apps/user_ldap/appinfo/info.xml b/apps/user_ldap/appinfo/info.xml index 9cc908e8522..e4a4375a737 100644 --- a/apps/user_ldap/appinfo/info.xml +++ b/apps/user_ldap/appinfo/info.xml @@ -2,8 +2,8 @@ user_ldap LDAP user and group backend - Authenticate users and groups by LDAP respectively Active - Directory. + Authenticate users and groups through LDAP, such as OpenLDAP + or Active Directory. This app is not compatible with the WebDAV user backend. diff --git a/apps/user_webdavauth/appinfo/info.xml b/apps/user_webdavauth/appinfo/info.xml index 76b314e48aa..20c5909cc12 100755 --- a/apps/user_webdavauth/appinfo/info.xml +++ b/apps/user_webdavauth/appinfo/info.xml @@ -4,7 +4,7 @@ WebDAV user backend Authenticate users by a WebDAV call. You can use any WebDAV server, ownCloud server or other webserver to authenticate. It should return http 200 for right credentials and http 401 for wrong ones. - This app is not compatible to the LDAP user and group backend. + This app is not compatible with the LDAP user and group backend. AGPL Frank Karlitschek 4.93 -- GitLab From fa00a18677e0b95784fdb433aa3616dc74da1154 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Wed, 26 Mar 2014 17:20:40 +0100 Subject: [PATCH 117/296] Fixed mtime reading from OpenStack API The API seems to return floating point values, which prevents the hasUpdated() check to work and causes the scanner to rescan everything every time. --- apps/files_external/lib/swift.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/files_external/lib/swift.php b/apps/files_external/lib/swift.php index 7a56fcfc8b7..a6955d400f4 100644 --- a/apps/files_external/lib/swift.php +++ b/apps/files_external/lib/swift.php @@ -251,6 +251,10 @@ class Swift extends \OC\Files\Storage\Common { $mtime = $object->extra_headers['X-Object-Meta-Timestamp']; } + if (!empty($mtime)) { + $mtime = floor($mtime); + } + $stat = array(); $stat['size'] = $object->content_length; $stat['mtime'] = $mtime; -- GitLab From b48510c978810a485f3ab72b28ec1c32350a6332 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Wed, 26 Mar 2014 18:14:35 +0100 Subject: [PATCH 118/296] Use the correct resolve method to resolve file storage When detecting whether the file to be downloaded is on external storage, the correct path needs to be used. It turns out that \OC\Files\View is needed to resolve the path correctly relative to the user's home. --- lib/private/files.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/private/files.php b/lib/private/files.php index 7e7a27f48dc..bfe6d3c02da 100644 --- a/lib/private/files.php +++ b/lib/private/files.php @@ -148,8 +148,9 @@ class OC_Files { set_time_limit($executionTime); } else { if ($xsendfile) { + $view = \OC\Files\Filesystem::getView(); /** @var $storage \OC\Files\Storage\Storage */ - list($storage) = \OC\Files\Filesystem::resolvePath($filename); + list($storage) = $view->resolvePath($filename); if ($storage->isLocal()) { self::addSendfileHeader(\OC\Files\Filesystem::getLocalFile($filename)); } else { -- GitLab From ed0cba0ff4f84c9bae83ecfe7b7b6bdcb2169413 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Thu, 27 Mar 2014 01:56:30 -0400 Subject: [PATCH 119/296] [tx-robot] updated from transifex --- apps/files_trashbin/l10n/ar.php | 1 + l10n/ar/files.po | 30 ++++++------ l10n/ar/files_trashbin.po | 11 +++-- l10n/ar/user_ldap.po | 4 +- l10n/bg_BG/files.po | 72 ++++++++++++++--------------- l10n/bg_BG/user_ldap.po | 4 +- l10n/bn_BD/files.po | 72 ++++++++++++++--------------- l10n/bn_BD/user_ldap.po | 4 +- l10n/bs/files.po | 72 ++++++++++++++--------------- l10n/bs/user_ldap.po | 4 +- l10n/ca/files.po | 30 ++++++------ l10n/ca/settings.po | 9 ++-- l10n/ca/user_ldap.po | 4 +- l10n/cs_CZ/files.po | 30 ++++++------ l10n/cs_CZ/user_ldap.po | 4 +- l10n/cy_GB/files.po | 30 ++++++------ l10n/cy_GB/user_ldap.po | 4 +- l10n/da/files.po | 30 ++++++------ l10n/da/settings.po | 32 ++++++------- l10n/da/user_ldap.po | 4 +- l10n/de/files.po | 30 ++++++------ l10n/de/settings.po | 12 ++--- l10n/de/user_ldap.po | 4 +- l10n/de_AT/files.po | 72 ++++++++++++++--------------- l10n/de_AT/user_ldap.po | 4 +- l10n/de_CH/files.po | 30 ++++++------ l10n/de_CH/user_ldap.po | 6 +-- l10n/de_DE/files.po | 30 ++++++------ l10n/de_DE/settings.po | 12 ++--- l10n/de_DE/user_ldap.po | 6 +-- l10n/el/files.po | 30 ++++++------ l10n/el/user_ldap.po | 4 +- l10n/en_GB/files.po | 30 ++++++------ l10n/en_GB/settings.po | 12 ++--- l10n/en_GB/user_ldap.po | 4 +- l10n/eo/files.po | 30 ++++++------ l10n/eo/user_ldap.po | 4 +- l10n/es/files.po | 30 ++++++------ l10n/es/settings.po | 12 ++--- l10n/es/user_ldap.po | 8 ++-- l10n/es_AR/files.po | 30 ++++++------ l10n/es_AR/user_ldap.po | 4 +- l10n/es_MX/files.po | 30 ++++++------ l10n/es_MX/user_ldap.po | 4 +- l10n/et_EE/files.po | 30 ++++++------ l10n/et_EE/user_ldap.po | 4 +- l10n/eu/files.po | 30 ++++++------ l10n/eu/user_ldap.po | 4 +- l10n/eu_ES/files.po | 72 ++++++++++++++--------------- l10n/eu_ES/user_ldap.po | 4 +- l10n/fa/files.po | 30 ++++++------ l10n/fa/user_ldap.po | 4 +- l10n/fi_FI/files.po | 30 ++++++------ l10n/fi_FI/settings.po | 12 ++--- l10n/fi_FI/user_ldap.po | 4 +- l10n/fr/files.po | 30 ++++++------ l10n/fr/user_ldap.po | 4 +- l10n/gl/files.po | 30 ++++++------ l10n/gl/user_ldap.po | 4 +- l10n/he/files.po | 30 ++++++------ l10n/he/user_ldap.po | 4 +- l10n/hi/files.po | 72 ++++++++++++++--------------- l10n/hi/user_ldap.po | 4 +- l10n/hr/files.po | 72 ++++++++++++++--------------- l10n/hr/user_ldap.po | 4 +- l10n/hu_HU/files.po | 30 ++++++------ l10n/hu_HU/user_ldap.po | 4 +- l10n/hy/files.po | 72 ++++++++++++++--------------- l10n/hy/user_ldap.po | 4 +- l10n/ia/files.po | 72 ++++++++++++++--------------- l10n/ia/user_ldap.po | 4 +- l10n/id/files.po | 30 ++++++------ l10n/id/user_ldap.po | 4 +- l10n/is/files.po | 72 ++++++++++++++--------------- l10n/is/user_ldap.po | 4 +- l10n/it/files.po | 30 ++++++------ l10n/it/settings.po | 12 ++--- l10n/it/user_ldap.po | 4 +- l10n/ja/files.po | 30 ++++++------ l10n/ja/user_ldap.po | 4 +- l10n/ka_GE/files.po | 30 ++++++------ l10n/ka_GE/user_ldap.po | 4 +- l10n/km/files.po | 72 ++++++++++++++--------------- l10n/km/user_ldap.po | 4 +- l10n/ko/files.po | 30 ++++++------ l10n/ko/user_ldap.po | 4 +- l10n/ku_IQ/files.po | 72 ++++++++++++++--------------- l10n/ku_IQ/user_ldap.po | 4 +- l10n/lb/files.po | 72 ++++++++++++++--------------- l10n/lb/user_ldap.po | 4 +- l10n/lt_LT/files.po | 30 ++++++------ l10n/lt_LT/user_ldap.po | 4 +- l10n/lv/files.po | 30 ++++++------ l10n/lv/user_ldap.po | 4 +- l10n/mk/files.po | 30 ++++++------ l10n/mk/user_ldap.po | 4 +- l10n/ms_MY/files.po | 72 ++++++++++++++--------------- l10n/ms_MY/user_ldap.po | 4 +- l10n/nb_NO/files.po | 30 ++++++------ l10n/nb_NO/user_ldap.po | 4 +- l10n/nl/files.po | 30 ++++++------ l10n/nl/settings.po | 12 ++--- l10n/nl/user_ldap.po | 4 +- l10n/nn_NO/files.po | 30 ++++++------ l10n/nn_NO/user_ldap.po | 4 +- l10n/oc/files.po | 72 ++++++++++++++--------------- l10n/oc/user_ldap.po | 4 +- l10n/pl/files.po | 30 ++++++------ l10n/pl/settings.po | 12 ++--- l10n/pl/user_ldap.po | 4 +- l10n/pt_BR/files.po | 30 ++++++------ l10n/pt_BR/user_ldap.po | 4 +- l10n/pt_PT/files.po | 30 ++++++------ l10n/pt_PT/user_ldap.po | 4 +- l10n/ro/files.po | 30 ++++++------ l10n/ro/user_ldap.po | 4 +- l10n/ru/files.po | 30 ++++++------ l10n/ru/user_ldap.po | 4 +- l10n/si_LK/files.po | 72 ++++++++++++++--------------- l10n/si_LK/user_ldap.po | 4 +- l10n/sk/files.po | 72 ++++++++++++++--------------- l10n/sk/user_ldap.po | 4 +- l10n/sk_SK/files.po | 30 ++++++------ l10n/sk_SK/user_ldap.po | 4 +- l10n/sl/files.po | 30 ++++++------ l10n/sl/user_ldap.po | 4 +- l10n/sq/files.po | 30 ++++++------ l10n/sq/user_ldap.po | 4 +- l10n/sr/files.po | 30 ++++++------ l10n/sr/user_ldap.po | 4 +- l10n/sr@latin/files.po | 72 ++++++++++++++--------------- l10n/sr@latin/user_ldap.po | 4 +- l10n/sv/files.po | 30 ++++++------ l10n/sv/user_ldap.po | 4 +- l10n/ta_LK/files.po | 72 ++++++++++++++--------------- l10n/ta_LK/user_ldap.po | 4 +- l10n/te/files.po | 72 ++++++++++++++--------------- l10n/te/user_ldap.po | 4 +- 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 | 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 | 30 ++++++------ l10n/th_TH/user_ldap.po | 4 +- l10n/tr/files.po | 30 ++++++------ l10n/tr/user_ldap.po | 4 +- l10n/ug/files.po | 30 ++++++------ l10n/ug/user_ldap.po | 4 +- l10n/uk/files.po | 30 ++++++------ l10n/uk/user_ldap.po | 4 +- l10n/vi/files.po | 30 ++++++------ l10n/vi/user_ldap.po | 4 +- l10n/zh_CN/files.po | 30 ++++++------ l10n/zh_CN/user_ldap.po | 4 +- l10n/zh_HK/files.po | 72 ++++++++++++++--------------- l10n/zh_HK/user_ldap.po | 4 +- l10n/zh_TW/files.po | 30 ++++++------ l10n/zh_TW/user_ldap.po | 4 +- settings/l10n/ca.php | 1 + settings/l10n/da.php | 13 ++++++ settings/l10n/de.php | 3 ++ settings/l10n/de_DE.php | 3 ++ settings/l10n/en_GB.php | 3 ++ settings/l10n/es.php | 3 ++ settings/l10n/fi_FI.php | 3 ++ settings/l10n/it.php | 3 ++ settings/l10n/nl.php | 3 ++ settings/l10n/pl.php | 3 ++ 176 files changed, 1781 insertions(+), 1740 deletions(-) diff --git a/apps/files_trashbin/l10n/ar.php b/apps/files_trashbin/l10n/ar.php index 68c51d1cc7d..4084daa127a 100644 --- a/apps/files_trashbin/l10n/ar.php +++ b/apps/files_trashbin/l10n/ar.php @@ -4,6 +4,7 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "تعذّر استرجاع %s ", "Deleted files" => "حذف الملفات", "Error" => "خطأ", +"restored" => "تمت الاستعادة", "Nothing in here. Your trash bin is empty!" => "لا يوجد شيء هنا. سلة المهملات خاليه.", "Name" => "اسم", "Restore" => "استعيد", diff --git a/l10n/ar/files.po b/l10n/ar/files.po index bade00bb3fb..03c7ac1650d 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "اسم غير صحيح , الرموز '\\', '/', '<', '>', ':', '\"', '|', '?' و \"*\" غير مسموح استخدامها" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -90,54 +90,54 @@ msgstr "غير قادر على تحميل المجلد" msgid "Invalid Token" msgstr "علامة غير صالحة" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "لم يتم رفع أي ملف , خطأ غير معروف" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "تم ترفيع الملفات بنجاح." -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "حجم الملف المرفوع تجاوز قيمة upload_max_filesize الموجودة في ملف php.ini " -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "حجم الملف الذي تريد ترفيعه أعلى مما MAX_FILE_SIZE يسمح به في واجهة ال HTML." -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "تم ترفيع جزء من الملفات الذي تريد ترفيعها فقط" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "لم يتم ترفيع أي من الملفات" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "المجلد المؤقت غير موجود" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "خطأ في الكتابة على القرص الصلب" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "لا يوجد مساحة تخزينية كافية" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "*فشلت علمية الرفع. تعذر إيجاد الملف الذي تم رفعه.\n*فشلت علمية التحميل. تعذر إيجاد الملف الذي تم تحميله." -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "فشلت عملية الرفع. تعذر الحصول على معلومات الملف." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "مسار غير صحيح." diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index 4eef8c34320..e354e3194c0 100644 --- a/l10n/ar/files_trashbin.po +++ b/l10n/ar/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Abderraouf Mehdi Bouhali , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-19 06:40+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:10+0000\n" +"Last-Translator: Abderraouf Mehdi Bouhali \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,9 +36,9 @@ msgstr "حذف الملفات" msgid "Error" msgstr "خطأ" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" -msgstr "" +msgstr "تمت الاستعادة" #: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index 7b68c2ffef2..a4e3832904c 100644 --- a/l10n/ar/user_ldap.po +++ b/l10n/ar/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-21 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 11:40+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: m.shehab \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index bb8c6f450fa..6d6412edeed 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -17,66 +17,66 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Файлът е качен успешно" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Файлът който се опитвате да качите надвишава стойностите в MAX_FILE_SIZE в HTML формата." -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Файлът е качен частично" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Фахлът не бе качен" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Липсва временна папка" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Възникна проблем при запис в диска" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Невалидна директория." @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Качването е спряно." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index 658e5fef623..78f3b6a1147 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 199301ae110..43c3d26d9a4 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -17,66 +17,66 @@ msgstr "" "Language: bn_BD\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "%s কে স্থানান্তর করা সম্ভব হলো না - এই নামের ফাইল বিদ্যমান" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "%s কে স্থানান্তর করা সম্ভব হলো না" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "ফাইলের নামটি ফাঁকা রাখা যাবে না।" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "নামটি সঠিক নয়, '\\', '/', '<', '>', ':', '\"', '|', '?' এবং '*' অনুমোদিত নয়।" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "কোন ফাইল আপলোড করা হয় নি। সমস্যার কারণটি অজ্ঞাত।" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "কোন সমস্যা হয় নি, ফাইল আপলোড সুসম্পন্ন হয়েছে।" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "আপলোড করা ফাইলটি php.ini তে বর্ণিত upload_max_filesize নির্দেশিত আয়তন অতিক্রম করছেঃ" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "আপলোড করা ফাইলটি HTML ফর্মে উল্লিখিত MAX_FILE_SIZE নির্ধারিত ফাইলের সর্বোচ্চ আকার অতিক্রম করতে চলেছে " -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "আপলোড করা ফাইলটি আংশিক আপলোড করা হয়েছে" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "কোন ফাইল আপলোড করা হয় নি" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "অস্থায়ী ফোল্ডারটি হারানো গিয়েছে" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "ডিস্কে লিখতে ব্যর্থ" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "ভুল ডিরেক্টরি" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "আপলোড বাতিল করা হয়েছে।" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ফাইল আপলোড চলমান। এই পৃষ্ঠা পরিত্যাগ করলে আপলোড বাতিল করা হবে।" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} টি বিদ্যমান" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index 5e7729e1d4d..a7caeb40194 100644 --- a/l10n/bn_BD/user_ldap.po +++ b/l10n/bn_BD/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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/bs/files.po b/l10n/bs/files.po index 0bd442a17ae..09ae4d496d7 100644 --- a/l10n/bs/files.po +++ b/l10n/bs/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -17,66 +17,66 @@ msgstr "" "Language: bs\n" "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);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/bs/user_ldap.po b/l10n/bs/user_ldap.po index 3ec9651aca4..268fdc806b2 100644 --- a/l10n/bs/user_ldap.po +++ b/l10n/bs/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index d3df8a0bd17..f504332b2d6 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -46,7 +46,7 @@ msgid "" "allowed." msgstr "El nóm no és vàlid, '\\', '/', '<', '>', ':', '\"', '|', '?' i '*' no estan permesos." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "La carpeta de destí s'ha mogut o eliminat." @@ -92,54 +92,54 @@ msgstr "No es pot establir la carpeta de pujada." msgid "Invalid Token" msgstr "Testimoni no vàlid" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "No s'ha carregat cap fitxer. Error desconegut" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "No hi ha errors, el fitxer s'ha carregat correctament" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "L’arxiu que voleu carregar supera el màxim definit en la directiva upload_max_filesize del php.ini:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "El fitxer carregat supera la directiva MAX_FILE_SIZE especificada al formulari HTML" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "El fitxer només s'ha carregat parcialment" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "No s'ha carregat cap fitxer" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Falta un fitxer temporal" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Ha fallat en escriure al disc" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "No hi ha prou espai disponible" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "La pujada ha fallat. El fitxer pujat no s'ha trobat." -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "La pujada ha fallat. No s'ha pogut obtenir informació del fitxer." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Directori no vàlid." diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index cb43c907693..9368907aeb2 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -4,14 +4,15 @@ # # Translators: # rogerc, 2013-2014 +# Josep Torné , 2014 # rogerc, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 13:43+0000\n" +"Last-Translator: Josep Torné \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" @@ -431,7 +432,7 @@ msgstr "Cron" #: templates/admin.php:167 #, php-format msgid "Last cron was executed at %s." -msgstr "" +msgstr "L'últim cron s'ha executat el %s" #: templates/admin.php:170 #, php-format diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index ce1cd4df022..90f2c187f2f 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-19 01:55-0400\n" -"PO-Revision-Date: 2014-03-18 08:52+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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 aae75b1c0b8..cdc38895bf0 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -50,7 +50,7 @@ msgid "" "allowed." msgstr "Neplatný název, znaky '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nejsou povoleny." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Cílová složka byla přesunuta nebo smazána." @@ -96,54 +96,54 @@ msgstr "Nelze nastavit adresář pro nahrané soubory." msgid "Invalid Token" msgstr "Neplatný token" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Žádný soubor nebyl odeslán. Neznámá chyba" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Soubor byl odeslán úspěšně" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Odesílaný soubor přesahuje velikost upload_max_filesize povolenou v php.ini:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Odeslaný soubor přesáhl svou velikostí parametr MAX_FILE_SIZE specifikovaný ve formuláři HTML" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Soubor byl odeslán pouze částečně" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Žádný soubor nebyl odeslán" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Chybí adresář pro dočasné soubory" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Zápis na disk selhal" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Nedostatek dostupného úložného prostoru" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Nahrávání selhalo. Nepodařilo se nalézt nahraný soubor." -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Nahrávání selhalo. Nepodařilo se získat informace o souboru." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Neplatný adresář" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index e9fd629b0b9..f20b90fcd2d 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-23 22:50+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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 4af8ab8a905..f9ca4e11176 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "Enw annilys, ni chaniateir, '\\', '/', '<', '>', ':', '\"', '|', '?' na '*'." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Ni lwythwyd ffeil i fyny. Gwall anhysbys." -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Does dim gwall, llwythodd y ffeil i fyny'n llwyddiannus" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Mae'r ffeil lwythwyd i fyny'n fwy na chyfarwyddeb upload_max_filesize yn php.ini:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Mae'r ffeil lwythwyd i fyny'n fwy na chyfarwyddeb MAX_FILE_SIZE bennwyd yn y ffurflen HTML" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Dim ond yn rhannol y llwythwyd y ffeil i fyny" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Ni lwythwyd ffeil i fyny" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Plygell dros dro yn eisiau" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Methwyd ysgrifennu i'r ddisg" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Dim digon o le storio ar gael" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Cyfeiriadur annilys." diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po index d0c43b131c4..cc9dff4f5d9 100644 --- a/l10n/cy_GB/user_ldap.po +++ b/l10n/cy_GB/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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 74ad1a5d02c..16d923ac96e 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -47,7 +47,7 @@ msgid "" "allowed." msgstr "Ugyldigt navn, '\\', '/', '<', '>', ':' | '?', '\"', '', og '*' er ikke tilladt." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Mappen er blevet slettet eller fjernet." @@ -93,54 +93,54 @@ msgstr "Ude af stand til at vælge upload mappe." msgid "Invalid Token" msgstr "Ugyldig Token " -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Ingen fil blev uploadet. Ukendt fejl." -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Der skete ingen fejl, filen blev succesfuldt uploadet" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Den uploadede fil overstiger MAX_FILE_SIZE indstilingen, som specificeret i HTML formularen" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Filen blev kun delvist uploadet." -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Ingen fil uploadet" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Manglende midlertidig mappe." -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Fejl ved skrivning til disk." -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Der er ikke nok plads til rådlighed" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Upload fejlede. Kunne ikke finde den uploadede fil." -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Upload fejlede. Kunne ikke hente filinformation." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Ugyldig mappe." diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 9a4cdd0e910..ecc1285414a 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 09:30+0000\n" +"Last-Translator: Sappe\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,7 +32,7 @@ msgstr "Gemt" #: admin/controller.php:90 msgid "test email settings" -msgstr "" +msgstr "test email indstillinger" #: admin/controller.php:91 msgid "If you received this email, the settings seem to be correct." @@ -326,15 +326,15 @@ msgstr "" #: templates/admin.php:19 msgid "NT LAN Manager" -msgstr "" +msgstr "NT LAN Manager" #: templates/admin.php:24 msgid "SSL" -msgstr "" +msgstr "SSL" #: templates/admin.php:25 msgid "TLS" -msgstr "" +msgstr "TLS" #: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" @@ -535,7 +535,7 @@ msgstr "Forbind venligst til din %s via HTTPS for at aktivere eller deaktivere S #: templates/admin.php:294 msgid "Email Server" -msgstr "" +msgstr "Email Server" #: templates/admin.php:296 msgid "This is used for sending out notifications." @@ -543,11 +543,11 @@ msgstr "" #: templates/admin.php:327 msgid "From address" -msgstr "" +msgstr "Fra adresse" #: templates/admin.php:349 msgid "Authentication required" -msgstr "" +msgstr "Godkendelse påkrævet" #: templates/admin.php:353 msgid "Server address" @@ -559,23 +559,23 @@ msgstr "Port" #: templates/admin.php:362 msgid "Credentials" -msgstr "" +msgstr "Brugeroplysninger" #: templates/admin.php:363 msgid "SMTP Username" -msgstr "" +msgstr "SMTP Brugernavn" #: templates/admin.php:366 msgid "SMTP Password" -msgstr "" +msgstr "SMTP Kodeord" #: templates/admin.php:370 msgid "Test email settings" -msgstr "" +msgstr "Test email indstillinger" #: templates/admin.php:371 msgid "Send email" -msgstr "" +msgstr "Send email" #: templates/admin.php:376 msgid "Log" @@ -621,7 +621,7 @@ msgstr "Vælg en App" #: templates/apps.php:42 msgid "Documentation:" -msgstr "" +msgstr "Dokumentation:" #: templates/apps.php:48 msgid "See application page at apps.owncloud.com" diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index 67ac87e3643..91bc2bece8a 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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 1b89a09ee32..d6ab1aa2101 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -50,7 +50,7 @@ msgid "" "allowed." msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Der Zielordner wurde verschoben oder gelöscht." @@ -96,54 +96,54 @@ msgstr "Das Upload-Verzeichnis konnte nicht gesetzt werden." msgid "Invalid Token" msgstr "Ungültiges Merkmal" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Keine Datei hochgeladen. Unbekannter Fehler" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen." -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Die Datei ist größer, als die MAX_FILE_SIZE Direktive erlaubt, die im HTML-Formular spezifiziert ist" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Die Datei konnte nur teilweise übertragen werden" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Keine Datei konnte übertragen werden." -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Kein temporärer Ordner vorhanden" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Fehler beim Schreiben auf die Festplatte" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Nicht genug Speicher vorhanden." -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Hochladen fehlgeschlagen. Hochgeladene Datei konnte nicht gefunden werden." -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Hochladen fehlgeschlagen. Dateiinformationen konnten nicht abgerufen werden." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Ungültiges Verzeichnis." diff --git a/l10n/de/settings.po b/l10n/de/settings.po index cb821401a7b..b120125988d 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 11:50+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" @@ -438,18 +438,18 @@ msgstr "Cron" #: templates/admin.php:167 #, php-format msgid "Last cron was executed at %s." -msgstr "" +msgstr "Letzter Cron wurde um %s ausgeführt." #: templates/admin.php:170 #, php-format msgid "" "Last cron was executed at %s. This is more than an hour ago, something seems" " wrong." -msgstr "" +msgstr "Letzter Cron wurde um %s ausgeführt. Dies ist mehr als eine Stunde her, möglicherweise liegt ein Fehler vor." #: templates/admin.php:174 msgid "Cron was not executed yet!" -msgstr "" +msgstr "Cron wurde bis jetzt noch nicht ausgeführt!" #: templates/admin.php:184 msgid "Execute one task with each page loaded" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index b41d11b2bd9..61ce5eaac60 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 13:11+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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_AT/files.po b/l10n/de_AT/files.po index 8c9106e7e2e..1cff24b0dea 100644 --- a/l10n/de_AT/files.po +++ b/l10n/de_AT/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -17,66 +17,66 @@ msgstr "" "Language: de_AT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/de_AT/user_ldap.po b/l10n/de_AT/user_ldap.po index 8fe6722c368..1e86832a9e0 100644 --- a/l10n/de_AT/user_ldap.po +++ b/l10n/de_AT/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_CH/files.po b/l10n/de_CH/files.po index a5326b44b9c..223375e7fa1 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -51,7 +51,7 @@ msgid "" "allowed." msgstr "Ungültiger Name, «\\», «/», «<», «>», «:», «\"», «|», «?» und «*» sind nicht zulässig." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -97,54 +97,54 @@ msgstr "Das Upload-Verzeichnis konnte nicht gesetzt werden." msgid "Invalid Token" msgstr "Ungültiges Merkmal" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Keine Datei hochgeladen. Unbekannter Fehler" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen." -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Die Datei ist grösser, als die MAX_FILE_SIZE Vorgabe erlaubt, die im HTML-Formular spezifiziert ist" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Die Datei konnte nur teilweise übertragen werden" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Keine Datei konnte übertragen werden." -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Kein temporärer Ordner vorhanden" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Fehler beim Schreiben auf die Festplatte" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Nicht genug Speicher vorhanden." -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Ungültiges Verzeichnis." diff --git a/l10n/de_CH/user_ldap.po b/l10n/de_CH/user_ldap.po index c71f7f57765..14344bc7b1d 100644 --- a/l10n/de_CH/user_ldap.po +++ b/l10n/de_CH/user_ldap.po @@ -10,13 +10,13 @@ # Marcel Kühlhorn , 2013 # Mario Siegmann , 2013 # multimill , 2012 -# traductor , 2012-2013 +# traductor, 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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 46cc403bb2b..5e50b0b468c 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -53,7 +53,7 @@ msgid "" "allowed." msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Der Ziel-Ordner wurde verschoben oder gelöscht." @@ -99,54 +99,54 @@ msgstr "Das Upload-Verzeichnis konnte nicht gesetzt werden." msgid "Invalid Token" msgstr "Ungültiges Merkmal" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Keine Datei hochgeladen. Unbekannter Fehler" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen." -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Die Datei ist größer, als die MAX_FILE_SIZE Vorgabe erlaubt, die im HTML-Formular spezifiziert ist" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Die Datei konnte nur teilweise übertragen werden" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Keine Datei konnte übertragen werden." -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Kein temporärer Ordner vorhanden" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Fehler beim Schreiben auf die Festplatte" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Nicht genug Speicher vorhanden." -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Hochladen fehlgeschlagen. Die hochgeladene Datei konnte nicht gefunden werden." -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Hochladen fehlgeschlagen. Die Dateiinformationen konnten nicht abgerufen werden." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Ungültiges Verzeichnis." diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 9143ffdf82b..2af94421409 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 11:50+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" @@ -438,18 +438,18 @@ msgstr "Cron" #: templates/admin.php:167 #, php-format msgid "Last cron was executed at %s." -msgstr "" +msgstr "Letzter Cron wurde um %s ausgeführt." #: templates/admin.php:170 #, php-format msgid "" "Last cron was executed at %s. This is more than an hour ago, something seems" " wrong." -msgstr "" +msgstr "Letzter Cron wurde um %s ausgeführt. Dies ist mehr als eine Stunde her, möglicherweise liegt ein Fehler vor." #: templates/admin.php:174 msgid "Cron was not executed yet!" -msgstr "" +msgstr "Cron wurde bis jetzt noch nicht ausgeführt!" #: templates/admin.php:184 msgid "Execute one task with each page loaded" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index c96d99dfa1a..721016886e3 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -7,14 +7,14 @@ # Marcel Kühlhorn , 2013 # Mario Siegmann , 2013-2014 # JamFX , 2013 -# traductor , 2013 +# traductor, 2013 # noxin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 13:11+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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/el/files.po b/l10n/el/files.po index 48163996d32..fc989942bb6 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -47,7 +47,7 @@ msgid "" "allowed." msgstr "Μη έγκυρο όνομα, '\\', '/', '<', '>', ':', '\"', '|', '?' και '*' δεν επιτρέπονται." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -93,54 +93,54 @@ msgstr "Αδυναμία ορισμού καταλόγου αποστολής." msgid "Invalid Token" msgstr "Μη έγκυρο Token" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Δεν ανέβηκε κάποιο αρχείο. Άγνωστο σφάλμα" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Δεν υπάρχει σφάλμα, το αρχείο εστάλει επιτυχώς" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Το αρχείο που εστάλει υπερβαίνει την οδηγία μέγιστου επιτρεπτού μεγέθους \"upload_max_filesize\" του php.ini" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Το ανεβασμένο αρχείο υπερβαίνει το MAX_FILE_SIZE που ορίζεται στην HTML φόρμα" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Το αρχείο εστάλει μόνο εν μέρει" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Κανένα αρχείο δεν στάλθηκε" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Λείπει ο προσωρινός φάκελος" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Αποτυχία εγγραφής στο δίσκο" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Μη επαρκής διαθέσιμος αποθηκευτικός χώρος" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Η φόρτωση απέτυχε. Αδυναμία εύρεσης αρχείου προς φόρτωση." -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Η φόρτωση απέτυχε. Αδυναμία λήψης πληροφοριών αρχείων." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Μη έγκυρος φάκελος." diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index 5f0073e1a0d..f9c9174c553 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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 fcaa77bb69e..182341b8a25 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -43,7 +43,7 @@ msgid "" "allowed." msgstr "Invalid name: '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "The target folder has been moved or deleted." @@ -89,54 +89,54 @@ msgstr "Unable to set upload directory." msgid "Invalid Token" msgstr "Invalid Token" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "No file was uploaded. Unknown error" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "There is no error, the file uploaded successfully" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "The uploaded file was only partially uploaded" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "No file was uploaded" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Missing a temporary folder" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Failed to write to disk" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Not enough storage available" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Upload failed. Could not find uploaded file" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Upload failed. Could not get file info." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Invalid directory." diff --git a/l10n/en_GB/settings.po b/l10n/en_GB/settings.po index c88871fc4f4..f04a916b0cf 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: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 12:20+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" @@ -430,18 +430,18 @@ msgstr "Cron" #: templates/admin.php:167 #, php-format msgid "Last cron was executed at %s." -msgstr "" +msgstr "Last cron was executed at %s." #: templates/admin.php:170 #, php-format msgid "" "Last cron was executed at %s. This is more than an hour ago, something seems" " wrong." -msgstr "" +msgstr "Last cron was executed at %s. This is more than an hour ago, something seems wrong." #: templates/admin.php:174 msgid "Cron was not executed yet!" -msgstr "" +msgstr "Cron was not executed yet!" #: templates/admin.php:184 msgid "Execute one task with each page loaded" diff --git a/l10n/en_GB/user_ldap.po b/l10n/en_GB/user_ldap.po index a2648a790d3..334316ca9ef 100644 --- a/l10n/en_GB/user_ldap.po +++ b/l10n/en_GB/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 12:10+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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/eo/files.po b/l10n/eo/files.po index 7d8eee4479a..7518719c1a8 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -43,7 +43,7 @@ msgid "" "allowed." msgstr "Nevalida nomo: “\\”, “/”, “<”, “>”, “:”, “\"”, “|”, “?” kaj “*” ne permesatas." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -89,54 +89,54 @@ msgstr "Ne povis agordiĝi la alŝuta dosierujo." msgid "Invalid Token" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Neniu dosiero alŝutiĝis. Nekonata eraro." -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Ne estas eraro, la dosiero alŝutiĝis sukcese." -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "La dosiero alŝutita superas la regulon upload_max_filesize el php.ini: " -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "La dosiero alŝutita superas la regulon MAX_FILE_SIZE, kiu estas difinita en la HTML-formularo" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "la alŝutita dosiero nur parte alŝutiĝis" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Neniu dosiero alŝutiĝis." -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Mankas provizora dosierujo." -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Malsukcesis skribo al disko" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Ne haveblas sufiĉa memoro" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "La alŝuto malsukcesis. Ne troviĝis alŝutota dosiero." -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "La alŝuto malsukcesis. Ne povis ekhaviĝi informo pri dosiero." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Nevalida dosierujo." diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index 6f353ffd28f..1f0d5fdcec3 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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 a88b0ed95e1..b9d0e700b38 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -52,7 +52,7 @@ msgid "" "allowed." msgstr "Nombre inválido, los caracteres \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos " -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "La carpeta destino fue movida o eliminada." @@ -98,54 +98,54 @@ msgstr "Incapaz de crear directorio de subida." msgid "Invalid Token" msgstr "Token Inválido" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "No se subió ningún archivo. Error desconocido" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "No hubo ningún problema, el archivo se subió con éxito" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "El archivo subido sobrepasa la directiva 'upload_max_filesize' en php.ini:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "El archivo subido sobrepasa la directiva 'MAX_FILE_SIZE' especificada en el formulario HTML" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "El archivo subido fue sólo subido parcialmente" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "No se subió ningún archivo" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Falta la carpeta temporal" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Falló al escribir al disco" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "No hay suficiente espacio disponible" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Actualización fallida. No se pudo encontrar el archivo subido" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Actualización fallida. No se pudo obtener información del archivo." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Directorio inválido." diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 6884769d8ae..0a625464a1d 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 22:10+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" @@ -443,18 +443,18 @@ msgstr "Cron" #: templates/admin.php:167 #, php-format msgid "Last cron was executed at %s." -msgstr "" +msgstr "Cron fue ejecutado por última vez a las %s." #: templates/admin.php:170 #, php-format msgid "" "Last cron was executed at %s. This is more than an hour ago, something seems" " wrong." -msgstr "" +msgstr "Cron fue ejecutado por última vez a las %s. Esto fue hace más de una hora, algo anda mal." #: templates/admin.php:174 msgid "Cron was not executed yet!" -msgstr "" +msgstr "¡Cron aún no ha sido ejecutado!" #: templates/admin.php:184 msgid "Execute one task with each page loaded" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index 9058d328ef1..81a43116f95 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -4,7 +4,7 @@ # # Translators: # Agustin Ferrario , 2013 -# txelu , 2014 +# Jose Luis Tirado , 2014 # Maenso , 2013 # Raul Fernandez Garcia , 2013 # ordenet , 2013 @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 01:55-0400\n" -"PO-Revision-Date: 2014-03-12 21:20+0000\n" -"Last-Translator: txelu \n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"Last-Translator: Jose Luis Tirado \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" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 51663cf577a..02f0efea9be 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -46,7 +46,7 @@ msgid "" "allowed." msgstr "Nombre invalido, '\\', '/', '<', '>', ':', '\"', '|', '?' y '*' no están permitidos." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -92,54 +92,54 @@ msgstr "No fue posible crear el directorio de subida." msgid "Invalid Token" msgstr "Token Inválido" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "El archivo no fue subido. Error desconocido" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "No hay errores, el archivo fue subido con éxito" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "El archivo que intentás subir excede el tamaño definido por upload_max_filesize en el php.ini:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "El archivo subido sobrepasa el valor MAX_FILE_SIZE especificada en el formulario HTML" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "El archivo fue subido parcialmente" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "No se subió ningún archivo " -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Falta un directorio temporal" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Error al escribir en el disco" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "No hay suficiente almacenamiento" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Falló la carga. No se pudo encontrar el archivo subido." -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Falló la carga. No se pudo obtener la información del archivo." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Directorio inválido." diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index d3976c28d2e..bbccd0908e1 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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/es_MX/files.po b/l10n/es_MX/files.po index 5d13dd51a3b..e35ebde5b12 100644 --- a/l10n/es_MX/files.po +++ b/l10n/es_MX/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "Nombre inválido, los caracteres \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos " -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -88,54 +88,54 @@ msgstr "Incapaz de crear directorio de subida." msgid "Invalid Token" msgstr "Token Inválido" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "No se subió ningún archivo. Error desconocido" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "No hubo ningún problema, el archivo se subió con éxito" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "El archivo subido sobrepasa la directiva 'upload_max_filesize' en php.ini:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "El archivo subido sobrepasa la directiva 'MAX_FILE_SIZE' especificada en el formulario HTML" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "El archivo subido fue sólo subido parcialmente" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "No se subió ningún archivo" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Falta la carpeta temporal" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Falló al escribir al disco" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "No hay suficiente espacio disponible" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Actualización fallida. No se pudo encontrar el archivo subido" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Actualización fallida. No se pudo obtener información del archivo." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Directorio inválido." diff --git a/l10n/es_MX/user_ldap.po b/l10n/es_MX/user_ldap.po index a2926c98e42..78711d7f98b 100644 --- a/l10n/es_MX/user_ldap.po +++ b/l10n/es_MX/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 33c13f4b24d..780aa687c9d 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "Vigane nimi, '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' pole lubatud." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -90,54 +90,54 @@ msgstr "Üleslaadimiste kausta määramine ebaõnnestus." msgid "Invalid Token" msgstr "Vigane kontrollkood" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Ühtegi faili ei laetud üles. Tundmatu viga" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Ühtegi tõrget polnud, fail on üles laetud" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Üleslaetava faili suurus ületab php.ini poolt määratud upload_max_filesize suuruse:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Üleslaetud fail ületab MAX_FILE_SIZE suuruse, mis on HTML vormi jaoks määratud" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Fail laeti üles ainult osaliselt" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Ühtegi faili ei laetud üles" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Ajutiste failide kaust puudub" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Kettale kirjutamine ebaõnnestus" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Saadaval pole piisavalt ruumi" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Üleslaadimine ebaõnnestus. Üleslaetud faili ei leitud" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Üleslaadimine ebaõnnestus. Faili info hankimine ebaõnnestus." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Vigane kaust." diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index a05bf02b3fd..68433039694 100644 --- a/l10n/et_EE/user_ldap.po +++ b/l10n/et_EE/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\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 9904b91c21b..8245bccc029 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "IZen aliogabea, '\\', '/', '<', '>', ':', '\"', '|', '?' eta '*' ez daude baimenduta." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -90,54 +90,54 @@ msgstr "Ezin da igoera direktorioa ezarri." msgid "Invalid Token" msgstr "Lekuko baliogabea" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Ez da fitxategirik igo. Errore ezezaguna" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Ez da errorerik egon, fitxategia ongi igo da" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Igotako fitxategiak php.ini fitxategian ezarritako upload_max_filesize muga gainditu du:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Igotako fitxategia HTML formularioan zehaztutako MAX_FILE_SIZE direktiba baino handidagoa da." -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Igotako fitxategiaren zati bat bakarrik igo da" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Ez da fitxategirik igo" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Aldi bateko karpeta falta da" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Errore bat izan da diskoan idazterakoan" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Ez dago behar aina leku erabilgarri," -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Igoerak huts egin du. Ezin izan da igotako fitxategia aurkitu" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Igoerak huts egin du. Ezin izan da fitxategiaren informazioa eskuratu." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Baliogabeko karpeta." diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 0a00e89e649..502322ad159 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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/eu_ES/files.po b/l10n/eu_ES/files.po index 08dee84c9e1..f57a7040ace 100644 --- a/l10n/eu_ES/files.po +++ b/l10n/eu_ES/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -17,66 +17,66 @@ msgstr "" "Language: eu_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/eu_ES/user_ldap.po b/l10n/eu_ES/user_ldap.po index 20c3e494dba..bbc3027bfca 100644 --- a/l10n/eu_ES/user_ldap.po +++ b/l10n/eu_ES/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index fead8e85df4..83011111feb 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "نام نامعتبر ، '\\', '/', '<', '>', ':', '\"', '|', '?' و '*' مجاز نمی باشند." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -90,54 +90,54 @@ msgstr "قادر به تنظیم پوشه آپلود نمی باشد." msgid "Invalid Token" msgstr "رمز نامعتبر" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "هیچ فایلی آپلود نشد.خطای ناشناس" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "هیچ خطایی نیست بارگذاری پرونده موفقیت آمیز بود" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "پرونده آپلود شده بیش ازدستور ماکزیمم_حجم فایل_برای آپلود در php.ini استفاده کرده است." -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "حداکثر حجم قابل بار گذاری از طریق HTML MAX_FILE_SIZE است" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "پرونده بارگذاری شده فقط تاحدودی بارگذاری شده" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "هیچ پروندهای بارگذاری نشده" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "یک پوشه موقت گم شده" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "نوشتن بر روی دیسک سخت ناموفق بود" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "فضای کافی در دسترس نیست" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "فهرست راهنما نامعتبر می باشد." diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index 8311efcf667..978827d9d51 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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 6acc4fff640..8306890140f 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -45,7 +45,7 @@ msgid "" "allowed." msgstr "Virheellinen nimi, merkit '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' eivät ole sallittuja." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Kohdekansio on siirretty tai poistettu." @@ -91,54 +91,54 @@ msgstr "Lähetyskansion asettaminen epäonnistui." msgid "Invalid Token" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Tiedostoa ei lähetetty. Tuntematon virhe" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Ei virheitä, tiedosto lähetettiin onnistuneesti" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Lähetetyn tiedoston koko ylittää php.ini-tiedoston upload_max_filesize-säännön:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Lähetettävän tiedoston enimmäiskoko ylittää HTML-lomakkeessa määritellyn MAX_FILE_SIZE-säännön" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Tiedoston lähetys onnistui vain osittain" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Yhtäkään tiedostoa ei lähetetty" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Tilapäiskansio puuttuu" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Levylle kirjoitus epäonnistui" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Tallennustilaa ei ole riittävästi käytettävissä" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Lähetys epäonnistui. Lähettävää tiedostoa ei löydetty." -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Lähetys epäonnistui. Lähettävää tiedostoa ei löydetty." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Virheellinen kansio." diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 65fc5864d4b..820800fa818 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: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 07:01+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" @@ -430,18 +430,18 @@ msgstr "Cron" #: templates/admin.php:167 #, php-format msgid "Last cron was executed at %s." -msgstr "" +msgstr "Viimeisin cron suoritettiin %s." #: templates/admin.php:170 #, php-format msgid "" "Last cron was executed at %s. This is more than an hour ago, something seems" " wrong." -msgstr "" +msgstr "Viimeisin cron suoritettiin %s. Siitä on yli tunti aikaa, joten jokin näyttää olevan pielessä." #: templates/admin.php:174 msgid "Cron was not executed yet!" -msgstr "" +msgstr "Cronia ei suoritettu vielä!" #: templates/admin.php:184 msgid "Execute one task with each page loaded" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index 750a7b58534..83464ec1114 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\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/fr/files.po b/l10n/fr/files.po index 379cd86cc13..9e3b0bca469 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -47,7 +47,7 @@ msgid "" "allowed." msgstr "Nom invalide, les caractères '\\', '/', '<', '>', ':', '\"', '|', '?' et '*' ne sont pas autorisés." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Le dossier cible a été déplacé ou supprimé." @@ -93,54 +93,54 @@ msgstr "Impossible de définir le dossier pour l'upload, charger." msgid "Invalid Token" msgstr "Jeton non valide" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Aucun fichier n'a été envoyé. Erreur inconnue" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Aucune erreur, le fichier a été envoyé avec succès." -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Le fichier envoyé dépasse l'instruction upload_max_filesize située dans le fichier php.ini:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Le fichier envoyé dépasse l'instruction MAX_FILE_SIZE qui est spécifiée dans le formulaire HTML." -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Le fichier n'a été que partiellement envoyé." -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Pas de fichier envoyé." -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Absence de dossier temporaire." -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Erreur d'écriture sur le disque" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Plus assez d'espace de stockage disponible" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "L'envoi a échoué. Impossible de trouver le fichier envoyé." -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "L'envoi a échoué. Impossible d'obtenir les informations du fichier." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Dossier invalide." diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index 44203b8b95d..09a7f945aba 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 17:12-0400\n" -"PO-Revision-Date: 2014-03-13 16:21+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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 b71b62fd9bd..5d5e1a7178d 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "Nome incorrecto, non se permite «\\», «/», «<», «>», «:», «\"», «|», «?» e «*»." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "O cartafol de destino foi movido ou eliminado." @@ -90,54 +90,54 @@ msgstr "Non é posíbel configurar o directorio de envíos." msgid "Invalid Token" msgstr "Marca incorrecta" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Non se enviou ningún ficheiro. Produciuse un erro descoñecido." -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Non houbo erros, o ficheiro enviouse correctamente" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "O ficheiro enviado excede a directiva indicada por upload_max_filesize de php.ini:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "O ficheiro enviado excede da directiva MAX_FILE_SIZE especificada no formulario HTML" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "O ficheiro so foi parcialmente enviado" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Non se enviou ningún ficheiro" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Falta o cartafol temporal" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Produciuse un erro ao escribir no disco" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Non hai espazo de almacenamento abondo" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "O envío fracasou. Non foi posíbel atopar o ficheiro enviado" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "O envío fracasou. Non foi posíbel obter información do ficheiro." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "O directorio é incorrecto." diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index 56d17fa56b4..2070e8c7153 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-14 09:10+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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/he/files.po b/l10n/he/files.po index 4273d42e1fd..fe83688b064 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "השם שגוי, אסור להשתמש בתווים '\\', '/', '<', '>', ':', '\"', '|', '?' ו־'*'." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -90,54 +90,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "לא הועלה קובץ. טעות בלתי מזוהה." -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "לא התרחשה שגיאה, הקובץ הועלה בהצלחה" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "הקבצים שנשלחו חורגים מהגודל שצוין בהגדרה upload_max_filesize שבקובץ php.ini:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "הקובץ שהועלה גדוך מהערך MAX_FILE_SIZE שהוגדר בתופס HTML" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "הקובץ הועלה באופן חלקי בלבד" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "שום קובץ לא הועלה" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "תקיה זמנית חסרה" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "הכתיבה לכונן נכשלה" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "אין די שטח פנוי באחסון" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "העלאה נכשלה. לא ניתן להשיג את פרטי הקובץ." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "תיקייה שגויה." diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index e43dba49a7b..5a7b24997c7 100644 --- a/l10n/he/user_ldap.po +++ b/l10n/he/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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/hi/files.po b/l10n/hi/files.po index 6405316b8b7..571ff8efa40 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -17,66 +17,66 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/hi/user_ldap.po b/l10n/hi/user_ldap.po index f001017d01f..1c1bdbf62bb 100644 --- a/l10n/hi/user_ldap.po +++ b/l10n/hi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index 1f5a7f6813b..6670ab986cc 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -17,66 +17,66 @@ msgstr "" "Language: hr\n" "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;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Nema pogreške, datoteka je poslana uspješno." -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Poslana datoteka prelazi veličinu prikazanu u MAX_FILE_SIZE direktivi u HTML formi" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Poslana datoteka je parcijalno poslana" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Datoteka nije poslana" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Nedostaje privremeni direktorij" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Neuspjelo pisanje na disk" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Slanje poništeno." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Učitavanje datoteke. Napuštanjem stranice će prekinuti učitavanje." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index c5facc60a29..0d0c691cf7a 100644 --- a/l10n/hr/user_ldap.po +++ b/l10n/hr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 3532ba7040d..6e63b3157d4 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "Érvénytelen elnevezés. Ezek a karakterek nem használhatók: '\\', '/', '<', '>', ':', '\"', '|', '?' és '*'" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -90,54 +90,54 @@ msgstr "Nem található a mappa, ahova feltölteni szeretne." msgid "Invalid Token" msgstr "Hibás mappacím" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Nem történt feltöltés. Ismeretlen hiba" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "A fájlt sikerült feltölteni" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "A feltöltött fájl mérete meghaladja a php.ini állományban megadott upload_max_filesize paraméter értékét." -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "A feltöltött fájl mérete meghaladja a MAX_FILE_SIZE paramétert, ami a HTML formban került megadásra." -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Az eredeti fájlt csak részben sikerült feltölteni." -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Nem töltődött fel állomány" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Hiányzik egy ideiglenes mappa" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Nem sikerült a lemezre történő írás" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Nincs elég szabad hely." -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "A feltöltés nem sikerült. Nem található a feltöltendő állomány." -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "A feltöltés nem sikerült. Az állományt leíró információk nem érhetők el." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Érvénytelen mappa." diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index a199ced0ec6..37aa013a6f8 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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/hy/files.po b/l10n/hy/files.po index 86f00de0bee..b8176dd3744 100644 --- a/l10n/hy/files.po +++ b/l10n/hy/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -17,66 +17,66 @@ msgstr "" "Language: hy\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/hy/user_ldap.po b/l10n/hy/user_ldap.po index eeb36900227..1acfafd169e 100644 --- a/l10n/hy/user_ldap.po +++ b/l10n/hy/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 7f1089dd461..5b6b0d60760 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -17,66 +17,66 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Le file incargate solmente esseva incargate partialmente" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Nulle file esseva incargate." -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Manca un dossier temporari" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index 593db01cf1d..8cf13b0b0d6 100644 --- a/l10n/ia/user_ldap.po +++ b/l10n/ia/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files.po b/l10n/id/files.po index d2ec10037f8..1f2f31785c9 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -43,7 +43,7 @@ msgid "" "allowed." msgstr "Nama tidak valid, karakter '\\', '/', '<', '>', ':', '\"', '|', '?' dan '*' tidak diizinkan." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -89,54 +89,54 @@ msgstr "Tidak dapat mengatur folder unggah" msgid "Invalid Token" msgstr "Token tidak sah" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Tidak ada berkas yang diunggah. Galat tidak dikenal." -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Tidak ada galat, berkas sukses diunggah" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Berkas yang diunggah melampaui direktif upload_max_filesize pada php.ini" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Berkas yang diunggah melampaui direktif MAX_FILE_SIZE yang ditentukan dalam formulir HTML." -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Berkas hanya diunggah sebagian" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Tidak ada berkas yang diunggah" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Folder sementara tidak ada" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Gagal menulis ke disk" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Ruang penyimpanan tidak mencukupi" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Unggah gagal. Tidak menemukan berkas yang akan diunggah" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Unggah gagal. Tidak mendapatkan informasi berkas." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Direktori tidak valid." diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index a8e38b76de2..fcf502a7a8d 100644 --- a/l10n/id/user_ldap.po +++ b/l10n/id/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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 61955187307..82f83fd1b11 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -17,66 +17,66 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Gat ekki fært %s - Skrá með þessu nafni er þegar til" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Gat ekki fært %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Nafn skráar má ekki vera tómt" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ógilt nafn, táknin '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' eru ekki leyfð." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Engin skrá var send inn. Óþekkt villa." -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Engin villa, innsending heppnaðist" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Innsend skrá er stærri en upload_max stillingin í php.ini:" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Innsenda skráin er stærri en MAX_FILE_SIZE sem skilgreint er í HTML sniðinu." -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Einungis hluti af innsendri skrá skilaði sér" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Engin skrá skilaði sér" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Vantar bráðabirgðamöppu" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Tókst ekki að skrifa á disk" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Ógild mappa." @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Hætt við innsendingu." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Innsending í gangi. Ef þú ferð af þessari síðu mun innsending misheppnast." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} er þegar til" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index e0cccdc882d..df6247cd5d8 100644 --- a/l10n/is/user_ldap.po +++ b/l10n/is/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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 c1dcdc79c2e..2b729d50968 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "Nome non valido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non sono consentiti." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "La cartella di destinazione è stata spostata o eliminata." @@ -90,54 +90,54 @@ msgstr "Impossibile impostare una cartella di caricamento." msgid "Invalid Token" msgstr "Token non valido" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Nessun file è stato inviato. Errore sconosciuto" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Non ci sono errori, il file è stato caricato correttamente" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Il file caricato supera la direttiva upload_max_filesize in php.ini:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Il file inviato supera la direttiva MAX_FILE_SIZE specificata nel modulo HTML" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Il file è stato caricato solo parzialmente" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Nessun file è stato caricato" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Manca una cartella temporanea" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Scrittura su disco non riuscita" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Spazio di archiviazione insufficiente" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Caricamento non riuscito. Impossibile trovare il file caricato." -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Caricamento non riuscito. Impossibile ottenere informazioni sul file." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Cartella non valida." diff --git a/l10n/it/settings.po b/l10n/it/settings.po index d3f2015ed5b..2edd7721bcf 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: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 12:01+0000\n" +"Last-Translator: Paolo Velati \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" @@ -433,18 +433,18 @@ msgstr "Cron" #: templates/admin.php:167 #, php-format msgid "Last cron was executed at %s." -msgstr "" +msgstr "L'ultimo cron è stato eseguito alle %s." #: templates/admin.php:170 #, php-format msgid "" "Last cron was executed at %s. This is more than an hour ago, something seems" " wrong." -msgstr "" +msgstr "L'ultimo cron è stato eseguito alle %s. È più di un ora fa, qualcosa sembra sbagliato." #: templates/admin.php:174 msgid "Cron was not executed yet!" -msgstr "" +msgstr "Cron non è ancora stato eseguito!" #: templates/admin.php:184 msgid "Execute one task with each page loaded" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index 0f6dbc21554..da54354cf9c 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 22:50+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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/ja/files.po b/l10n/ja/files.po index 53eda260327..02c744dddc1 100644 --- a/l10n/ja/files.po +++ b/l10n/ja/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -49,7 +49,7 @@ msgid "" "allowed." msgstr "無効な名前、'\\', '/', '<', '>', ':', '\"', '|', '?', '*' は使用できません。" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "目標のフォルダは移動されたか、削除されました。" @@ -95,54 +95,54 @@ msgstr "アップロードディレクトリを設定できません。" msgid "Invalid Token" msgstr "無効なトークン" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "ファイルは何もアップロードされていません。不明なエラー" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "エラーはありません。ファイルのアップロードは成功しました" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "アップロードされたファイルはphp.ini の upload_max_filesize に設定されたサイズを超えています:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "アップロードファイルはHTMLフォームで指定された MAX_FILE_SIZE の制限を超えています" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "アップロードファイルは一部分だけアップロードされました" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "ファイルはアップロードされませんでした" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "一時保存フォルダーが見つかりません" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "ディスクへの書き込みに失敗しました" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "ストレージに十分な空き容量がありません" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "アップロードに失敗。アップロード済みのファイルを見つけることができませんでした。" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "アップロードに失敗。ファイル情報を取得できませんでした。" -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "無効なディレクトリです。" diff --git a/l10n/ja/user_ldap.po b/l10n/ja/user_ldap.po index 879766d023d..e670589dd74 100644 --- a/l10n/ja/user_ldap.po +++ b/l10n/ja/user_ldap.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 17:12-0400\n" -"PO-Revision-Date: 2014-03-11 13:31+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: plazmism \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 edcf2c73318..227a54b6dd7 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "არადაშვებადი სახელი, '\\', '/', '<', '>', ':', '\"', '|', '?' და '*' არ არის დაიშვებული." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "ფაილი არ აიტვირთა. უცნობი შეცდომა" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "ჭოცდომა არ დაფიქსირდა, ფაილი წარმატებით აიტვირთა" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "ატვირთული ფაილი აჭარბებს upload_max_filesize დირექტივას php.ini ფაილში" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "ატვირთული ფაილი აჭარბებს MAX_FILE_SIZE დირექტივას, რომელიც მითითებულია HTML ფორმაში" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "ატვირთული ფაილი მხოლოდ ნაწილობრივ აიტვირთა" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "ფაილი არ აიტვირთა" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "დროებითი საქაღალდე არ არსებობს" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "შეცდომა დისკზე ჩაწერისას" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "საცავში საკმარისი ადგილი არ არის" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "დაუშვებელი დირექტორია." diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index 848926c0e6f..ea64bec0b7f 100644 --- a/l10n/ka_GE/user_ldap.po +++ b/l10n/ka_GE/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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/km/files.po b/l10n/km/files.po index becad9cf512..828078cedad 100644 --- a/l10n/km/files.po +++ b/l10n/km/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -17,66 +17,66 @@ msgstr "" "Language: km\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/km/user_ldap.po b/l10n/km/user_ldap.po index 9a3c86b8c51..5f8d728426c 100644 --- a/l10n/km/user_ldap.po +++ b/l10n/km/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 056ec258471..45ee79b1c1a 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -48,7 +48,7 @@ msgid "" "allowed." msgstr "폴더 이름이 올바르지 않습니다. 이름에 문자 '\\', '/', '<', '>', ':', '\"', '|', '? ', '*'는 사용할 수 없습니다." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -94,54 +94,54 @@ msgstr "업로드 디렉터리를 설정할 수 없습니다." msgid "Invalid Token" msgstr "잘못된 토큰" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "파일이 업로드 되지 않았습니다. 알 수 없는 오류입니다" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "파일 업로드에 성공하였습니다." -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "업로드한 파일이 php.ini의 upload_max_filesize보다 큽니다:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "업로드한 파일 크기가 HTML 폼의 MAX_FILE_SIZE보다 큼" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "파일의 일부분만 업로드됨" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "파일이 업로드되지 않았음" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "임시 폴더가 없음" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "디스크에 쓰지 못했습니다" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "저장소가 용량이 충분하지 않습니다." -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "업로드에 실패했습니다. 업로드할 파일을 찾을 수 없습니다" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "업로드에 실패했습니다. 파일 정보를 가져올 수 없습니다." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "올바르지 않은 디렉터리입니다." diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index c8074d818e6..06500e88a3f 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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/ku_IQ/files.po b/l10n/ku_IQ/files.po index 64de8738b2c..36645752f11 100644 --- a/l10n/ku_IQ/files.po +++ b/l10n/ku_IQ/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -17,66 +17,66 @@ msgstr "" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index 1305adc5d8f..4635426b59a 100644 --- a/l10n/ku_IQ/user_ldap.po +++ b/l10n/ku_IQ/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 52508632146..9f74628eee0 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -17,66 +17,66 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Keen Feeler, Datei ass komplett ropgelueden ginn" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Déi ropgelueden Datei ass méi grouss wei d'MAX_FILE_SIZE Eegenschaft déi an der HTML form uginn ass" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Déi ropgelueden Datei ass nëmmen hallef ropgelueden ginn" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Et ass kee Fichier ropgeluede ginn" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Et feelt en temporären Dossier" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Konnt net op den Disk schreiwen" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Upload ofgebrach." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "File Upload am gaang. Wann's de des Säit verléiss gëtt den Upload ofgebrach." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index fe03047f218..4edf0855c49 100644 --- a/l10n/lb/user_ldap.po +++ b/l10n/lb/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 8c931cc06c8..7d183402126 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -45,7 +45,7 @@ msgid "" "allowed." msgstr "Neleistinas pavadinimas, '\\', '/', '<', '>', ':', '\"', '|', '?' ir '*' yra neleidžiami." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -91,54 +91,54 @@ msgstr "Nepavyksta nustatyti įkėlimų katalogo." msgid "Invalid Token" msgstr "Netinkamas ženklas" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Failai nebuvo įkelti dėl nežinomos priežasties" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Failas įkeltas sėkmingai, be klaidų" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Įkeliamas failas yra didesnis nei leidžia upload_max_filesize php.ini faile:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Įkeliamo failo dydis viršija MAX_FILE_SIZE nustatymą, kuris naudojamas HTML formoje." -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Failas buvo įkeltas tik dalinai" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Nebuvo įkeltas joks failas" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Nėra laikinojo katalogo" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Nepavyko įrašyti į diską" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Nepakanka vietos serveryje" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Įkėlimas nepavyko. Nepavyko rasti įkelto failo" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Įkėlimas nepavyko. Nepavyko gauti failo informacijos." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Neteisingas aplankas" diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index a67be7dfd94..074b5567000 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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 cb6b1128af0..23f5f3998b0 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -43,7 +43,7 @@ msgid "" "allowed." msgstr "Nederīgs nosaukums, nav atļauti '\\', '/', '<', '>', ':', '\"', '|', '?' un '*'." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -89,54 +89,54 @@ msgstr "Nevar uzstādīt augšupielādes mapi." msgid "Invalid Token" msgstr "Nepareiza pilnvara" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Netika augšupielādēta neviena datne. Nezināma kļūda" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Viss kārtībā, datne augšupielādēta veiksmīga" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Augšupielādētā datne pārsniedz upload_max_filesize norādījumu php.ini datnē:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Augšupielādētā datne pārsniedz MAX_FILE_SIZE norādi, kas ir norādīta HTML formā" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Augšupielādētā datne ir tikai daļēji augšupielādēta" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Neviena datne netika augšupielādēta" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Trūkst pagaidu mapes" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Neizdevās saglabāt diskā" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Nav pietiekami daudz vietas" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Nederīga direktorija." diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index db3bc0393e7..90f2e4597e8 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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 a397c54f04a..7f907ff611e 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -43,7 +43,7 @@ msgid "" "allowed." msgstr "Неправилно име. , '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' не се дозволени." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -89,54 +89,54 @@ msgstr "Не може да се постави папката за префрл msgid "Invalid Token" msgstr "Грешен токен" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Ниту еден фајл не се вчита. Непозната грешка" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Датотеката беше успешно подигната." -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Подигнатата датотека ја надминува upload_max_filesize директивата во php.ini:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Големината на датотеката ја надминува MAX_FILE_SIZE директивата која беше специфицирана во HTML формата" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Датотеката беше само делумно подигната." -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Не беше подигната датотека." -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Недостасува привремена папка" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Неуспеав да запишам на диск" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Нема доволно слободен сториџ" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Префрлањето е неуспешно. Не можам да го најдам префрлената датотека." -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Погрешна папка." diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index 2b41dae61bc..9fbc64a8403 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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/ms_MY/files.po b/l10n/ms_MY/files.po index 2162290bb8a..ceca8d5e295 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -17,66 +17,66 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Tiada fail dimuatnaik. Ralat tidak diketahui." -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Tiada ralat berlaku, fail berjaya dimuatnaik" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Saiz fail yang dimuatnaik melebihi MAX_FILE_SIZE yang ditetapkan dalam borang HTML" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Fail yang dimuatnaik tidak lengkap" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Tiada fail dimuatnaik" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Direktori sementara hilang" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Gagal untuk disimpan" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Muatnaik dibatalkan." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index 703f27af485..ffaf5f23caa 100644 --- a/l10n/ms_MY/user_ldap.po +++ b/l10n/ms_MY/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index 1988ef019cc..d81379a26d1 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -46,7 +46,7 @@ msgid "" "allowed." msgstr "Ugyldig navn, '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' er ikke tillatt." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -92,54 +92,54 @@ msgstr "Kunne ikke sette opplastingskatalog." msgid "Invalid Token" msgstr "Ugyldig nøkkel" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Ingen filer ble lastet opp. Ukjent feil." -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Pust ut, ingen feil. Filen ble lastet opp problemfritt" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Filstørrelsen overskrider maksgrensedirektivet upload_max_filesize i php.ini-konfigurasjonen." -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Filen du prøvde å laste opp var større enn grensen satt i MAX_FILE_SIZE i HTML-skjemaet." -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Filen du prøvde å laste opp ble kun delvis lastet opp" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Ingen filer ble lastet opp" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Mangler midlertidig mappe" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Klarte ikke å skrive til disk" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Ikke nok lagringsplass" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Opplasting feilet. Fant ikke opplastet fil." -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Opplasting feilet. Klarte ikke å finne informasjon om fil." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Ugyldig katalog." diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index ae84487d1bb..8de5b111cf9 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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 efbd44ed5ba..d478170f83b 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "Onjuiste naam; '\\', '/', '<', '>', ':', '\"', '|', '?' en '*' zijn niet toegestaan." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "De doelmap is verplaatst of verwijderd." @@ -90,54 +90,54 @@ msgstr "Kan upload map niet instellen." msgid "Invalid Token" msgstr "Ongeldig Token" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Er was geen bestand geladen. Onbekende fout" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "De upload van het bestand is goedgegaan." -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Het geüploade bestand overscheidt de upload_max_filesize optie in php.ini:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Het bestand overschrijdt de MAX_FILE_SIZE instelling dat is opgegeven in het HTML formulier" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Het bestand is gedeeltelijk geüpload" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Er is geen bestand geüpload" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Er ontbreekt een tijdelijke map" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Schrijven naar schijf mislukt" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Niet genoeg opslagruimte beschikbaar" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Upload mislukt. Kon ge-uploade bestand niet vinden" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Upload mislukt, Kon geen bestandsinfo krijgen." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Ongeldige directory." diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 821671a92f8..8113608307e 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 19:01+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -433,18 +433,18 @@ msgstr "Cron" #: templates/admin.php:167 #, php-format msgid "Last cron was executed at %s." -msgstr "" +msgstr "Laatst uitgevoerde cron op %s." #: templates/admin.php:170 #, php-format msgid "" "Last cron was executed at %s. This is more than an hour ago, something seems" " wrong." -msgstr "" +msgstr "Laatst uitgevoerde cron op %s. Dat is langer dan een uur geleden, er is iets fout gegaan." #: templates/admin.php:174 msgid "Cron was not executed yet!" -msgstr "" +msgstr "Cron is nog niet uitgevoerd!" #: templates/admin.php:184 msgid "Execute one task with each page loaded" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index d3f5eb8d77f..a4759a0e924 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 18:30+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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 e9994a268cc..9f4fa5869fa 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -45,7 +45,7 @@ msgid "" "allowed." msgstr "Ugyldig namn, «\\», «/», «<», «>», «:», «\"», «|», «?» og «*» er ikkje tillate." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -91,54 +91,54 @@ msgstr "Klarte ikkje å endra opplastingsmappa." msgid "Invalid Token" msgstr "Ugyldig token" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Ingen filer lasta opp. Ukjend feil" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Ingen feil, fila vart lasta opp" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Fila du lasta opp er større enn det «upload_max_filesize» i php.ini tillater: " -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Den opplasta fila er større enn variabelen MAX_FILE_SIZE i HTML-skjemaet" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Fila vart berre delvis lasta opp" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Ingen filer vart lasta opp" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Manglar ei mellombels mappe" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Klarte ikkje skriva til disk" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Ikkje nok lagringsplass tilgjengeleg" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Feil ved opplasting. Klarte ikkje å finna opplasta fil." -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Feil ved opplasting. Klarte ikkje å henta filinfo." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Ugyldig mappe." diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index 480d38d38db..37d6774cb71 100644 --- a/l10n/nn_NO/user_ldap.po +++ b/l10n/nn_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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/oc/files.po b/l10n/oc/files.po index f8210485c0a..7f609bb3b07 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -17,66 +17,66 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Amontcargament capitat, pas d'errors" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Lo fichièr amontcargat es mai gròs que la directiva «MAX_FILE_SIZE» especifiada dins lo formulari HTML" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Lo fichièr foguèt pas completament amontcargat" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Cap de fichièrs son estats amontcargats" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Un dorsièr temporari manca" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "L'escriptura sul disc a fracassat" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Amontcargar anullat." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Un amontcargar es a se far. Daissar aquesta pagina ara tamparà lo cargament. " -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index 40d6de703ce..1c69513cbd9 100644 --- a/l10n/oc/user_ldap.po +++ b/l10n/oc/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index d00c7fd8d5a..9473672b266 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -48,7 +48,7 @@ msgid "" "allowed." msgstr "Nieprawidłowa nazwa. Znaki '\\', '/', '<', '>', ':', '\"', '|', '?' oraz '*' są niedozwolone." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Folder docelowy został przeniesiony lub usunięty" @@ -94,54 +94,54 @@ msgstr "Nie można ustawić katalog wczytywania." msgid "Invalid Token" msgstr "Nieprawidłowy Token" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Żaden plik nie został załadowany. Nieznany błąd" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Nie było błędów, plik wysłano poprawnie." -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Wgrany plik przekracza wartość upload_max_filesize zdefiniowaną w php.ini: " -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Wysłany plik przekracza wielkość dyrektywy MAX_FILE_SIZE określonej w formularzu HTML" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Załadowany plik został wysłany tylko częściowo." -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Nie wysłano żadnego pliku" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Brak folderu tymczasowego" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Błąd zapisu na dysk" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Za mało dostępnego miejsca" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Nieudane przesłanie. Nie można znaleźć przesyłanego pliku" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Nieudane przesłanie. Nie można pobrać informacji o pliku." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Zła ścieżka." diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 1bd3e4c2dac..d1e47d0889e 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 10:42+0000\n" +"Last-Translator: bobie \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -432,18 +432,18 @@ msgstr "Cron" #: templates/admin.php:167 #, php-format msgid "Last cron was executed at %s." -msgstr "" +msgstr "Ostatni cron był uruchomiony %s." #: templates/admin.php:170 #, php-format msgid "" "Last cron was executed at %s. This is more than an hour ago, something seems" " wrong." -msgstr "" +msgstr "Ostatni cron był uruchomiony %s. To jest więcej niż godzinę temu, wygląda na to, że coś jest nie tak." #: templates/admin.php:174 msgid "Cron was not executed yet!" -msgstr "" +msgstr "Cron nie został jeszcze uruchomiony!" #: templates/admin.php:184 msgid "Execute one task with each page loaded" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index c0c5d208854..25da5a7a43f 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 17:12-0400\n" -"PO-Revision-Date: 2014-03-13 07:30+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: maxxx \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 897f8011e4c..127cadb9b98 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -45,7 +45,7 @@ msgid "" "allowed." msgstr "Nome inválido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "A pasta de destino foi movida ou excluída." @@ -91,54 +91,54 @@ msgstr "Impossível configurar o diretório de upload" msgid "Invalid Token" msgstr "Token inválido" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Nenhum arquivo foi enviado. Erro desconhecido" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Sem erros, o arquivo foi enviado com sucesso" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "O arquivo enviado excede a diretiva upload_max_filesize no php.ini: " -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "O arquivo carregado excede o argumento MAX_FILE_SIZE especificado no formulário HTML" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "O arquivo foi parcialmente enviado" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Nenhum arquivo enviado" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Pasta temporária não encontrada" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Falha ao escrever no disco" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Espaço de armazenamento insuficiente" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Falha no envio. Não foi possível encontrar o arquivo enviado" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Falha no envio. Não foi possível obter informações do arquivo." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Diretório inválido." diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index 7835f9b48a5..f8940d0e55c 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 13:11+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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_PT/files.po b/l10n/pt_PT/files.po index 0bfb1061078..5d3d9a8a8dc 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -46,7 +46,7 @@ msgid "" "allowed." msgstr "Nome Inválido, os caracteres '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -92,54 +92,54 @@ msgstr "Não foi possível criar o diretório de upload" msgid "Invalid Token" msgstr "Token inválido" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Nenhum ficheiro foi carregado. Erro desconhecido" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Não ocorreram erros, o ficheiro foi submetido com sucesso" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "O ficheiro enviado excede o limite permitido na directiva do php.ini upload_max_filesize" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "O tamanho do ficheiro carregado ultrapassa o valor MAX_FILE_SIZE definido no formulário HTML" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "O ficheiro seleccionado foi apenas carregado parcialmente" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Nenhum ficheiro foi submetido" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Está a faltar a pasta temporária" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Falhou a escrita no disco" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Não há espaço suficiente em disco" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Falhou o envio. Não conseguiu encontrar o ficheiro enviado" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "O carregamento falhou. Não foi possível obter a informação do ficheiro." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Directório Inválido" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index db90a116846..98b05141911 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-21 11:41+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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 13be40a7311..f4def010820 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -49,7 +49,7 @@ msgid "" "allowed." msgstr "Nume nevalide, '\\', '/', '<', '>', ':', '\"', '|', '?' și '*' nu sunt permise." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -95,54 +95,54 @@ msgstr "Imposibil de a seta directorul pentru incărcare." msgid "Invalid Token" msgstr "Jeton Invalid" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Niciun fișier nu a fost încărcat. Eroare necunoscută" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Nu a apărut nici o eroare, fișierul a fost încărcat cu succes" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Fișierul încărcat depășește directiva upload_max_filesize din php.ini:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Fișierul încărcat depășește directiva MAX_FILE_SIZE specificată în formularul HTML" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Fișierul a fost încărcat doar parțial" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Nu a fost încărcat niciun fișier" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Lipsește un dosar temporar" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Eroare la scrierea pe disc" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Nu este disponibil suficient spațiu" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Încărcare eșuată. Nu se poate găsi fișierul încărcat" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Încărcare eșuată. Nu se pot obține informații despre fișier." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Dosar nevalid." diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index b81ac785574..a209336d3df 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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 07e65a448db..8e80384b7c8 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -53,7 +53,7 @@ msgid "" "allowed." msgstr "Неправильное имя: символы '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' недопустимы." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -99,54 +99,54 @@ msgstr "Не удалось установить каталог загрузки msgid "Invalid Token" msgstr "Недопустимый маркер" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Файл не был загружен. Неизвестная ошибка" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Файл загружен успешно." -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Файл превышает размер, установленный параметром upload_max_filesize в php.ini:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Загруженный файл превышает размер, установленный параметром MAX_FILE_SIZE в HTML-форме" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Файл загружен лишь частично" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Ни одного файла загружено не было" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Отсутствует временный каталог" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Ошибка записи на диск" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Недостаточно доступного места в хранилище" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Загрузка не удалась. Невозможно найти загружаемый файл" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Загрузка не удалась. Невозможно получить информацию о файле" -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Неверный каталог." diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index d6ca8bbef1c..449f689dc96 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index 1bdecb06284..4d19ae87f3e 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -17,66 +17,66 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "ගොනුවක් උඩුගත නොවුනි. නොහැඳිනු දෝෂයක්" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "දෝෂයක් නොමැත. සාර්ථකව ගොනුව උඩුගත කෙරුණි" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "උඩුගත කළ ගොනුවේ විශාලත්වය HTML පෝරමයේ නියම කළ ඇති MAX_FILE_SIZE විශාලත්වයට වඩා වැඩිය" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "උඩුගත කළ ගොනුවේ කොටසක් පමණක් උඩුගත විය" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "ගොනුවක් උඩුගත නොවුණි" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "තාවකාලික ෆොල්ඩරයක් අතුරුදහන්" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "තැටිගත කිරීම අසාර්ථකයි" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "උඩුගත කිරීම අත් හරින්න ලදී" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "උඩුගතකිරීමක් සිදුවේ. පිටුව හැර යාමෙන් එය නැවතෙනු ඇත" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index 175aba8b811..e6f39fc39de 100644 --- a/l10n/si_LK/user_ldap.po +++ b/l10n/si_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk/files.po b/l10n/sk/files.po index bc16f5e1012..d705cf64c22 100644 --- a/l10n/sk/files.po +++ b/l10n/sk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -17,66 +17,66 @@ msgstr "" "Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/sk/user_ldap.po b/l10n/sk/user_ldap.po index 2e3098a1e2a..6caf66c53b3 100644 --- a/l10n/sk/user_ldap.po +++ b/l10n/sk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index b3eb40dfbc3..8694064b152 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -43,7 +43,7 @@ msgid "" "allowed." msgstr "Nesprávne meno, '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nie sú povolené hodnoty." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -89,54 +89,54 @@ msgstr "Nemožno nastaviť priečinok pre nahrané súbory." msgid "Invalid Token" msgstr "Neplatný token" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Žiaden súbor nebol nahraný. Neznáma chyba" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Nenastala žiadna chyba, súbor bol úspešne nahraný" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Nahraný súbor prekročil limit nastavený v upload_max_filesize v súbore php.ini:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Ukladaný súbor prekračuje nastavenie MAX_FILE_SIZE z volieb HTML formulára." -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Ukladaný súbor sa nahral len čiastočne" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Žiadny súbor nebol uložený" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Chýba dočasný priečinok" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Zápis na disk sa nepodaril" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Nedostatok dostupného úložného priestoru" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Nahrávanie zlyhalo. Nepodarilo sa nájsť nahrávaný súbor" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Nahrávanie zlyhalo. Nepodarilo sa získať informácie o súbore." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Neplatný priečinok." diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index 09793a0baf8..2359384c654 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 00b2b25a51c..9966a2785bb 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "Neveljavno ime; znaki '\\', '/', '<', '>', ':', '\"', '|', '?' in '*' niso dovoljeni." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Ciljna mapa je premaknjena ali izbrisana." @@ -90,54 +90,54 @@ msgstr "Mapo, v katero boste prenašali dokumente, ni mogoče določiti" msgid "Invalid Token" msgstr "Neveljaven žeton" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Ni poslane datoteke. Neznana napaka." -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Datoteka je uspešno naložena." -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Poslana datoteka presega dovoljeno velikost, ki je določena z možnostjo upload_max_filesize v datoteki php.ini:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Poslana datoteka presega velikost, ki jo določa parameter največje dovoljene velikosti v obrazcu HTML." -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Poslan je le del datoteke." -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Ni poslane datoteke" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Manjka začasna mapa" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Pisanje na disk je spodletelo" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Na voljo ni dovolj prostora" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Pošiljanje je spodletelo. Ni mogoče najti poslane datoteke." -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Pošiljanje je spodletelo. Ni mogoče pridobiti podrobnosti datoteke." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Neveljavna mapa." diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index b5478c054ec..5a24ba9ffa7 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index 8068ca93687..10f0a0a3fc5 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "Emër jo i vlefshëm, '\\', '/', '<', '>', ':', '\"', '|', '?' dhe '*' nuk lejohen." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -90,54 +90,54 @@ msgstr "E pa mundur të vendoset dosja e ngarkimit" msgid "Invalid Token" msgstr "Shenjë e gabuar" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Asnjë skedar nuk u dërgua. Gabim i pa njohur" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Skedari u ngarkua me sukses" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Skedari i ngarkuar tejkalon limitin hapsirës së lejuar në php.ini" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Skedari i ngarkuar tejlakon vlerën MAX_FILE_SIZE të përcaktuar në formën HTML" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Skedari është ngakruar vetëm pjesërisht" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Asnjë skedar nuk është ngarkuar" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Mungon dosja e përkohshme" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Dështoi shkrimi në disk" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Hapsira e arkivimit e pamjaftueshme" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Dosje e pavlefshme" diff --git a/l10n/sq/user_ldap.po b/l10n/sq/user_ldap.po index 82db1279b91..b8ed2aa5515 100644 --- a/l10n/sq/user_ldap.po +++ b/l10n/sq/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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 6953dc1242f..eb157cd5a79 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "Неисправан назив. Следећи знакови нису дозвољени: \\, /, <, >, :, \", |, ? и *." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Ниједна датотека није отпремљена услед непознате грешке" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Није дошло до грешке. Датотека је успешно отпремљена." -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Отпремљена датотека прелази смерницу upload_max_filesize у датотеци php.ini:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Отпремљена датотека прелази смерницу MAX_FILE_SIZE која је наведена у HTML обрасцу" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Датотека је делимично отпремљена" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Датотека није отпремљена" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Недостаје привремена фасцикла" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Не могу да пишем на диск" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Нема довољно простора" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "неисправна фасцикла." diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index 03929445d00..d39190908f6 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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/sr@latin/files.po b/l10n/sr@latin/files.po index ba91a498ad6..04923e48049 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -17,66 +17,66 @@ msgstr "" "Language: sr@latin\n" "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);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Nema greške, fajl je uspešno poslat" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Poslati fajl prevazilazi direktivu MAX_FILE_SIZE koja je navedena u HTML formi" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Poslati fajl je samo delimično otpremljen!" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Nijedan fajl nije poslat" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Nedostaje privremena fascikla" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/sr@latin/user_ldap.po b/l10n/sr@latin/user_ldap.po index 91af0333798..bfe386afdc3 100644 --- a/l10n/sr@latin/user_ldap.po +++ b/l10n/sr@latin/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 4ac3ca06a70..337141babf3 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -50,7 +50,7 @@ msgid "" "allowed." msgstr "Ogiltigt namn, '\\', '/', '<', '>', ':', '\"', '|', '?' och '*' är inte tillåtet." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -96,54 +96,54 @@ msgstr "Kan inte sätta mapp för uppladdning." msgid "Invalid Token" msgstr "Ogiltig token" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Ingen fil uppladdad. Okänt fel" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Inga fel uppstod. Filen laddades upp utan problem." -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Den uppladdade filen överskrider upload_max_filesize direktivet php.ini:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Den uppladdade filen överskrider MAX_FILE_SIZE direktivet som har angetts i HTML formuläret" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Den uppladdade filen var endast delvis uppladdad" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Ingen fil laddades upp" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "En temporär mapp saknas" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Misslyckades spara till disk" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Inte tillräckligt med lagringsutrymme tillgängligt" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Uppladdning misslyckades. Kunde inte hitta den uppladdade filen" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Uppladdning misslyckades. Gick inte att hämta filinformation." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Felaktig mapp." diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index d06794d6eee..1b9e5d7a427 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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 325aee00eaa..0dacc830107 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -17,66 +17,66 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "செல்லுபடியற்ற பெயர்,'\\', '/', '<', '>', ':', '\"', '|', '?' மற்றும் '*' ஆகியன அனுமதிக்கப்படமாட்டாது." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "ஒரு கோப்பும் பதிவேற்றப்படவில்லை. அறியப்படாத வழு" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "இங்கு வழு இல்லை, கோப்பு வெற்றிகரமாக பதிவேற்றப்பட்டது" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "பதிவேற்றப்பட்ட கோப்பானது HTML படிவத்தில் குறிப்பிடப்பட்டுள்ள MAX_FILE_SIZE directive ஐ விட கூடியது" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "பதிவேற்றப்பட்ட கோப்பானது பகுதியாக மட்டுமே பதிவேற்றப்பட்டுள்ளது" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "எந்த கோப்பும் பதிவேற்றப்படவில்லை" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "ஒரு தற்காலிகமான கோப்புறையை காணவில்லை" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "வட்டில் எழுத முடியவில்லை" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "பதிவேற்றல் இரத்து செய்யப்பட்டுள்ளது" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "கோப்பு பதிவேற்றம் செயல்பாட்டில் உள்ளது. இந்தப் பக்கத்திலிருந்து வெறியேறுவதானது பதிவேற்றலை இரத்து செய்யும்." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} ஏற்கனவே உள்ளது" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index 8ff5e0b32ac..7095ac9958f 100644 --- a/l10n/ta_LK/user_ldap.po +++ b/l10n/ta_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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/te/files.po b/l10n/te/files.po index 962db4331a7..23e4494a55d 100644 --- a/l10n/te/files.po +++ b/l10n/te/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -17,66 +17,66 @@ msgstr "" "Language: te\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/te/user_ldap.po b/l10n/te/user_ldap.po index e728d77914a..d7bc4f03188 100644 --- a/l10n/te/user_ldap.po +++ b/l10n/te/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index db622dadabe..8f14123eedf 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: 2014-03-26 01:55-0400\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\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.pot b/l10n/templates/files.pot index b27ceaf4cad..f2639f93030 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: 2014-03-26 01:55-0400\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\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 7d450a7d2e9..1ef7c2cab99 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: 2014-03-26 01:55-0400\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\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 fbbe45effc4..965c8512090 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: 2014-03-26 01:55-0400\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -41,20 +41,20 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:631 +#: lib/config.php:646 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:635 +#: lib/config.php:650 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:638 +#: lib/config.php:653 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 71f7f914ca5..2f8678ef6e2 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: 2014-03-26 01:55-0400\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\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 74f47ea00b0..d4dcc61a855 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: 2014-03-26 01:55-0400\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\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 315f764576e..5bae82bfe69 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: 2014-03-26 01:55-0400\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\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 5fbe1da2664..90e076435a3 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: 2014-03-26 01:55-0400\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\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 7ef9bd01f44..2925d3cdfdd 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: 2014-03-26 01:55-0400\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\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 0038925b941..2c810d328e0 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: 2014-03-26 01:55-0400\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\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 d28d8dc9079..73d07c3e4d2 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: 2014-03-26 01:55-0400\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\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 ebdf862dd7e..a01f6858bc6 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: 2014-03-26 01:55-0400\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\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 5969ccf253f..7cb40f38e77 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "ชื่อที่ใช้ไม่ถูกต้อง, '\\', '/', '<', '>', ':', '\"', '|', '?' และ '*' ไม่ได้รับอนุญาตให้ใช้งานได้" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "ยังไม่มีไฟล์ใดที่ถูกอัพโหลด เกิดข้อผิดพลาดที่ไม่ทราบสาเหตุ" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "ไม่พบข้อผิดพลาดใดๆ, ไฟล์ถูกอัพโหลดเรียบร้อยแล้ว" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "ขนาดไฟล์ที่อัพโหลดมีขนาดเกิน upload_max_filesize ที่ระบุไว้ใน php.ini" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "ไฟล์ที่อัพโหลดมีขนาดไฟล์ใหญ่เกินจำนวนที่กำหนดไว้ในคำสั่ง MAX_FILE_SIZE ที่ถูกระบุไว้ในรูปแบบของ HTML" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "ไฟล์ถูกอัพโหลดได้เพียงบางส่วนเท่านั้น" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "ไม่มีไฟล์ที่ถูกอัพโหลด" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "โฟลเดอร์ชั่วคราวเกิดการสูญหาย" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "เขียนข้อมูลลงแผ่นดิสก์ล้มเหลว" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "เหลือพื้นที่ไม่เพียงสำหรับใช้งาน" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "ไดเร็กทอรี่ไม่ถูกต้อง" diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index 9b08c612be8..1e29595c3f8 100644 --- a/l10n/th_TH/user_ldap.po +++ b/l10n/th_TH/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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 e44d0c628f9..3894fb0ad4d 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -46,7 +46,7 @@ msgid "" "allowed." msgstr "Geçersiz isim, '\\', '/', '<', '>', ':', '\"', '|', '?' ve '*' karakterlerine izin verilmemektedir." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Hedef klasör taşındı veya silindi." @@ -92,54 +92,54 @@ msgstr "Yükleme dizini tanımlanamadı." msgid "Invalid Token" msgstr "Geçersiz Simge" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Dosya yüklenmedi. Bilinmeyen hata" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Dosya başarıyla yüklendi, hata oluşmadı" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "php.ini dosyasında upload_max_filesize ile belirtilen dosya yükleme sınırı aşıldı." -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Yüklenecek dosyanın boyutu HTML formunda belirtilen MAX_FILE_SIZE limitini aşıyor" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Dosya kısmen karşıya yüklenebildi" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Hiç dosya gönderilmedi" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Geçici dizin eksik" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Diske yazılamadı" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Yeterli disk alanı yok" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Yükleme başarısız. Yüklenen dosya bulunamadı" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Yükleme başarısız. Dosya bilgisi alınamadı." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Geçersiz dizin." diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 29c83ca6b78..33a02856ebe 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 01:55-0400\n" -"PO-Revision-Date: 2014-03-12 10:51+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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/ug/files.po b/l10n/ug/files.po index 506c14df31a..99023de9b63 100644 --- a/l10n/ug/files.po +++ b/l10n/ug/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "ھېچقانداق ھۆججەت يۈكلەنمىدى. يوچۇن خاتالىق" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "ھېچقانداق ھۆججەت يۈكلەنمىدى" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "ۋاقىتلىق قىسقۇچ كەم." -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "دىسكىغا يازالمىدى" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "يېتەرلىك ساقلاش بوشلۇقى يوق" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index a2672c92aaa..4ac58f58360 100644 --- a/l10n/ug/user_ldap.po +++ b/l10n/ug/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 87f0b69253d..310553d9484 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -43,7 +43,7 @@ msgid "" "allowed." msgstr "Невірне ім'я, '\\', '/', '<', '>', ':', '\"', '|', '?' та '*' не дозволені." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -89,54 +89,54 @@ msgstr "Не вдалося встановити каталог завантаж msgid "Invalid Token" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Не завантажено жодного файлу. Невідома помилка" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Файл успішно вивантажено без помилок." -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Розмір звантаження перевищує upload_max_filesize параметра в php.ini: " -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Розмір відвантаженого файлу перевищує директиву MAX_FILE_SIZE вказану в HTML формі" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Файл відвантажено лише частково" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Не відвантажено жодного файлу" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Відсутній тимчасовий каталог" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Невдалося записати на диск" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Місця більше немає" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Невірний каталог." diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index 5aa076e5cb8..0e0f846c7ff 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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 1040f0a0b16..b049eef635c 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -46,7 +46,7 @@ msgid "" "allowed." msgstr "Tên không hợp lệ, '\\', '/', '<', '>', ':', '\"', '|', '?' và '*' thì không được phép dùng." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -92,54 +92,54 @@ msgstr "Không thể thiết lập thư mục tải lên." msgid "Invalid Token" msgstr "Xác thực không hợp lệ" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Không có tập tin nào được tải lên. Lỗi không xác định" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Không có lỗi, các tập tin đã được tải lên thành công" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Tập tin được tải lên vượt quá MAX_FILE_SIZE được quy định trong mẫu HTML" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Các tập tin được tải lên chỉ tải lên được một phần" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Chưa có file nào được tải lên" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Không tìm thấy thư mục tạm" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Không thể ghi " -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Không đủ không gian lưu trữ" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Tải lên thất bại. Không thể tìm thấy tập tin được tải lên" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Tải lên thất bại. Không thể có được thông tin tập tin." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Thư mục không hợp lệ" diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index 6d8ab5dafc1..0874d51ffbd 100644 --- a/l10n/vi/user_ldap.po +++ b/l10n/vi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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 40428237a05..79cc25eb3ea 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -46,7 +46,7 @@ msgid "" "allowed." msgstr "无效名称,'\\', '/', '<', '>', ':', '\"', '|', '?' 和 '*' 不被允许使用。" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -92,54 +92,54 @@ msgstr "无法设置上传文件夹。" msgid "Invalid Token" msgstr "无效密匙" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "没有文件被上传。未知错误" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "文件上传成功,没有错误发生" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "上传文件大小已超过php.ini中upload_max_filesize所规定的值" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "上传的文件长度超出了 HTML 表单中 MAX_FILE_SIZE 的限制" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "已上传文件只上传了部分(不完整)" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "没有文件被上传" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "缺少临时目录" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "写入磁盘失败" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "没有足够的存储空间" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "上传失败。不能发现上传的文件" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "上传失败。不能获取文件信息。" -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "无效文件夹。" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index 723367bdbe1..79cecd9f5ea 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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_HK/files.po b/l10n/zh_HK/files.po index 76b4c3ff60c..af3a338f965 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -17,66 +17,66 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index 690f08e838e..67182c3f7e1 100644 --- a/l10n/zh_HK/user_ldap.po +++ b/l10n/zh_HK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 71dc6a0a86b..a83f1fff465 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "檔名不合法,不允許 \\ / < > : \" | ? * 字元" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -90,54 +90,54 @@ msgstr "無法設定上傳目錄" msgid "Invalid Token" msgstr "無效的 token" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "沒有檔案被上傳,原因未知" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "一切都順利,檔案上傳成功" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "上傳的檔案大小超過 php.ini 當中 upload_max_filesize 參數的設定:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "上傳的檔案大小超過 HTML 表單中 MAX_FILE_SIZE 的限制" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "只有檔案的一部分被上傳" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "沒有檔案被上傳" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "找不到暫存資料夾" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "寫入硬碟失敗" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "儲存空間不足" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "上傳失敗,找不到上傳的檔案" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "上傳失敗,無法取得檔案資訊" -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "無效的資料夾" diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index 47eae57c809..f025e58cce9 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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/ca.php b/settings/l10n/ca.php index 92c5450b7dc..54fe0bbcf39 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -93,6 +93,7 @@ $TRANSLATIONS = array( "Internet connection not working" => "La connexió a internet no funciona", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Aquest servidor no té cap connexió a internet que funcioni. Això significa que algunes de les característiques com el muntatge d'emmagatzemament extern, les notificacions quant a actualitzacions o la instal·lació d'aplicacions de tercers no funcionarà. L'accés remot a fitxers i l'enviament de correus electrònics podria tampoc no funcionar. Us suggerim que habiliteu la connexió a internet per aquest servidor si voleu tenir totes les característiques.", "Cron" => "Cron", +"Last cron was executed at %s." => "L'últim cron s'ha executat el %s", "Execute one task with each page loaded" => "Executa una tasca per cada paquet carregat", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php està registrat en un servei webcron que fa una crida a cron.php cada 15 minuts a través de http.", "Use systems cron service to call the cron.php file every 15 minutes." => "Utilitza el servei cron del sistema per fer una crida al fitxer cron.php cada 15 minuts.", diff --git a/settings/l10n/da.php b/settings/l10n/da.php index 42c99b2fc26..df8d2c419b9 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -1,6 +1,7 @@ "Gemt", +"test email settings" => "test email indstillinger", "Email sent" => "E-mail afsendt", "Encryption" => "Kryptering", "Unable to load list from App Store" => "Kunne ikke indlæse listen fra App Store", @@ -65,6 +66,9 @@ $TRANSLATIONS = array( "Fatal issues only" => "Kun alvorlige fejl", "None" => "Ingen", "Login" => "Login", +"NT LAN Manager" => "NT LAN Manager", +"SSL" => "SSL", +"TLS" => "TLS", "Security Warning" => "Sikkerhedsadvarsel", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Du tilgår %s via HTTP. Vi anbefaler at du konfigurerer din server til i stedet at kræve HTTPS.", "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Din data mappe og dine filer er muligvis tilgængelige fra internettet. .htaccess filen virker ikke. Vi anbefaler på det kraftigste at du konfigurerer din webserver så data mappen ikke længere er tilgængelig, eller at du flytter data mappen uden for webserverens dokument rod. ", @@ -102,8 +106,16 @@ $TRANSLATIONS = array( "Enforce HTTPS" => "Gennemtving HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Tving klienten til at forbinde til %s via en kryptetet forbindelse.", "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Forbind venligst til din %s via HTTPS for at aktivere eller deaktivere SSL tvang.", +"Email Server" => "Email Server", +"From address" => "Fra adresse", +"Authentication required" => "Godkendelse påkrævet", "Server address" => "Serveradresse", "Port" => "Port", +"Credentials" => "Brugeroplysninger", +"SMTP Username" => "SMTP Brugernavn", +"SMTP Password" => "SMTP Kodeord", +"Test email settings" => "Test email indstillinger", +"Send email" => "Send email", "Log" => "Log", "Log level" => "Log niveau", "More" => "Mere", @@ -113,6 +125,7 @@ $TRANSLATIONS = array( "Add your App" => "Tilføj din App", "More Apps" => "Flere Apps", "Select an App" => "Vælg en App", +"Documentation:" => "Dokumentation:", "See application page at apps.owncloud.com" => "Se applikationens side på apps.owncloud.com", "-licensed by " => "-licenseret af ", "Administrator Documentation" => "Administrator Dokumentation", diff --git a/settings/l10n/de.php b/settings/l10n/de.php index cd87ac6db26..ffbda893018 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -93,6 +93,9 @@ $TRANSLATIONS = array( "Internet connection not working" => "Keine Netzwerkverbindung", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Dieser Server hat keine funktionierende Internetverbindung. Dies bedeutet das einige Funktionen wie z.B. das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungsmails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Internetverbindung für diesen Server zu aktivieren wenn Sie alle Funktionen nutzen wollen.", "Cron" => "Cron", +"Last cron was executed at %s." => "Letzter Cron wurde um %s ausgeführt.", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Letzter Cron wurde um %s ausgeführt. Dies ist mehr als eine Stunde her, möglicherweise liegt ein Fehler vor.", +"Cron was not executed yet!" => "Cron wurde bis jetzt noch nicht ausgeführt!", "Execute one task with each page loaded" => "Führe eine Aufgabe mit jeder geladenen Seite aus", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php ist als Webcron-Dienst registriert, der die cron.php alle 15 Minuten per HTTP aufruft.", "Use systems cron service to call the cron.php file every 15 minutes." => "Benutze den System-Crondienst um die cron.php alle 15 Minuten aufzurufen.", diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index 8884afcbc3c..0b30cc0c191 100644 --- a/settings/l10n/de_DE.php +++ b/settings/l10n/de_DE.php @@ -93,6 +93,9 @@ $TRANSLATIONS = array( "Internet connection not working" => "Keine Internetverbindung", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Dieser Server hat keine funktionierende Internetverbindung. Dies bedeutet, dass 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 Versenden von Mail-Benachrichtigungen funktionieren eventuell ebenfalls nicht. Wir empfehlen die Internetverbindung für diesen Server zu aktivieren, wenn Sie alle Funktionen nutzen wollen.", "Cron" => "Cron", +"Last cron was executed at %s." => "Letzter Cron wurde um %s ausgeführt.", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Letzter Cron wurde um %s ausgeführt. Dies ist mehr als eine Stunde her, möglicherweise liegt ein Fehler vor.", +"Cron was not executed yet!" => "Cron wurde bis jetzt noch nicht ausgeführt!", "Execute one task with each page loaded" => "Eine Aufgabe bei jedem Laden der Seite ausführen", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php ist als Webcron-Dienst registriert, der die cron.php alle 15 Minuten per HTTP aufruft.", "Use systems cron service to call the cron.php file every 15 minutes." => "Benutzen Sie den System-Crondienst, um die cron.php alle 15 Minuten aufzurufen.", diff --git a/settings/l10n/en_GB.php b/settings/l10n/en_GB.php index 2315586b187..b377a6b3381 100644 --- a/settings/l10n/en_GB.php +++ b/settings/l10n/en_GB.php @@ -93,6 +93,9 @@ $TRANSLATIONS = array( "Internet connection not working" => "Internet connection not working", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don't work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features.", "Cron" => "Cron", +"Last cron was executed at %s." => "Last cron was executed at %s.", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Last cron was executed at %s. This is more than an hour ago, something seems wrong.", +"Cron was not executed yet!" => "Cron was not executed yet!", "Execute one task with each page loaded" => "Execute one task with each page loaded", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php is registered at a webcron service to call cron.php every 15 minutes over http.", "Use systems cron service to call the cron.php file every 15 minutes." => "Use system's cron service to call the cron.php file every 15 minutes.", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index 734149034b9..ec6e3b3bd65 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -93,6 +93,9 @@ $TRANSLATIONS = array( "Internet connection not working" => "La conexión a Internet no está funcionando", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Este servidor no tiene conexión a Internet. Esto significa que algunas de las características no funcionarán, como el montaje de almacenamiento externo, las notificaciones sobre actualizaciones, la instalación de aplicaciones de terceros, el acceso a los archivos de forma remota o el envío de correos electrónicos de notificación. Sugerimos habilitar una conexión a Internet en este servidor para disfrutar de todas las funciones.", "Cron" => "Cron", +"Last cron was executed at %s." => "Cron fue ejecutado por última vez a las %s.", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Cron fue ejecutado por última vez a las %s. Esto fue hace más de una hora, algo anda mal.", +"Cron was not executed yet!" => "¡Cron aún no ha sido ejecutado!", "Execute one task with each page loaded" => "Ejecutar una tarea con cada página cargada", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php se registra en un servicio webcron para llamar a cron.php cada 15 minutos a través de HTTP.", "Use systems cron service to call the cron.php file every 15 minutes." => "Utiliza el servicio cron del sistema para llamar al archivo cron.php cada 15 minutos.", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index 284c47e0806..7bef4092a43 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -83,6 +83,9 @@ $TRANSLATIONS = array( "We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Suosittelemme vahvasti asentamaan vaaditut paketit järjestelmään, jotta jotain seuraavista maa-asetuksista on mahdollista tukea: %s.", "Internet connection not working" => "Internet-yhteys ei toimi", "Cron" => "Cron", +"Last cron was executed at %s." => "Viimeisin cron suoritettiin %s.", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Viimeisin cron suoritettiin %s. Siitä on yli tunti aikaa, joten jokin näyttää olevan pielessä.", +"Cron was not executed yet!" => "Cronia ei suoritettu vielä!", "Use systems cron service to call the cron.php file every 15 minutes." => "Käytä järjestelmän cron-palvelua cron.php-tiedoston kutsumiseen 15 minuutin välein", "Sharing" => "Jakaminen", "Enable Share API" => "Käytä jakamisen ohjelmointirajapintaa", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index 181fd11f972..10151a0a1e1 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -93,6 +93,9 @@ $TRANSLATIONS = array( "Internet connection not working" => "Concessione Internet non funzionante", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Questo server ownCloud non ha una connessione a Internet funzionante. Ciò significa che alcune delle funzionalità come il montaggio di archivi esterni, le notifiche degli aggiornamenti o l'installazione di applicazioni di terze parti non funzioneranno. L'accesso remoto ai file e l'invio di email di notifica potrebbero non funzionare. Ti suggeriamo di abilitare la connessione a Internet del server se desideri disporre di tutte le funzionalità.", "Cron" => "Cron", +"Last cron was executed at %s." => "L'ultimo cron è stato eseguito alle %s.", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "L'ultimo cron è stato eseguito alle %s. È più di un ora fa, qualcosa sembra sbagliato.", +"Cron was not executed yet!" => "Cron non è ancora stato eseguito!", "Execute one task with each page loaded" => "Esegui un'operazione con ogni pagina caricata", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php è registrato su un servizio webcron per invocare cron.php ogni 15 minuti su http.", "Use systems cron service to call the cron.php file every 15 minutes." => "Usa il servizio cron di sistema per invocare il file cron.php ogni 15 minuti.", diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index 826a6a77e00..c497eb12a68 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -93,6 +93,9 @@ $TRANSLATIONS = array( "Internet connection not working" => "Internet verbinding werkt niet", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Deze server heeft geen actieve internetverbinding. Dat betekent dat sommige functies, zoals aankoppelen van externe opslag, notificaties over updates of installatie van apps van 3e partijen niet werken. Ook het benaderen van bestanden vanaf een remote locatie en het versturen van notificatie emails kan mislukken. We adviseren om de internetverbinding voor deze server in te schakelen als u alle functies wilt gebruiken.", "Cron" => "Cron", +"Last cron was executed at %s." => "Laatst uitgevoerde cron op %s.", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Laatst uitgevoerde cron op %s. Dat is langer dan een uur geleden, er is iets fout gegaan.", +"Cron was not executed yet!" => "Cron is nog niet uitgevoerd!", "Execute one task with each page loaded" => "Bij laden van elke pagina één taak uitvoeren", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php is geregisteerd bij een webcron service om elke 15 minuten cron.php over http aan te roepen.", "Use systems cron service to call the cron.php file every 15 minutes." => "Gebruik de systeem cron service om cron.php elke 15 minuten aan te roepen.", diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index 33b22a147dc..640e1df9585 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -93,6 +93,9 @@ $TRANSLATIONS = array( "Internet connection not working" => "Połączenie internetowe nie działa", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Ten serwer OwnCloud nie ma połączenia z Internetem. Oznacza to, że niektóre z funkcji, takich jak montowanie zewnętrznych zasobów, powiadomienia o aktualizacji lub 3-cie aplikacje mogą nie działać. Dostęp do plików z zewnątrz i wysyłanie powiadomienia e-mail nie może również działać. Sugerujemy, aby włączyć połączenia internetowego dla tego serwera, jeśli chcesz mieć wszystkie opcje.", "Cron" => "Cron", +"Last cron was executed at %s." => "Ostatni cron był uruchomiony %s.", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Ostatni cron był uruchomiony %s. To jest więcej niż godzinę temu, wygląda na to, że coś jest nie tak.", +"Cron was not executed yet!" => "Cron nie został jeszcze uruchomiony!", "Execute one task with each page loaded" => "Wykonuj jedno zadanie wraz z każdą wczytaną stroną", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php jest zarejestrowany w serwisie webcron do uruchamiania cron.php raz na 15 minut przez http.", "Use systems cron service to call the cron.php file every 15 minutes." => "Użyj systemowego cron-a do uruchamiania cron.php raz na 15 minut.", -- GitLab From 2a08e35d72ef8d65960c0d3db4d233276c77eda7 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Thu, 27 Mar 2014 12:34:30 +0100 Subject: [PATCH 120/296] Fix swift touch operation The touch() operation now uses "UpdateMetadata()" instead of "Update()" which doesn't clear the object's contents. This fixes syncing, as the sync client needs to use touch to update the object's mtime. --- apps/files_external/lib/swift.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_external/lib/swift.php b/apps/files_external/lib/swift.php index a6955d400f4..1337d9f581d 100644 --- a/apps/files_external/lib/swift.php +++ b/apps/files_external/lib/swift.php @@ -374,7 +374,7 @@ class Swift extends \OC\Files\Storage\Common { 'X-Object-Meta-Timestamp' => $mtime ) ); - return $object->Update($settings); + return $object->UpdateMetadata($settings); } else { $object = $this->container->DataObject(); if (is_null($mtime)) { -- GitLab From d2de6e7a663960f61e61ff8fca4ec2b765f39f93 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Thu, 27 Mar 2014 14:31:24 +0100 Subject: [PATCH 121/296] fix SVG replacement for logo so it works in IE8, fix #7866 --- core/templates/layout.guest.php | 2 +- core/templates/layout.user.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/templates/layout.guest.php b/core/templates/layout.guest.php index 91157b923a5..5788d1d5bd3 100644 --- a/core/templates/layout.guest.php +++ b/core/templates/layout.guest.php @@ -36,7 +36,7 @@
    diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index 3d897503480..789b4dcf902 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -46,7 +46,7 @@
    -
    +

    t('Module \'fileinfo\' missing'));?>

    t('The PHP module \'fileinfo\' is missing. We strongly recommend to enable this module to get best results with mime-type detection.')); ?> -
    +
    -
    +

    t('Your PHP version is outdated'));?>

    t('Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly.')); ?> -
    +
    -
    +

    t('Locale not working'));?>

    @@ -132,21 +132,21 @@ if (!$_['isLocaleWorking']) { ?> -
    + -
    +

    t('Internet connection not working'));?>

    t('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.')); ?> -
    + @@ -156,7 +156,7 @@ if (!$_['internetconnectionworking']) { } ;?> -
    +

    t('Cron'));?>

    @@ -199,9 +199,9 @@ if (!$_['internetconnectionworking']) {
    t("Use systems cron service to call the cron.php file every 15 minutes.")); ?>

    -
    + -
    +

    t('Sharing'));?>

    @@ -255,9 +255,9 @@ if (!$_['internetconnectionworking']) {
    -
    + -
    +

    t('Security'));?>

    @@ -288,9 +288,9 @@ if (!$_['internetconnectionworking']) {
    -
    + -
    +

    t('Email Server'));?>

    t('This is used for sending out notifications.')); ?>

    @@ -370,9 +370,9 @@ if (!$_['internetconnectionworking']) { t( 'Test email settings' )); ?> -
    + -
    +

    t('Log'));?>

    t('Log level'));?> - - - -
    -
    -
    +
    +

    t('Password'));?>

    +
    t('Your password was changed');?>
    +
    t('Unable to change your password');?>
    + + + + +
    +
    -
    -
    -

    t('Full Name');?>

    - - - -
    + +

    t('Full Name');?>

    + + +
    -
    -
    -

    t('Email'));?>

    - -
    - t('Fill in an email address to enable password recovery and receive notifications'));?> -
    + +

    t('Email'));?>

    + +
    + t('Fill in an email address to enable password recovery and receive notifications'));?>
    -
    -
    -

    t('Profile picture')); ?>

    -
    -

    - - -
    t('Upload new')); ?>
    - -
    t('Select new from Files')); ?>
    -
    t('Remove image')); ?>

    - t('Either png or jpg. Ideally square but you will be able to crop it.')); ?> - - t('Your avatar is provided by your original account.')); ?> - -
    - -
    + +

    t('Profile picture')); ?>

    +
    +

    + + +
    t('Upload new')); ?>
    + +
    t('Select new from Files')); ?>
    +
    t('Remove image')); ?>

    + t('Either png or jpg. Ideally square but you will be able to crop it.')); ?> + + t('Your avatar is provided by your original account.')); ?> + +
    +
    -
    -
    -

    t('Language'));?>

    - + + + - - - - - - - - - - - t('Help translate'));?> - - -
    + + + + + + + + + t('Help translate'));?> + +
    -
    +

    t('WebDAV'));?>


    t('Use this address to access your Files via WebDAV', array(link_to_docs('user-webdav'))));?> -
    + -
    +

    t( 'Encryption' ) ); ?>

    @@ -174,18 +164,17 @@ if($_['passwordChangeSupported']) {


    -
    + -
    +

    t('Version'));?>

    getName()); ?>
    t('Developed by the ownCloud community, the source code is licensed under the AGPL.')); ?> -
    - + + + -- GitLab From 6de572c6e6387ae2b60c97b655083a0412bfa643 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Thu, 27 Mar 2014 16:35:34 +0100 Subject: [PATCH 127/296] replace personalblock fieldset with section class in files apps --- apps/files/templates/admin.php | 42 ++- .../templates/settings-admin.php | 113 ++++---- .../templates/settings-personal.php | 119 ++++---- apps/files_external/templates/settings.php | 258 +++++++++--------- 4 files changed, 261 insertions(+), 271 deletions(-) diff --git a/apps/files/templates/admin.php b/apps/files/templates/admin.php index a5afd55fbc3..5f7d3261d6c 100644 --- a/apps/files/templates/admin.php +++ b/apps/files/templates/admin.php @@ -1,28 +1,26 @@ -
    -
    -

    t('File handling')); ?>

    - - - '/> - - (t('max. possible: ')); p($_['maxPossibleUploadSize']) ?>) - -
    + +

    t('File handling')); ?>

    + + + '/> + + (t('max. possible: ')); p($_['maxPossibleUploadSize']) ?>) - checked="checked" /> -
    +
    + + checked="checked" /> +
    - ' - title="t( '0 is unlimited' )); ?>" - disabled="disabled" />
    - t( 'Maximum input size for ZIP files' )); ?>
    + ' + title="t( '0 is unlimited' )); ?>" + disabled="disabled" />
    + t( 'Maximum input size for ZIP files' )); ?>
    - - -
    + +
    diff --git a/apps/files_encryption/templates/settings-admin.php b/apps/files_encryption/templates/settings-admin.php index 231a68b6a58..cf676c445ce 100644 --- a/apps/files_encryption/templates/settings-admin.php +++ b/apps/files_encryption/templates/settings-admin.php @@ -1,63 +1,60 @@ -
    -
    + +

    t('Encryption')); ?>

    -

    t('Encryption')); ?>

    +

    + t("Enable recovery key (allow to recover users files in case of password loss):")); ?> +
    +
    + + +
    + + +
    + /> + t("Enabled")); ?> +
    -

    - t("Enable recovery key (allow to recover users files in case of password loss):")); ?> -
    -
    - - -
    - - -
    - /> - t("Enabled")); ?> -
    + /> + t("Disabled")); ?> +

    +

    - /> - t("Disabled")); ?> -

    +

    > + t("Change recovery key password:")); ?>

    - -

    > - t("Change recovery key password:")); ?> -

    - t("Old Recovery key password")); ?> -
    -
    - t("New Recovery key password")); ?> -
    - t("Repeat New Recovery key password")); ?> -
    - - -

    -
    + t("Old Recovery key password")); ?> +
    +
    + t("New Recovery key password")); ?> +
    + t("Repeat New Recovery key password")); ?> +
    + + +

    diff --git a/apps/files_encryption/templates/settings-personal.php b/apps/files_encryption/templates/settings-personal.php index 1b4239d82cd..8139ece1950 100644 --- a/apps/files_encryption/templates/settings-personal.php +++ b/apps/files_encryption/templates/settings-personal.php @@ -1,66 +1,63 @@ -
    -
    -

    t( 'Encryption' ) ); ?>

    + +

    t( 'Encryption' ) ); ?>

    - -

    - - -
    - t( "Set your old private key password to your current log-in password." ) ); ?> - t( " If you don't remember your old password you can ask your administrator to recover your files." ) ); - endif; ?> - -
    - - -
    - - -
    - - -

    - - - + +

    + + +
    + t( "Set your old private key password to your current log-in password." ) ); ?> + t( " If you don't remember your old password you can ask your administrator to recover your files." ) ); + endif; ?> + +
    + + +
    + +
    -

    - -
    - t( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" ) ); ?> -
    - /> - t( "Enabled" ) ); ?> -
    + + +

    + - /> - t( "Disabled" ) ); ?> -
    t( 'File recovery settings updated' ) ); ?>
    -
    t( 'Could not update file recovery' ) ); ?>
    -

    - + +
    +

    + +
    + t( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" ) ); ?> +
    + /> + t( "Enabled" ) ); ?> +
    -

    + /> + t( "Disabled" ) ); ?> +
    t( 'File recovery settings updated' ) ); ?>
    +
    t( 'Could not update file recovery' ) ); ?>
    +

    + diff --git a/apps/files_external/templates/settings.php b/apps/files_external/templates/settings.php index 5e84fa8a252..e7be16bede1 100644 --- a/apps/files_external/templates/settings.php +++ b/apps/files_external/templates/settings.php @@ -1,141 +1,139 @@ -
    -
    +

    t('External Storage')); ?>

    - '')) print_unescaped(''.$_['dependencies'].''); ?> - '> - - - - - - - - '.$l->t('Applicable').''); ?> - - - - - array())); ?> - - > - + + + + + + + +
    t('Folder name')); ?>t('External storage')); ?>t('Configuration')); ?> 
    - - - + '')) print_unescaped(''.$_['dependencies'].''); ?> + '> + + + + + + + + '.$l->t('Applicable').''); ?> + + + + + array())); ?> + + > + + + + - - - - - - - + + - - - - - - -
    t('Folder name')); ?>t('External storage')); ?>t('Configuration')); ?> 
    + + + + + - - - - $value): ?> - - - - - - - - - - - - - + + + + $value): ?> + + + + + + + + + + + + - - - + + + - ' - data-applicable-users=''> - - class="remove" - style="visibility:hidden;" - ><?php p($l->t('Delete')); ?>
    -
    +
    ' + data-applicable-users=''> + + class="remove" + style="visibility:hidden;" + ><?php p($l->t('Delete')); ?>
    +
    - -
    - /> - + +
    + /> + -

    class="hidden"> - t('Allow users to mount the following external storage')); ?>
    - $backend): ?> - /> -
    - - -

    - -
    +

    class="hidden"> + t('Allow users to mount the following external storage')); ?>
    + $backend): ?> + /> +
    + + +

    +
    -- GitLab From 25326b89dad234ecbb91b778e6d1adf3600f09c6 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Thu, 27 Mar 2014 16:41:16 +0100 Subject: [PATCH 128/296] replace personalblock fieldset with section class in core user_ apps --- apps/user_ldap/templates/settings.php | 2 +- apps/user_webdavauth/templates/settings.php | 14 ++++++-------- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/apps/user_ldap/templates/settings.php b/apps/user_ldap/templates/settings.php index 79c4ae224c3..ee4a7df3cb8 100644 --- a/apps/user_ldap/templates/settings.php +++ b/apps/user_ldap/templates/settings.php @@ -1,5 +1,5 @@
    -
    +
      $title) { ?>
    • diff --git a/apps/user_webdavauth/templates/settings.php b/apps/user_webdavauth/templates/settings.php index ad1701add8c..4596fdf3c78 100755 --- a/apps/user_webdavauth/templates/settings.php +++ b/apps/user_webdavauth/templates/settings.php @@ -1,9 +1,7 @@ - -
      -

      t('WebDAV Authentication'));?>

      -

      - - -
      t('The user credentials will be sent to this address. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials.')); ?> -

      + +

      t('WebDAV Authentication'));?>

      +

      + + +
      t('The user credentials will be sent to this address. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials.')); ?>

      -- GitLab From 5b2abb32a64de2c315148893d2774a84315a5ac2 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Thu, 27 Mar 2014 16:42:08 +0100 Subject: [PATCH 129/296] remove CSS rules for personalblock, remove it from core --- core/css/styles.css | 16 ++++------------ settings/css/settings.css | 5 ----- 2 files changed, 4 insertions(+), 17 deletions(-) diff --git a/core/css/styles.css b/core/css/styles.css index bd8111ebc72..4420633e34e 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -790,20 +790,12 @@ tr .action { width:16px; height:16px; } tr:hover .action:hover, .selectedActions a:hover, .header-action:hover { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter:alpha(opacity=100); opacity:1; } tbody tr:hover, tr:active { background-color:#f8f8f8; } -#body-settings h2 { - font-size: 20px; - font-weight: normal; - margin-bottom: 7px; -} -#body-settings .personalblock, #body-settings .helpblock { - padding: 30px; - color: #555; - border-top: 1px solid #ddd; -} -#body-settings .personalblock#quota { position:relative; padding:0; } -#body-settings #controls+.helpblock { position:relative; margin-top:3em; } code { font-family:"Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", monospace; } +#quota { + position: relative; + padding: 0; +} #quota div { padding: 0; background-color: rgb(220,220,220); diff --git a/settings/css/settings.css b/settings/css/settings.css index 280d022af4e..19678e687e1 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -12,11 +12,6 @@ input#openid, input#webdav { width:20em; } display: block; } -.personalblock input[type="checkbox"] { - position: relative; - top: 2px; -} - /* Sync clients */ .clientsbox { margin:12px; } .clientsbox h1 { font-size:40px; font-weight:bold; margin:50px 0 20px; } -- GitLab From 53b1e4a00b30db8d385370680ab5d81676b3644e Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Thu, 27 Mar 2014 17:13:12 +0100 Subject: [PATCH 130/296] remove additional radio button width declaration --- settings/css/settings.css | 1 - 1 file changed, 1 deletion(-) diff --git a/settings/css/settings.css b/settings/css/settings.css index 280d022af4e..2cb18670875 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -152,7 +152,6 @@ table.grid td.date{ /* ADMIN */ span.securitywarning {color:#C33; font-weight:bold; } span.connectionwarning {color:#933; font-weight:bold; } -input[type=radio] { width:1em; } table.shareAPI td { padding-bottom: 0.8em; } #mail_settings p label:first-child { -- GitLab From ec46a071957dd21fa0613ebeb7a539ee8b1eaa47 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Thu, 27 Mar 2014 17:13:36 +0100 Subject: [PATCH 131/296] convert input metrics to px --- core/css/styles.css | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/core/css/styles.css b/core/css/styles.css index bd8111ebc72..9719de191ef 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -101,9 +101,14 @@ select, button, .button, #quota, .pager li a { - width:10em; margin:.3em; padding:.6em .5em .4em; - font-size:1em; - background:#fff; color:#333; border:1px solid #ddd; outline:none; + width: 130px; + margin: 3px 3px 3px 0; + padding: 7px 6px 5px; + font-size: 13px; + background: #fff; + color: #333; + border: 1px solid #ddd; + outline: none; border-radius: 3px; } input[type="hidden"] { -- GitLab From 6a8e93ffa63f17624fbc7de54c501b4c94b0c81a Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Thu, 27 Mar 2014 23:53:19 +0100 Subject: [PATCH 132/296] fix breadcrumbs for IE8 --- apps/files/templates/part.breadcrumb.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/templates/part.breadcrumb.php b/apps/files/templates/part.breadcrumb.php index 2a0df622767..69b4cbca10d 100644 --- a/apps/files/templates/part.breadcrumb.php +++ b/apps/files/templates/part.breadcrumb.php @@ -1,4 +1,4 @@ -
      " data-dir=''> +
      " data-dir=''> Date: Wed, 26 Mar 2014 17:48:33 +0100 Subject: [PATCH 133/296] prevent dimmed ocdialog div from scrolling --- core/css/jquery.ocdialog.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/css/jquery.ocdialog.css b/core/css/jquery.ocdialog.css index 236968e3245..a1221137bc4 100644 --- a/core/css/jquery.ocdialog.css +++ b/core/css/jquery.ocdialog.css @@ -43,7 +43,7 @@ background-color: #000; opacity: .20;filter:Alpha(Opacity=20); z-index: 999; - position: absolute; + position: fixed; top: 0; left: 0; width: 100%; height: 100%; } -- GitLab From ccc55f40e6be7c9cc5e5484721998b2d60aeedc9 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Fri, 28 Mar 2014 01:55:47 -0400 Subject: [PATCH 134/296] [tx-robot] updated from transifex --- apps/files/l10n/ru.php | 5 +++++ apps/files_encryption/l10n/ru.php | 1 + apps/files_external/l10n/ru.php | 2 ++ core/l10n/es.php | 6 +++--- core/l10n/ru.php | 11 +++++++++++ core/l10n/tr.php | 2 +- l10n/cs_CZ/settings.po | 12 ++++++------ l10n/es/core.po | 12 ++++++------ l10n/pt_BR/settings.po | 12 ++++++------ l10n/ru/core.po | 29 +++++++++++++++-------------- l10n/ru/files.po | 17 +++++++++-------- l10n/ru/files_encryption.po | 9 +++++---- l10n/ru/files_external.po | 17 +++++++++-------- l10n/ru/settings.po | 16 ++++++++-------- 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 | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 12 ++++++------ l10n/templates/private.pot | 12 ++++++------ l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/tr/core.po | 6 +++--- l10n/tr/settings.po | 12 ++++++------ settings/l10n/cs_CZ.php | 3 +++ settings/l10n/pt_BR.php | 3 +++ settings/l10n/ru.php | 6 ++++++ settings/l10n/tr.php | 3 +++ 32 files changed, 136 insertions(+), 98 deletions(-) diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index 2c0335f3cc3..ac958e5dfd3 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -3,7 +3,9 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Невозможно переместить %s - файл с таким именем уже существует", "Could not move %s" => "Невозможно переместить %s", "File name cannot be empty." => "Имя файла не может быть пустым.", +"\"%s\" is an invalid file name." => "\"%s\" это не правильное имя файла.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Неправильное имя: символы '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' недопустимы.", +"The target folder has been moved or deleted." => "Целевой каталог был перемещен или удален.", "The name %s is already used in the folder %s. Please choose a different name." => "Имя %s уже используется для каталога %s. Пожалуйста, выберите другое имя.", "Not a valid source" => "Неправильный источник", "Server is not allowed to open URLs, please check the server configuration" => "Сервер не позволяет открывать URL-адреса, пожалуйста, проверьте настройки сервера", @@ -27,6 +29,8 @@ $TRANSLATIONS = array( "Invalid directory." => "Неверный каталог.", "Files" => "Файлы", "Unable to upload {filename} as it is a directory or has 0 bytes" => "Невозможно загрузить {filename}, так как это либо каталог, либо файл нулевого размера", +"Total file size {size1} exceeds upload limit {size2}" => "Полный размер файла {size1} превышает лимит по загрузке {size2}", +"Not enough free space, you are uploading {size1} but only {size2} is left" => "Не достаточно свободного места, Вы загружаете {size1} но осталось только {size2}", "Upload cancelled." => "Загрузка отменена.", "Could not get result from server." => "Не удалось получить ответ от сервера.", "File upload is in progress. Leaving the page now will cancel the upload." => "Идёт загрузка файла. Покинув страницу, вы прервёте загрузку.", @@ -48,6 +52,7 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array("%n файл","%n файла","%n файлов"), "{dirs} and {files}" => "{dirs} и {files}", "_Uploading %n file_::_Uploading %n files_" => array("Закачка %n файла","Закачка %n файлов","Закачка %n файлов"), +"\"{name}\" is an invalid file name." => "\"{name}\" это не правильное имя файла.", "Your storage is full, files can not be updated or synced anymore!" => "Ваше хранилище заполнено, произведите очистку перед загрузкой новых файлов.", "Your storage is almost full ({usedSpacePercent}%)" => "Ваше хранилище почти заполнено ({usedSpacePercent}%)", "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Приложение для шифрования активно, но ваши ключи не инициализированы, пожалуйста, перелогиньтесь", diff --git a/apps/files_encryption/l10n/ru.php b/apps/files_encryption/l10n/ru.php index bce245ce680..ba984868932 100644 --- a/apps/files_encryption/l10n/ru.php +++ b/apps/files_encryption/l10n/ru.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "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 включены и правильно настроены. На данный момент приложение шифрования отключено.", "Following users are not set up for encryption:" => "Для следующих пользователей шифрование не настроено:", "Initial encryption started... This can take some time. Please wait." => "Начато начальное шифрование... Это может занять какое-то время. Пожалуйста, подождите.", +"Initial encryption running... Please try again later." => "Работает первоначальное шифрование... Пожалуйста, повторите попытку позже.", "Go directly to your " => "Перейти прямо в", "personal settings" => "персональные настройки", "Encryption" => "Шифрование", diff --git a/apps/files_external/l10n/ru.php b/apps/files_external/l10n/ru.php index 66d6f9fa6b8..8ed437839cd 100644 --- a/apps/files_external/l10n/ru.php +++ b/apps/files_external/l10n/ru.php @@ -5,6 +5,7 @@ $TRANSLATIONS = array( "Grant access" => "Предоставление доступа", "Please provide a valid Dropbox app key and secret." => "Пожалуйста, предоставьте действующий ключ Dropbox и пароль.", "Error configuring Google Drive storage" => "Ошибка при настройке хранилища Google Drive", +"Saved" => "Сохранено", "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Внимание: \"smbclient\" не установлен. Подключение по CIFS/SMB невозможно. Пожалуйста, обратитесь к системному администратору, чтобы установить его.", "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." => "Внимание: Поддержка FTP не включена в PHP. Подключение по FTP невозможно. Пожалуйста, обратитесь к системному администратору, чтобы включить.", "Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Внимание: Поддержка Curl в PHP не включена или не установлена. Подключение ownCloud / WebDAV или GoogleDrive невозможно. Попросите вашего системного администратора установить его.", @@ -21,6 +22,7 @@ $TRANSLATIONS = array( "Users" => "Пользователи", "Delete" => "Удалить", "Enable User External Storage" => "Включить пользовательские внешние носители", +"Allow users to mount the following external storage" => "Разрешить пользователям монтировать следующую внешнюю систему хранения данных", "SSL root certificates" => "Корневые сертификаты SSL", "Import Root Certificate" => "Импортировать корневые сертификаты" ); diff --git a/core/l10n/es.php b/core/l10n/es.php index 7f4d46aa1f1..52f1a15089a 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -1,6 +1,6 @@ "La fecha de caducidad está en el pasado.", +"Expiration date is in the past." => "Ha pasado la fecha de caducidad", "Couldn't send mail to following users: %s " => "No se pudo enviar el mensaje a los siguientes usuarios: %s", "Turned on maintenance mode" => "Modo mantenimiento activado", "Turned off maintenance mode" => "Modo mantenimiento desactivado", @@ -105,7 +105,7 @@ $TRANSLATIONS = array( "Edit tags" => "Editar etiquetas", "Error loading dialog template: {error}" => "Error cargando plantilla de diálogo: {error}", "No tags selected for deletion." => "No hay etiquetas seleccionadas para borrar.", -"Please reload the page." => "Vuelva a cargar la página.", +"Please reload the page." => "Recargue/Actualice la página", "The update was unsuccessful. Please report this issue to the ownCloud community." => "La actualización ha fracasado. Por favor, informe de este problema a la Comunidad de ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "La actualización se ha realizado con éxito. Redireccionando a ownCloud ahora.", "%s password reset" => "%s restablecer contraseña", @@ -179,6 +179,6 @@ $TRANSLATIONS = array( "Thank you for your patience." => "Gracias por su paciencia.", "Updating ownCloud to version %s, this may take a while." => "Actualizando ownCloud a la versión %s, esto puede demorar un tiempo.", "This ownCloud instance is currently being updated, which may take a while." => "Esta versión de owncloud se está actualizando, esto puede demorar un tiempo.", -"Please reload this page after a short time to continue using ownCloud." => "Por favor , recargue esta instancia de onwcloud tras un corto periodo de tiempo y continue usándolo." +"Please reload this page after a short time to continue using ownCloud." => "Por favor, recargue la página tras un corto periodo de tiempo para continuar usando ownCloud" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ru.php b/core/l10n/ru.php index 8d84e7d31bc..e2fdc36be0b 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -1,5 +1,6 @@ "Дата истечения срока действия в прошлом.", "Couldn't send mail to following users: %s " => "Невозможно отправить письмо следующим пользователям: %s", "Turned on maintenance mode" => "Режим отладки включён", "Turned off maintenance mode" => "Режим отладки отключён", @@ -56,6 +57,11 @@ $TRANSLATIONS = array( "(all selected)" => "(выбраны все)", "({count} selected)" => "({count} выбрано)", "Error loading file exists template" => "Ошибка при загрузке шаблона существующего файла", +"Very weak password" => "Очень слабый пароль", +"Weak password" => "Слабый пароль", +"So-so password" => "Так себе пароль", +"Good password" => "Хороший пароль", +"Strong password" => "Устойчивый к взлому пароль", "Shared" => "Общие", "Share" => "Открыть доступ", "Error" => "Ошибка", @@ -103,6 +109,7 @@ $TRANSLATIONS = array( "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 сброс пароля", +"A problem has occurred whilst sending the email, please contact your administrator." => "Произошла ошибка при отправке сообщения электронной почты, пожалуйста, свяжитесь с Вашим администратором.", "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 или имя пользователя указаны верно?", @@ -115,6 +122,8 @@ $TRANSLATIONS = array( "To login page" => "На страницу авторизации", "New password" => "Новый пароль", "Reset password" => "Сбросить пароль", +"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Mac OS X не поддерживается и %s не будет работать правильно на этой платформе. Используйте ее на свой страх и риск!", +"For the best results, please consider using a GNU/Linux server instead." => "Для достижения наилучших результатов, пожалуйста, рассмотрите возможность использовать взамен GNU/Linux сервер.", "Personal" => "Личное", "Users" => "Пользователи", "Apps" => "Приложения", @@ -140,6 +149,7 @@ $TRANSLATIONS = array( "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" => "Создать учётную запись администратора", +"Storage & database" => "Система хранения данных & база данных", "Data folder" => "Директория с данными", "Configure the database" => "Настройка базы данных", "will be used" => "будет использовано", @@ -162,6 +172,7 @@ $TRANSLATIONS = array( "remember" => "запомнить", "Log in" => "Войти", "Alternative Logins" => "Альтернативные имена пользователя", +"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." => "Обратитесь к вашему системному администратору если это сообщение не исчезает или появляется неожиданно.", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index 03544cd3c0f..affa1b063d0 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -111,7 +111,7 @@ $TRANSLATIONS = array( "%s password reset" => "%s parola sıfırlama", "A problem has occurred whilst sending the email, please contact your administrator." => "E-posta gönderilirken bir hata oluştu. Lütfen yönetinizle iletişime geçin.", "Use the following link to reset your password: {link}" => "Parolanızı sıfırlamak için bu bağlantıyı kullanın: {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 ." => "Parolanızı değiştirme bağlantısı e-posta adresinize gönderildi.
      Eğer makül bir süre içerisinde mesajı almadıysanız spam/junk dizinini kontrol ediniz.
      Eğer orada da bulamazsanız sistem yöneticinize sorunuz.", +"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 ." => "Parolanızı değiştirme bağlantısı e-posta adresinize gönderildi.
      Eğer makül bir süre içerisinde mesajı almadıysanız spam/junk/gereksiz dizinini kontrol ediniz.
      Eğer yine bulamazsanız sistem yöneticinize sorunuz.", "Request failed!
      Did you make sure your email/username was right?" => "İstek başarısız!
      E-posta ve/veya kullanıcı adınızın doğru olduğundan emin misiniz?", "You will receive a link to reset your password via Email." => "Parolanızı sıfırlamak için bir bağlantıyı e-posta olarak alacaksınız.", "Username" => "Kullanıcı Adı", diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index b092cba79c6..3a2d8b6029b 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" +"PO-Revision-Date: 2014-03-27 21:10+0000\n" +"Last-Translator: m23 \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" @@ -436,18 +436,18 @@ msgstr "Cron" #: templates/admin.php:167 #, php-format msgid "Last cron was executed at %s." -msgstr "" +msgstr "Poslední cron byl spuštěn v %s." #: templates/admin.php:170 #, php-format msgid "" "Last cron was executed at %s. This is more than an hour ago, something seems" " wrong." -msgstr "" +msgstr "Poslední cron byl spuštěn v %s. To se stalo před více než hodinu. Vypadá to, že není něco v pořádku." #: templates/admin.php:174 msgid "Cron was not executed yet!" -msgstr "" +msgstr "Cron ještě nebyl spuštěn!" #: templates/admin.php:184 msgid "Execute one task with each page loaded" diff --git a/l10n/es/core.po b/l10n/es/core.po index 10724eb1434..1d3856000d6 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-23 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 18:40+0000\n" -"Last-Translator: Art O. Pal \n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" +"PO-Revision-Date: 2014-03-28 05:55+0000\n" +"Last-Translator: victormce \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" @@ -33,7 +33,7 @@ msgstr "" #: ajax/share.php:88 msgid "Expiration date is in the past." -msgstr "La fecha de caducidad está en el pasado." +msgstr "Ha pasado la fecha de caducidad" #: ajax/share.php:120 ajax/share.php:162 #, php-format @@ -467,7 +467,7 @@ msgstr "No hay etiquetas seleccionadas para borrar." #: js/update.js:8 msgid "Please reload the page." -msgstr "Vuelva a cargar la página." +msgstr "Recargue/Actualice la página" #: js/update.js:17 msgid "" @@ -812,4 +812,4 @@ msgstr "Esta versión de owncloud se está actualizando, esto puede demorar un t #: templates/update.user.php:4 msgid "Please reload this page after a short time to continue using ownCloud." -msgstr "Por favor , recargue esta instancia de onwcloud tras un corto periodo de tiempo y continue usándolo." +msgstr "Por favor, recargue la página tras un corto periodo de tiempo para continuar usando ownCloud" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 2de5517c11f..aed155f7491 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: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" +"PO-Revision-Date: 2014-03-27 19:31+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" @@ -431,18 +431,18 @@ msgstr "Cron" #: templates/admin.php:167 #, php-format msgid "Last cron was executed at %s." -msgstr "" +msgstr "Último cron foi executado em %s." #: templates/admin.php:170 #, php-format msgid "" "Last cron was executed at %s. This is more than an hour ago, something seems" " wrong." -msgstr "" +msgstr "Última cron foi executado em %s. Isso é, mais do que uma hora atrás, algo parece errado." #: templates/admin.php:174 msgid "Cron was not executed yet!" -msgstr "" +msgstr "Cron não foi executado ainda!" #: templates/admin.php:184 msgid "Execute one task with each page loaded" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index 1c955e49776..fec52335def 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -13,6 +13,7 @@ # stushev, 2013 # eurekafag , 2013 # sk.avenger , 2013 +# Swab , 2014 # Victor Bravo <>, 2013 # vsapronov , 2013 # not_your_conscience , 2013 @@ -23,9 +24,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" +"PO-Revision-Date: 2014-03-27 14:31+0000\n" +"Last-Translator: Swab \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,7 +36,7 @@ msgstr "" #: ajax/share.php:88 msgid "Expiration date is in the past." -msgstr "" +msgstr "Дата истечения срока действия в прошлом." #: ajax/share.php:120 ajax/share.php:162 #, php-format @@ -281,23 +282,23 @@ msgstr "Ошибка при загрузке шаблона существующ #: js/setup.js:84 msgid "Very weak password" -msgstr "" +msgstr "Очень слабый пароль" #: js/setup.js:85 msgid "Weak password" -msgstr "" +msgstr "Слабый пароль" #: js/setup.js:86 msgid "So-so password" -msgstr "" +msgstr "Так себе пароль" #: js/setup.js:87 msgid "Good password" -msgstr "" +msgstr "Хороший пароль" #: js/setup.js:88 msgid "Strong password" -msgstr "" +msgstr "Устойчивый к взлому пароль" #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" @@ -496,7 +497,7 @@ msgstr "%s сброс пароля" msgid "" "A problem has occurred whilst sending the email, please contact your " "administrator." -msgstr "" +msgstr "Произошла ошибка при отправке сообщения электронной почты, пожалуйста, свяжитесь с Вашим администратором." #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -559,12 +560,12 @@ msgstr "Сбросить пароль" msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " -msgstr "" +msgstr "Mac OS X не поддерживается и %s не будет работать правильно на этой платформе. Используйте ее на свой страх и риск!" #: setup/controller.php:142 msgid "" "For the best results, please consider using a GNU/Linux server instead." -msgstr "" +msgstr "Для достижения наилучших результатов, пожалуйста, рассмотрите возможность использовать взамен GNU/Linux сервер." #: strings.php:5 msgid "Personal" @@ -686,7 +687,7 @@ msgstr "Создать учётную запись администра #: templates/installation.php:70 msgid "Storage & database" -msgstr "" +msgstr "Система хранения данных & база данных" #: templates/installation.php:77 msgid "Data folder" @@ -787,7 +788,7 @@ 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." diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 8e80384b7c8..4b5c985dfc9 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -8,6 +8,7 @@ # jekader , 2013 # mogarych , 2014 # eurekafag , 2013 +# Swab , 2014 # Victor Bravo <>, 2013 # vsapronov , 2013 # not_your_conscience , 2013 @@ -18,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" +"PO-Revision-Date: 2014-03-27 14:22+0000\n" +"Last-Translator: Swab \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -45,7 +46,7 @@ msgstr "Имя файла не может быть пустым." #: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." -msgstr "" +msgstr "\"%s\" это не правильное имя файла." #: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" @@ -56,7 +57,7 @@ msgstr "Неправильное имя: символы '\\', '/', '<', '>', ':' #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." -msgstr "" +msgstr "Целевой каталог был перемещен или удален." #: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format @@ -160,12 +161,12 @@ msgstr "Невозможно загрузить {filename}, так как это #: js/file-upload.js:258 msgid "Total file size {size1} exceeds upload limit {size2}" -msgstr "" +msgstr "Полный размер файла {size1} превышает лимит по загрузке {size2}" #: js/file-upload.js:268 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" -msgstr "" +msgstr "Не достаточно свободного места, Вы загружаете {size1} но осталось только {size2}" #: js/file-upload.js:340 msgid "Upload cancelled." @@ -263,7 +264,7 @@ msgstr[2] "Закачка %n файлов" #: js/files.js:96 msgid "\"{name}\" is an invalid file name." -msgstr "" +msgstr "\"{name}\" это не правильное имя файла." #: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" diff --git a/l10n/ru/files_encryption.po b/l10n/ru/files_encryption.po index 07f348b79de..d0f028c8df8 100644 --- a/l10n/ru/files_encryption.po +++ b/l10n/ru/files_encryption.po @@ -8,15 +8,16 @@ # lord93 , 2013 # jekader , 2013 # eurekafag , 2013 +# Swab , 2014 # Victor Bravo <>, 2013 # vsapronov , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" +"PO-Revision-Date: 2014-03-27 14:31+0000\n" +"Last-Translator: Swab \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -108,7 +109,7 @@ msgstr "Начато начальное шифрование... Это може #: js/detect-migration.js:25 msgid "Initial encryption running... Please try again later." -msgstr "" +msgstr "Работает первоначальное шифрование... Пожалуйста, повторите попытку позже." #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/ru/files_external.po b/l10n/ru/files_external.po index 6af3711cc64..74a21556d84 100644 --- a/l10n/ru/files_external.po +++ b/l10n/ru/files_external.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Swab , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" +"PO-Revision-Date: 2014-03-27 14:41+0000\n" +"Last-Translator: Swab \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -39,22 +40,22 @@ msgstr "Ошибка при настройке хранилища Google Drive" #: js/settings.js:313 js/settings.js:320 msgid "Saved" -msgstr "" +msgstr "Сохранено" -#: lib/config.php:512 +#: lib/config.php:654 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Внимание: \"smbclient\" не установлен. Подключение по CIFS/SMB невозможно. Пожалуйста, обратитесь к системному администратору, чтобы установить его." -#: lib/config.php:516 +#: lib/config.php:658 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 "Внимание: Поддержка FTP не включена в PHP. Подключение по FTP невозможно. Пожалуйста, обратитесь к системному администратору, чтобы включить." -#: lib/config.php:519 +#: lib/config.php:661 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -116,7 +117,7 @@ msgstr "Включить пользовательские внешние нос #: templates/settings.php:130 msgid "Allow users to mount the following external storage" -msgstr "" +msgstr "Разрешить пользователям монтировать следующую внешнюю систему хранения данных" #: templates/settings.php:147 msgid "SSL root certificates" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 5ee5f5e35c3..5654edd1a82 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -22,8 +22,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" +"PO-Revision-Date: 2014-03-27 14:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -39,7 +39,7 @@ msgstr "" #: admin/controller.php:73 msgid "Saved" -msgstr "" +msgstr "Сохранено" #: admin/controller.php:90 msgid "test email settings" @@ -232,23 +232,23 @@ msgstr "Выберите картинку профиля" #: js/personal.js:277 msgid "Very weak password" -msgstr "" +msgstr "Очень слабый пароль" #: js/personal.js:278 msgid "Weak password" -msgstr "" +msgstr "Слабый пароль" #: js/personal.js:279 msgid "So-so password" -msgstr "" +msgstr "Так себе пароль" #: js/personal.js:280 msgid "Good password" -msgstr "" +msgstr "Хороший пароль" #: js/personal.js:281 msgid "Strong password" -msgstr "" +msgstr "Устойчивый к взлому пароль" #: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 8f14123eedf..d93a971a803 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: 2014-03-27 01:55-0400\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\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.pot b/l10n/templates/files.pot index f2639f93030..82e117c5287 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: 2014-03-27 01:55-0400\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\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 1ef7c2cab99..4d1a870edd3 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: 2014-03-27 01:55-0400\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\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 965c8512090..0c968b9069c 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: 2014-03-27 01:55-0400\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -41,20 +41,20 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:646 +#: lib/config.php:654 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:650 +#: lib/config.php:658 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:653 +#: lib/config.php:661 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 2f8678ef6e2..dd36e90e600 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: 2014-03-27 01:55-0400\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\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 d4dcc61a855..19c5f5f2738 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: 2014-03-27 01:55-0400\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\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 5bae82bfe69..76eba3454da 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: 2014-03-27 01:55-0400\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\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 90e076435a3..f599cc3ba6c 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: 2014-03-27 01:55-0400\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -66,23 +66,23 @@ msgstr "" msgid "web services under your control" msgstr "" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index 2925d3cdfdd..4a9473b3ffc 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: 2014-03-27 01:55-0400\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -66,23 +66,23 @@ msgstr "" msgid "web services under your control" msgstr "" -#: files.php:231 +#: files.php:232 msgid "ZIP download is turned off." msgstr "" -#: files.php:232 +#: files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:233 files.php:261 +#: files.php:234 files.php:262 msgid "Back to Files" msgstr "" -#: files.php:258 +#: files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:259 +#: files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 2c810d328e0..e91e82eccc2 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: 2014-03-27 01:55-0400\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\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 73d07c3e4d2..f8fe27cf0d7 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: 2014-03-27 01:55-0400\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\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 a01f6858bc6..e30d5c43f55 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: 2014-03-27 01:55-0400\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 177ac786519..09a1e3d278e 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-23 13:20+0000\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" +"PO-Revision-Date: 2014-03-27 19:31+0000\n" "Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -490,7 +490,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 "Parolanızı değiştirme bağlantısı e-posta adresinize gönderildi.
      Eğer makül bir süre içerisinde mesajı almadıysanız spam/junk dizinini kontrol ediniz.
      Eğer orada da bulamazsanız sistem yöneticinize sorunuz." +msgstr "Parolanızı değiştirme bağlantısı e-posta adresinize gönderildi.
      Eğer makül bir süre içerisinde mesajı almadıysanız spam/junk/gereksiz dizinini kontrol ediniz.
      Eğer yine bulamazsanız sistem yöneticinize sorunuz." #: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
      Did you make sure your email/username was right?" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 9cf4c3306ca..cb9da3017de 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: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" +"PO-Revision-Date: 2014-03-27 19:31+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" @@ -433,18 +433,18 @@ msgstr "Cron" #: templates/admin.php:167 #, php-format msgid "Last cron was executed at %s." -msgstr "" +msgstr "Son cron %s zamanında çalıştırıldı." #: templates/admin.php:170 #, php-format msgid "" "Last cron was executed at %s. This is more than an hour ago, something seems" " wrong." -msgstr "" +msgstr "Son cron %s zamanında çalıştırıldı. Bu bir saatten daha uzun bir süre, bir şeyler yanlış gibi görünüyor." #: templates/admin.php:174 msgid "Cron was not executed yet!" -msgstr "" +msgstr "Cron henüz çalıştırılmadı!" #: templates/admin.php:184 msgid "Execute one task with each page loaded" diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index 09bfe89d8af..960938b1c68 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -93,6 +93,9 @@ $TRANSLATIONS = array( "Internet connection not working" => "Připojení k internetu nefunguje", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Server nemá funkční připojení k internetu. Některé moduly jako např. externí úložiště, oznámení o dostupných aktualizacích nebo instalace aplikací třetích stran nebudou fungovat. Přístup k souborům z jiných míst a odesílání oznamovacích e-mailů také nemusí fungovat. Pokud si přejete využívat všech vlastností ownCloud, doporučujeme povolit připojení k internetu tomuto serveru.", "Cron" => "Cron", +"Last cron was executed at %s." => "Poslední cron byl spuštěn v %s.", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Poslední cron byl spuštěn v %s. To se stalo před více než hodinu. Vypadá to, že není něco v pořádku.", +"Cron was not executed yet!" => "Cron ještě nebyl spuštěn!", "Execute one task with each page loaded" => "Spustit jednu úlohu s každým načtením stránky", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php je registrován u služby webcron, aby volal cron.php jednou za 15 minut přes http.", "Use systems cron service to call the cron.php file every 15 minutes." => "Použít systémovou službu cron pro volání cron.php každých 15 minut.", diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php index 4a7554499d5..dad6773d6af 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -93,6 +93,9 @@ $TRANSLATIONS = array( "Internet connection not working" => "Sem conexão com a internet", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Este servidor não tem conexão com a internet. Isso significa que algumas das características como a montagem de armazenamento externo, notificações sobre atualizações ou instalação de aplicativos de 3ºs terceiros não funcionam. Acessar arquivos remotamente e envio de e-mails de notificação também não podem funcionar. Sugerimos permitir conexão com a internet para esse servidor, se você deseja ter todas as funcionalidades.", "Cron" => "Cron", +"Last cron was executed at %s." => "Último cron foi executado em %s.", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Última cron foi executado em %s. Isso é, mais do que uma hora atrás, algo parece errado.", +"Cron was not executed yet!" => "Cron não foi executado ainda!", "Execute one task with each page loaded" => "Execute uma tarefa com cada página carregada", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php está registrado no serviço webcron para chamar cron.php a cada 15 minutos sobre http.", "Use systems cron service to call the cron.php file every 15 minutes." => "Use o sistema de serviço cron para chamar o arquivo cron.php a cada 15 minutos.", diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php index 49f3aeeb65d..9cbdeee2c23 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.php @@ -1,5 +1,6 @@ "Сохранено", "Email sent" => "Письмо отправлено", "Encryption" => "Шифрование", "Unable to load list from App Store" => "Не удалось загрузить список из App Store", @@ -37,6 +38,11 @@ $TRANSLATIONS = array( "Update" => "Обновить", "Updated" => "Обновлено", "Select a profile picture" => "Выберите картинку профиля", +"Very weak password" => "Очень слабый пароль", +"Weak password" => "Слабый пароль", +"So-so password" => "Так себе пароль", +"Good password" => "Хороший пароль", +"Strong password" => "Устойчивый к взлому пароль", "Decrypting files... Please wait, this can take some time." => "Расшифровка файлов... Пожалуйста, подождите, это может занять некоторое время.", "deleted" => "удален", "undo" => "отмена", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index e02c6701a98..68b464a5cc2 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -93,6 +93,9 @@ $TRANSLATIONS = array( "Internet connection not working" => "İnternet bağlantısı çalışmıyor", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Bu sunucunun çalışan bir internet bağlantısı yok. Bu, harici depolama alanı bağlama, güncelleştirme bildirimleri veya 3. parti uygulama kurma gibi bazı özellikler çalışmayacak demektir. Uzak dosyalara erişim ve e-posta ile bildirim gönderme de çalışmayacaktır. Eğer bu özelliklerin tamamını kullanmak istiyorsanız, sunucu için internet bağlantısını etkinleştirmenizi öneriyoruz.", "Cron" => "Cron", +"Last cron was executed at %s." => "Son cron %s zamanında çalıştırıldı.", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Son cron %s zamanında çalıştırıldı. Bu bir saatten daha uzun bir süre, bir şeyler yanlış gibi görünüyor.", +"Cron was not executed yet!" => "Cron henüz çalıştırılmadı!", "Execute one task with each page loaded" => "Yüklenen her sayfa ile bir görev çalıştır", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php, http üzerinden her 15 dakikada bir çağrılması için webcron hizmetine kaydedilir.", "Use systems cron service to call the cron.php file every 15 minutes." => "Cron.php dosyasını her 15 dakikada bir çağırmak için sistem cron hizmetini kullan.", -- GitLab From f3d6b2f3e918809a189d03a59297c7134e32ab6a Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Tue, 25 Mar 2014 11:00:01 +0100 Subject: [PATCH 135/296] Do not retrieve storage stats for trash bin --- apps/files_trashbin/js/trash.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/apps/files_trashbin/js/trash.js b/apps/files_trashbin/js/trash.js index 6aade210505..efe1e89f0bf 100644 --- a/apps/files_trashbin/js/trash.js +++ b/apps/files_trashbin/js/trash.js @@ -25,6 +25,11 @@ $(document).ready(function() { enableActions(); } + Files.updateStorageStatistics = function() { + // no op because the trashbin doesn't have + // storage info like free space / used space + }; + if (typeof FileActions !== 'undefined') { FileActions.register('all', 'Restore', OC.PERMISSION_READ, OC.imagePath('core', 'actions/history'), function(filename) { var tr = FileList.findFileEl(filename); -- GitLab From b9100bc2de3cd94b386ae4c1dff5e0f3c2086f9b Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Fri, 28 Mar 2014 12:02:49 +0100 Subject: [PATCH 136/296] don't write file if opening a stream to encrypt the data fails --- apps/files_encryption/lib/proxy.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/files_encryption/lib/proxy.php b/apps/files_encryption/lib/proxy.php index bae1fded53d..6549273c8f1 100644 --- a/apps/files_encryption/lib/proxy.php +++ b/apps/files_encryption/lib/proxy.php @@ -128,6 +128,8 @@ class Proxy extends \OC_FileProxy { // re-enable proxy - our work is done \OC_FileProxy::$enabled = $proxyStatus; + } else { + return false; } } } -- GitLab From 2d592ddc8f26e72211d1c01cec8979cd371b8215 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 28 Mar 2014 12:07:44 +0100 Subject: [PATCH 137/296] Fix CURLOPT_FOLLOWLOCATION bug with open_basedir or safe_mode restriction enabled. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Squashed commit of the following: commit eaf4f43f687db59137a0b00bc0e12ed4eb0d0943 Merge: 1e9c5be 1e7d7bd Author: Thomas Müller Date: Fri Mar 28 11:49:04 2014 +0100 Merge branch 'master' of https://github.com/kev300/core into kev300-master commit 1e7d7bdd8b5c7f301501cb822cdf2ef0ad3f2872 Author: kev300 Date: Tue Dec 17 14:11:42 2013 +0100 Update util.php commit 3f0723f054a27a506be7f26932ccb54fff6f2be9 Author: kev300 Date: Tue Dec 17 14:09:15 2013 +0100 Update util.php commit 512176abdcfbe5b2b060b91033abc9608912d1f8 Author: kev300 Date: Tue Dec 17 14:02:04 2013 +0100 Update util.php commit 6cbefd080188d287024e0b047b88dd4525d6c2c1 Author: kev300 Date: Mon Dec 16 16:44:46 2013 +0100 Update util.php Fix CURLOPT_FOLLOWLOCATION bug with open_basedir or safe_mode restriction enabled. --- lib/private/util.php | 49 ++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 45 insertions(+), 4 deletions(-) diff --git a/lib/private/util.php b/lib/private/util.php index cd152234cc9..c48a5505d41 100755 --- a/lib/private/util.php +++ b/lib/private/util.php @@ -1072,13 +1072,13 @@ class OC_Util { public static function getUrlContent($url) { if (function_exists('curl_init')) { $curl = curl_init(); + $max_redirects = 10; curl_setopt($curl, CURLOPT_HEADER, 0); curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 10); curl_setopt($curl, CURLOPT_URL, $url); - curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true); - curl_setopt($curl, CURLOPT_MAXREDIRS, 10); + curl_setopt($curl, CURLOPT_USERAGENT, "ownCloud Server Crawler"); if(OC_Config::getValue('proxy', '') != '') { @@ -1087,9 +1087,50 @@ class OC_Util { if(OC_Config::getValue('proxyuserpwd', '') != '') { curl_setopt($curl, CURLOPT_PROXYUSERPWD, OC_Config::getValue('proxyuserpwd')); } - $data = curl_exec($curl); + + if (ini_get('open_basedir') === '' && ini_get('safe_mode' === 'Off')) { + curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true); + curl_setopt($curl, CURLOPT_MAXREDIRS, $max_redirects); + $data = curl_exec($curl); + } else { + curl_setopt($curl, CURLOPT_FOLLOWLOCATION, false); + $mr = $max_redirects; + if ($mr > 0) { + $newurl = curl_getinfo($curl, CURLINFO_EFFECTIVE_URL); + + $rcurl = curl_copy_handle($curl); + curl_setopt($rcurl, CURLOPT_HEADER, true); + curl_setopt($rcurl, CURLOPT_NOBODY, true); + curl_setopt($rcurl, CURLOPT_FORBID_REUSE, false); + curl_setopt($rcurl, CURLOPT_RETURNTRANSFER, true); + do { + curl_setopt($rcurl, CURLOPT_URL, $newurl); + $header = curl_exec($rcurl); + if (curl_errno($rcurl)) { + $code = 0; + } else { + $code = curl_getinfo($rcurl, CURLINFO_HTTP_CODE); + if ($code == 301 || $code == 302) { + preg_match('/Location:(.*?)\n/', $header, $matches); + $newurl = trim(array_pop($matches)); + } else { + $code = 0; + } + } + } while ($code && --$mr); + curl_close($rcurl); + if ($mr > 0) { + curl_setopt($curl, CURLOPT_URL, $newurl); + } + } + + if($mr == 0 && $max_redirects > 0) { + $data = false; + } else { + $data = curl_exec($curl); + } + } curl_close($curl); - } else { $contextArray = null; -- GitLab From f1b085df0189dee6c92a4a6145d22206d7cba778 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 28 Mar 2014 12:57:27 +0100 Subject: [PATCH 138/296] adding @method annotation to declare methods which can be called on the wrapped statement object --- lib/private/db/statementwrapper.php | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/lib/private/db/statementwrapper.php b/lib/private/db/statementwrapper.php index eaf215c7231..492209b883b 100644 --- a/lib/private/db/statementwrapper.php +++ b/lib/private/db/statementwrapper.php @@ -8,6 +8,11 @@ /** * small wrapper around \Doctrine\DBAL\Driver\Statement to make it behave, more like an MDB2 Statement + * + * @method boolean bindValue(mixed $param, mixed $value, integer $type = null); + * @method string errorCode(); + * @method array errorInfo(); + * @method integer rowCount(); */ class OC_DB_StatementWrapper { /** @@ -161,6 +166,8 @@ class OC_DB_StatementWrapper { /** * provide an alias for fetch + * + * @return mixed */ public function fetchRow() { return $this->statement->fetch(); @@ -168,12 +175,13 @@ class OC_DB_StatementWrapper { /** * Provide a simple fetchOne. + * * fetch single column from the next row - * @param int $colnum the column number to fetch + * @param int $column the column number to fetch * @return string */ - public function fetchOne($colnum = 0) { - return $this->statement->fetchColumn($colnum); + public function fetchOne($column = 0) { + return $this->statement->fetchColumn($column); } /** -- GitLab From 0d9d70b51c8113713c5da05548c584ffc954162d Mon Sep 17 00:00:00 2001 From: Alexander Bergolth Date: Fri, 28 Mar 2014 14:02:19 +0100 Subject: [PATCH 139/296] change default ldap paging size to 500 --- 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 cc68a41d739..713fba8365b 100644 --- a/apps/user_ldap/lib/configuration.php +++ b/apps/user_ldap/lib/configuration.php @@ -345,7 +345,7 @@ class Configuration { 'has_memberof_filter_support' => 0, 'last_jpegPhoto_lookup' => 0, 'ldap_nested_groups' => 0, - 'ldap_paging_size' => 0, + 'ldap_paging_size' => 500, ); } -- GitLab From b1589392839a1481f351a43187b12de2de1a4076 Mon Sep 17 00:00:00 2001 From: Alexander Bergolth Date: Fri, 28 Mar 2014 14:20:01 +0100 Subject: [PATCH 140/296] adapt description of paging size configuration --- apps/user_ldap/templates/settings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/user_ldap/templates/settings.php b/apps/user_ldap/templates/settings.php index a61d00bc159..95a888a31d4 100644 --- a/apps/user_ldap/templates/settings.php +++ b/apps/user_ldap/templates/settings.php @@ -37,7 +37,7 @@

      -

      +

      t('Special Attributes'));?>

      -- GitLab From e4069e155386fbb8391b76ba7684512dc57897aa Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Fri, 28 Mar 2014 15:00:13 +0100 Subject: [PATCH 141/296] Emit event after setting a new expiration for a share all credits to @frisco82 https://github.com/owncloud/core/pull/5335 --- lib/private/share/share.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lib/private/share/share.php b/lib/private/share/share.php index a385328edc1..8238797600e 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -747,7 +747,8 @@ class Share extends \OC\Share\Constants { * @return \OCP\Share_Backend */ public static function setExpirationDate($itemType, $itemSource, $date) { - $items = self::getItems($itemType, $itemSource, null, null, \OC_User::getUser(), self::FORMAT_NONE, null, -1, false); + $user = \OC_User::getUser(); + $items = self::getItems($itemType, $itemSource, null, null, $user, self::FORMAT_NONE, null, -1, false); if (!empty($items)) { if ($date == '') { $date = null; @@ -759,6 +760,12 @@ class Share extends \OC\Share\Constants { foreach ($items as $item) { $query->bindValue(2, (int) $item['id']); $query->execute(); + \OC_Hook::emit('OCP\Share', 'post_set_expiration_date', array( + 'itemType' => $itemType, + 'itemSource' => $itemSource, + 'date' => $date, + 'uidOwner' => $user + )); } return true; } -- GitLab From f331d5f9d4a4609370bf6a5593e0720ba7c77c04 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 27 Mar 2014 16:43:34 +0100 Subject: [PATCH 142/296] Give storages the option to implement the getById behaviour for View->getPath --- lib/private/files/cache/cache.php | 16 ++++++++++++++++ lib/private/files/view.php | 19 +++++++++++++------ 2 files changed, 29 insertions(+), 6 deletions(-) diff --git a/lib/private/files/cache/cache.php b/lib/private/files/cache/cache.php index abc11e76470..42fee4f336d 100644 --- a/lib/private/files/cache/cache.php +++ b/lib/private/files/cache/cache.php @@ -593,6 +593,22 @@ class Cache { } } + /** + * get the storage id of the storage for a file and the internal path of the file + * + * @param int $id + * @return string | null + */ + public function getPathById($id) { + $sql = 'SELECT `path` FROM `*PREFIX*filecache` WHERE `fileid` = ? AND `storage` = ?'; + $result = \OC_DB::executeAudited($sql, array($id, $this->getNumericStorageId())); + if ($row = $result->fetchRow()) { + return $row['path']; + } else { + return null; + } + } + /** * get the storage id of the storage for a file and the internal path of the file * diff --git a/lib/private/files/view.php b/lib/private/files/view.php index f06c2fcd66c..90b0da09c37 100644 --- a/lib/private/files/view.php +++ b/lib/private/files/view.php @@ -1129,15 +1129,22 @@ class View { * @return string */ public function getPath($id) { - list($storage, $internalPath) = Cache\Cache::getById($id); - $mounts = Filesystem::getMountByStorageId($storage); + $manager = Filesystem::getMountManager(); + $mounts = $manager->findIn($this->fakeRoot); + $mounts[] = $manager->find($this->fakeRoot); + // reverse the array so we start with the storage this view is in + // which is the most likely to contain the file we're looking for + $mounts = array_reverse($mounts); foreach ($mounts as $mount) { /** - * @var \OC\Files\Mount $mount + * @var \OC\Files\Mount\Mount $mount */ - $fullPath = $mount->getMountPoint() . $internalPath; - if (!is_null($path = $this->getRelativePath($fullPath))) { - return $path; + $cache = $mount->getStorage()->getCache(); + if ($internalPath = $cache->getPathById($id)) { + $fullPath = $mount->getMountPoint() . $internalPath; + if (!is_null($path = $this->getRelativePath($fullPath))) { + return $path; + } } } return null; -- GitLab From fe78d963d9a7cbae6aabd8e1a275c6de783440ba Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 28 Mar 2014 15:26:15 +0100 Subject: [PATCH 143/296] Implement getPath for shared files --- apps/files_sharing/lib/cache.php | 51 +++++++++++++++++++++++++----- apps/files_sharing/tests/cache.php | 39 +++++++++++++++++++++++ 2 files changed, 82 insertions(+), 8 deletions(-) diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php index 01db29d72e2..49b1d208d48 100644 --- a/apps/files_sharing/lib/cache.php +++ b/apps/files_sharing/lib/cache.php @@ -20,6 +20,7 @@ */ namespace OC\Files\Cache; + use OCP\Share_Backend_Collection; /** @@ -50,7 +51,7 @@ class Shared_Cache extends Cache { \OC\Files\Filesystem::initMountPoints($source['fileOwner']); $mount = \OC\Files\Filesystem::getMountByNumericId($source['storage']); if (is_array($mount)) { - $fullPath = $mount[key($mount)]->getMountPoint().$source['path']; + $fullPath = $mount[key($mount)]->getMountPoint() . $source['path']; list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($fullPath); if ($storage) { $this->files[$target] = $internalPath; @@ -75,7 +76,7 @@ class Shared_Cache extends Cache { /** * get the stored metadata of a file or folder * - * @param string/int $file + * @param string /int $file * @return array */ public function get($file) { @@ -95,8 +96,8 @@ class Shared_Cache extends Cache { } else { $query = \OC_DB::prepare( 'SELECT `fileid`, `storage`, `path`, `parent`, `name`, `mimetype`, `mimepart`,' - .' `size`, `mtime`, `encrypted`, `unencrypted_size`' - .' FROM `*PREFIX*filecache` WHERE `fileid` = ?'); + . ' `size`, `mtime`, `encrypted`, `unencrypted_size`' + . ' FROM `*PREFIX*filecache` WHERE `fileid` = ?'); $result = $query->execute(array($file)); $data = $result->fetchRow(); $data['fileid'] = (int)$data['fileid']; @@ -288,8 +289,7 @@ class Shared_Cache extends Cache { foreach ($files as $file) { if ($file['mimetype'] === 'httpd/unix-directory') { $exploreDirs[] = ltrim($dir . '/' . $file['name'], '/'); - } - else if (($mimepart && $file['mimepart'] === $mimepart) || ($mimetype && $file['mimetype'] === $mimetype)) { + } else if (($mimepart && $file['mimepart'] === $mimepart) || ($mimetype && $file['mimetype'] === $mimetype)) { // usersPath not reliable //$file['path'] = $file['usersPath']; $file['path'] = ltrim($dir . '/' . $file['name'], '/'); @@ -344,8 +344,6 @@ class Shared_Cache extends Cache { if ($row['encrypted'] or ($row['unencrypted_size'] > 0 and $row['mimetype'] === 'httpd/unix-directory')) { $row['encrypted_size'] = $row['size']; $row['size'] = $row['unencrypted_size']; - } else { - $row['size'] = $row['size']; } $files[] = $row; } @@ -402,4 +400,41 @@ class Shared_Cache extends Cache { return false; } + public function getPathById($id, $pathEnd = '') { + // direct shares are easy + if ($path = $this->getShareById($id)) { + return $path . $pathEnd; + } else { + // if the item is a direct share we try and get the path of the parent and append the name of the item to it + list($parent, $name) = $this->getParentInfo($id); + if ($parent > 0) { + return $this->getPathById($parent, '/' . $name . $pathEnd); + } else { + return null; + } + } + } + + private function getShareById($id) { + $item = \OCP\Share::getItemSharedWithBySource('file', $id); + if ($item) { + return trim($item['file_target'], '/'); + } + $item = \OCP\Share::getItemSharedWithBySource('folder', $id); + if ($item) { + return trim($item['file_target'], '/'); + } + return null; + } + + private function getParentInfo($id) { + $sql = 'SELECT `parent`, `name` FROM `*PREFIX*filecache` WHERE `fileid` = ?'; + $query = \OC_DB::prepare($sql); + $result = $query->execute(array($id)); + if ($row = $result->fetchRow()) { + return array($row['parent'], $row['name']); + } else { + return array(-1, ''); + } + } } diff --git a/apps/files_sharing/tests/cache.php b/apps/files_sharing/tests/cache.php index a75e1860527..47969833ab5 100644 --- a/apps/files_sharing/tests/cache.php +++ b/apps/files_sharing/tests/cache.php @@ -246,4 +246,43 @@ class Test_Files_Sharing_Cache extends Test_Files_Sharing_Base { } } + public function testGetPathByIdDirectShare() { + self::loginHelper(self::TEST_FILES_SHARING_API_USER1); + \OC\Files\Filesystem::file_put_contents('test.txt', 'foo'); + $info = \OC\Files\Filesystem::getFileInfo('test.txt'); + \OCP\Share::shareItem('file', $info->getId(), \OCP\Share::SHARE_TYPE_USER, self::TEST_FILES_SHARING_API_USER2, \OCP\PERMISSION_ALL); + \OC_Util::tearDownFS(); + + self::loginHelper(self::TEST_FILES_SHARING_API_USER2); + $this->assertTrue(\OC\Files\Filesystem::file_exists('/Shared/test.txt')); + list($sharedStorage) = \OC\Files\Filesystem::resolvePath('/' . self::TEST_FILES_SHARING_API_USER2 . '/files/Shared/test.txt'); + /** + * @var \OC\Files\Storage\Shared $sharedStorage + */ + + $sharedCache = $sharedStorage->getCache(); + $this->assertEquals('test.txt', $sharedCache->getPathById($info->getId())); + } + + public function testGetPathByIdShareSubFolder() { + self::loginHelper(self::TEST_FILES_SHARING_API_USER1); + \OC\Files\Filesystem::mkdir('foo'); + \OC\Files\Filesystem::mkdir('foo/bar'); + \OC\Files\Filesystem::touch('foo/bar/test.txt', 'bar'); + $folderInfo = \OC\Files\Filesystem::getFileInfo('foo'); + $fileInfo = \OC\Files\Filesystem::getFileInfo('foo/bar/test.txt'); + \OCP\Share::shareItem('folder', $folderInfo->getId(), \OCP\Share::SHARE_TYPE_USER, self::TEST_FILES_SHARING_API_USER2, \OCP\PERMISSION_ALL); + \OC_Util::tearDownFS(); + + self::loginHelper(self::TEST_FILES_SHARING_API_USER2); + $this->assertTrue(\OC\Files\Filesystem::file_exists('/Shared/foo')); + list($sharedStorage) = \OC\Files\Filesystem::resolvePath('/' . self::TEST_FILES_SHARING_API_USER2 . '/files/Shared/foo'); + /** + * @var \OC\Files\Storage\Shared $sharedStorage + */ + + $sharedCache = $sharedStorage->getCache(); + $this->assertEquals('foo', $sharedCache->getPathById($folderInfo->getId())); + $this->assertEquals('foo/bar/test.txt', $sharedCache->getPathById($fileInfo->getId())); + } } -- GitLab From c14107550d8c7588bb78e7ffc34c7190e475c23e Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Fri, 28 Mar 2014 18:05:48 +0100 Subject: [PATCH 144/296] Use UrlGenerator in OC\Util::redirectToDefaultPage(). Fix #7936 --- lib/private/util.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/lib/private/util.php b/lib/private/util.php index c48a5505d41..c1adbaf2544 100755 --- a/lib/private/util.php +++ b/lib/private/util.php @@ -701,17 +701,18 @@ class OC_Util { * @return void */ public static function redirectToDefaultPage() { + $urlGenerator = \OC::$server->getURLGenerator(); if(isset($_REQUEST['redirect_url'])) { - $location = OC_Helper::makeURLAbsolute(urldecode($_REQUEST['redirect_url'])); + $location = $urlGenerator->getAbsoluteURL(urldecode($_REQUEST['redirect_url'])); } else if (isset(OC::$REQUESTEDAPP) && !empty(OC::$REQUESTEDAPP)) { - $location = OC_Helper::linkToAbsolute( OC::$REQUESTEDAPP, 'index.php' ); + $location = $urlGenerator->getAbsoluteURL('/index.php/apps/'.OC::$REQUESTEDAPP.'/index.php'); } else { $defaultPage = OC_Appconfig::getValue('core', 'defaultpage'); if ($defaultPage) { - $location = OC_Helper::makeURLAbsolute(OC::$WEBROOT.'/'.$defaultPage); + $location = $urlGenerator->getAbsoluteURL($defaultPage); } else { - $location = OC_Helper::linkToAbsolute( 'files', 'index.php' ); + $location = $urlGenerator->getAbsoluteURL('/index.php/files/index.php'); } } OC_Log::write('core', 'redirectToDefaultPage: '.$location, OC_Log::DEBUG); -- GitLab From 82f98fb3d3822a001a298a924267c337e8d79f43 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Fri, 28 Mar 2014 18:12:21 +0100 Subject: [PATCH 145/296] Fixed user list offset call --- 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 284976d3bad..eef3c237277 100644 --- a/settings/js/users.js +++ b/settings/js/users.js @@ -226,7 +226,7 @@ var UserList = { $('table+.loading').css('visibility', 'visible'); UserList.updating = true; var query = $.param({ offset: UserList.offset, limit: UserList.usersToLoad }); - $.get(OC.generateUrl('/settings/ajax/userlist') + query, function (result) { + $.get(OC.generateUrl('/settings/ajax/userlist') + '?' + query, function (result) { var loadedUsers = 0; var trs = []; if (result.status === 'success') { -- GitLab From 51b727cfcaa0bf3aa486129d42eab05e0f5af363 Mon Sep 17 00:00:00 2001 From: Rodrigo Hjort Date: Fri, 28 Mar 2014 15:08:59 -0300 Subject: [PATCH 146/296] Correction: failure on sharing when user ID was prefixed by zero --- core/js/share.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/js/share.js b/core/js/share.js index 9ee50ff6963..ed11e59d284 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -551,7 +551,7 @@ $(document).ready(function() { var itemType = $('#dropdown').data('item-type'); var itemSource = $('#dropdown').data('item-source'); var shareType = $li.data('share-type'); - var shareWith = $li.data('share-with'); + var shareWith = $li.attr('data-share-with'); OC.Share.unshare(itemType, itemSource, shareType, shareWith, function() { $li.remove(); var index = OC.Share.itemShares[shareType].indexOf(shareWith); @@ -597,7 +597,7 @@ $(document).ready(function() { OC.Share.setPermissions($('#dropdown').data('item-type'), $('#dropdown').data('item-source'), li.data('share-type'), - li.data('share-with'), + li.attr('data-share-with'), permissions); }); @@ -782,7 +782,7 @@ $(document).ready(function() { } var shareType = $li.data('share-type'); - var shareWith = $li.data('share-with'); + var shareWith = $li.attr('data-share-with'); $.post(OC.filePath('core', 'ajax', 'share.php'), {action: action, recipient: shareWith, shareType: shareType, itemSource: itemSource, itemType: itemType}, function(result) { if (result.status !== 'success') { -- GitLab From 915fa3da7481d83a7dbe9d0732628657a7bcd7c0 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sat, 29 Mar 2014 01:55:44 -0400 Subject: [PATCH 147/296] [tx-robot] updated from transifex --- l10n/es/core.po | 42 ++++++++++++++--------------- l10n/es/files_sharing.po | 6 ++--- l10n/es/files_trashbin.po | 10 +++---- l10n/gl/settings.po | 28 +++++++++---------- l10n/templates/core.pot | 40 +++++++++++++-------------- l10n/templates/files.pot | 24 ++++++++--------- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 24 ++++++++--------- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 4 +-- l10n/templates/files_versions.pot | 12 ++++----- l10n/templates/lib.pot | 2 +- l10n/templates/private.pot | 2 +- l10n/templates/settings.pot | 18 ++++++------- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- settings/l10n/gl.php | 3 +++ 17 files changed, 113 insertions(+), 110 deletions(-) diff --git a/l10n/es/core.po b/l10n/es/core.po index 1d3856000d6..758f1024ad2 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-28 01:55-0400\n" -"PO-Revision-Date: 2014-03-28 05:55+0000\n" +"POT-Creation-Date: 2014-03-29 01:55-0400\n" +"PO-Revision-Date: 2014-03-28 06:06+0000\n" "Last-Translator: victormce \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -31,24 +31,24 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "Ha pasado la fecha de caducidad" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "No se pudo enviar el mensaje a los siguientes usuarios: %s" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "Modo mantenimiento activado" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "Modo mantenimiento desactivado" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "Base de datos actualizada" @@ -152,59 +152,59 @@ msgstr "Diciembre" msgid "Settings" msgstr "Ajustes" -#: js/js.js:496 +#: js/js.js:543 msgid "Saving..." msgstr "Guardando..." -#: js/js.js:995 +#: js/js.js:1103 msgid "seconds ago" msgstr "segundos antes" -#: js/js.js:996 +#: js/js.js:1104 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Hace %n minuto" msgstr[1] "Hace %n minutos" -#: js/js.js:997 +#: js/js.js:1105 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Hace %n hora" msgstr[1] "Hace %n horas" -#: js/js.js:998 +#: js/js.js:1106 msgid "today" msgstr "hoy" -#: js/js.js:999 +#: js/js.js:1107 msgid "yesterday" msgstr "ayer" -#: js/js.js:1000 +#: js/js.js:1108 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Hace %n día" msgstr[1] "Hace %n días" -#: js/js.js:1001 +#: js/js.js:1109 msgid "last month" msgstr "el mes pasado" -#: js/js.js:1002 +#: js/js.js:1110 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Hace %n mes" msgstr[1] "Hace %n meses" -#: js/js.js:1003 +#: js/js.js:1111 msgid "months ago" msgstr "meses antes" -#: js/js.js:1004 +#: js/js.js:1112 msgid "last year" msgstr "el año pasado" -#: js/js.js:1005 +#: js/js.js:1113 msgid "years ago" msgstr "años antes" @@ -547,14 +547,14 @@ msgstr "Nueva contraseña" msgid "Reset password" msgstr "Restablecer contraseña" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "Mac OS X no está soportado y %s no funcionará bien en esta plataforma. ¡Úsela a su propio riesgo! " -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "Para óptimos resultados, considere utilizar un servidor GNU/Linux." diff --git a/l10n/es/files_sharing.po b/l10n/es/files_sharing.po index dd65ca15edc..f44f8bcb5b9 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 15:20+0000\n" -"Last-Translator: Art O. Pal \n" +"POT-Creation-Date: 2014-03-29 01:55-0400\n" +"PO-Revision-Date: 2014-03-28 06:16+0000\n" +"Last-Translator: victormce \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" diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index c4e17664608..2586fb2af3d 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-29 01:55-0400\n" +"PO-Revision-Date: 2014-03-28 06:24+0000\n" +"Last-Translator: victormce \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" @@ -33,11 +33,11 @@ msgstr "No se puede restaurar %s" msgid "Deleted files" msgstr "Archivos eliminados" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:16 js/trash.js:108 js/trash.js:157 msgid "Error" msgstr "Error" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "recuperado" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 8cb40f5bbb9..2403bc7cc3e 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-29 01:55-0400\n" +"PO-Revision-Date: 2014-03-28 19: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" @@ -66,7 +66,7 @@ msgid "Unable to load list from App Store" msgstr "Non foi posíbel cargar a lista desde a App Store" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Produciuse un erro de autenticación" @@ -128,32 +128,32 @@ msgstr "Non é posíbel eliminar o usuario do grupo %s" msgid "Couldn't update app." msgstr "Non foi posíbel actualizar o aplicativo." -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "Contrasinal incorrecto" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "Non subministrado polo usuario" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "Forneza un contrasinal de recuperación do administrador de recuperación, senón perderanse todos os datos do usuario" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "Contrasinal de recuperación do administrador incorrecto. Comprobe o contrasinal e tenteo de novo." -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "A infraestrutura non admite o cambio de contrasinal, mais a chave de cifrado dos usuarios foi actualizada correctamente." -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "Non é posíbel cambiar o contrasinal" @@ -286,7 +286,7 @@ msgstr "Debe fornecer un contrasinal" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Aviso: O directorio persoal para o usuario «{user}» xa existe" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "Galego" @@ -431,18 +431,18 @@ msgstr "Cron" #: templates/admin.php:167 #, php-format msgid "Last cron was executed at %s." -msgstr "" +msgstr "O último «cron» executouse ás %s." #: templates/admin.php:170 #, php-format msgid "" "Last cron was executed at %s. This is more than an hour ago, something seems" " wrong." -msgstr "" +msgstr "O último «cron» executouse ás %s. Isto supón que pasou máis dunha hora. polo que semella que algo vai mal." #: templates/admin.php:174 msgid "Cron was not executed yet!" -msgstr "" +msgstr "«Cron» aínda non foi executado!" #: templates/admin.php:184 msgid "Execute one task with each page loaded" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index d93a971a803..e53a6e7be11 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: 2014-03-28 01:55-0400\n" +"POT-Creation-Date: 2014-03-29 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,24 +18,24 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -139,59 +139,59 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:496 +#: js/js.js:543 msgid "Saving..." msgstr "" -#: js/js.js:995 +#: js/js.js:1103 msgid "seconds ago" msgstr "" -#: js/js.js:996 +#: js/js.js:1104 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:997 +#: js/js.js:1105 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1106 msgid "today" msgstr "" -#: js/js.js:999 +#: js/js.js:1107 msgid "yesterday" msgstr "" -#: js/js.js:1000 +#: js/js.js:1108 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1001 +#: js/js.js:1109 msgid "last month" msgstr "" -#: js/js.js:1002 +#: js/js.js:1110 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1003 +#: js/js.js:1111 msgid "months ago" msgstr "" -#: js/js.js:1004 +#: js/js.js:1112 msgid "last year" msgstr "" -#: js/js.js:1005 +#: js/js.js:1113 msgid "years ago" msgstr "" @@ -534,14 +534,14 @@ msgstr "" msgid "Reset password" msgstr "" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 82e117c5287..ab798413e16 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: 2014-03-28 01:55-0400\n" +"POT-Creation-Date: 2014-03-29 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -193,15 +193,15 @@ msgstr "" msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "" @@ -225,13 +225,13 @@ msgstr "" msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:694 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:700 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -277,29 +277,29 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:382 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 +#: js/files.js:613 js/files.js:657 msgid "Error moving file" msgstr "" -#: js/files.js:610 js/files.js:654 +#: js/files.js:613 js/files.js:657 msgid "Error" msgstr "" -#: js/files.js:672 templates/index.php:68 +#: js/files.js:675 templates/index.php:68 msgid "Name" msgstr "" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:676 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:677 templates/index.php:82 msgid "Modified" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 4d1a870edd3..a02470e332f 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: 2014-03-28 01:55-0400\n" +"POT-Creation-Date: 2014-03-29 01:55-0400\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 0c968b9069c..4fa49bd9280 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: 2014-03-28 01:55-0400\n" +"POT-Creation-Date: 2014-03-29 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -37,7 +37,7 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: js/settings.js:313 js/settings.js:320 +#: js/settings.js:318 js/settings.js:325 msgid "Saved" msgstr "" @@ -89,39 +89,39 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:93 msgid "None set" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:94 msgid "All Users" msgstr "" -#: templates/settings.php:92 +#: templates/settings.php:95 msgid "Groups" msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:103 msgid "Users" msgstr "" -#: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:155 templates/settings.php:156 +#: templates/settings.php:116 templates/settings.php:117 +#: templates/settings.php:158 templates/settings.php:159 msgid "Delete" msgstr "" -#: templates/settings.php:127 +#: templates/settings.php:130 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:130 +#: templates/settings.php:133 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:147 +#: templates/settings.php:150 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:165 +#: templates/settings.php:168 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index dd36e90e600..1cf0e96e298 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: 2014-03-28 01:55-0400\n" +"POT-Creation-Date: 2014-03-29 01:55-0400\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 19c5f5f2738..6259fe5f8e8 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: 2014-03-28 01:55-0400\n" +"POT-Creation-Date: 2014-03-29 01:55-0400\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 "Deleted files" msgstr "" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:16 js/trash.js:108 js/trash.js:157 msgid "Error" msgstr "" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 76eba3454da..270f007084b 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: 2014-03-28 01:55-0400\n" +"POT-Creation-Date: 2014-03-29 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -22,22 +22,22 @@ msgstr "" msgid "Could not revert: %s" msgstr "" -#: js/versions.js:14 +#: js/versions.js:39 msgid "Versions" msgstr "" -#: js/versions.js:60 +#: js/versions.js:61 msgid "Failed to revert {file} to revision {timestamp}." msgstr "" -#: js/versions.js:87 +#: js/versions.js:88 msgid "More versions..." msgstr "" -#: js/versions.js:125 +#: js/versions.js:126 msgid "No other versions available" msgstr "" -#: js/versions.js:155 +#: js/versions.js:156 msgid "Restore" msgstr "" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index f599cc3ba6c..3320212771c 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: 2014-03-28 01:55-0400\n" +"POT-Creation-Date: 2014-03-29 01:55-0400\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 4a9473b3ffc..4f0be419715 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: 2014-03-28 01:55-0400\n" +"POT-Creation-Date: 2014-03-29 01:55-0400\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 e91e82eccc2..0223d8e2cf3 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: 2014-03-28 01:55-0400\n" +"POT-Creation-Date: 2014-03-29 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "" @@ -126,31 +126,31 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -283,7 +283,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index f8fe27cf0d7..b0c1b1ce4b8 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: 2014-03-28 01:55-0400\n" +"POT-Creation-Date: 2014-03-29 01:55-0400\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 e30d5c43f55..5acbae2836d 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: 2014-03-28 01:55-0400\n" +"POT-Creation-Date: 2014-03-29 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php index d98d812d944..2d23efd96a3 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -93,6 +93,9 @@ $TRANSLATIONS = array( "Internet connection not working" => "A conexión á Internet non funciona", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Este servidor non ten conexión a Internet. Isto significa que algunhas das funcionalidades como a montaxe de almacenamento externo, as notificacións sobre actualizacións ou instalación de aplicativos de terceiros non funcionan. O acceso aos ficheiros de forma remota e o envío de mensaxes de notificación poderían non funcionar. Suxerímoslle que active a conexión a Internet deste servidor se quere dispor de todas as funcionalidades.", "Cron" => "Cron", +"Last cron was executed at %s." => "O último «cron» executouse ás %s.", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "O último «cron» executouse ás %s. Isto supón que pasou máis dunha hora. polo que semella que algo vai mal.", +"Cron was not executed yet!" => "«Cron» aínda non foi executado!", "Execute one task with each page loaded" => "Executar unha tarefa con cada páxina cargada", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php está rexistrado nun servizo de WebCron para chamar a cron.php cada 15 minutos a través de HTTP.", "Use systems cron service to call the cron.php file every 15 minutes." => "Use o servizo de sistema cron para chamar ao ficheiro cron.php cada 15 minutos.", -- GitLab From 3a7829f784a3f98642ac19b633c003e74aa87e9d Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Sat, 29 Mar 2014 20:39:55 +0100 Subject: [PATCH 148/296] Sub-dir was prepended twice --- lib/private/helper.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/private/helper.php b/lib/private/helper.php index 98a86388d20..d7ac0b5f4fa 100644 --- a/lib/private/helper.php +++ b/lib/private/helper.php @@ -78,8 +78,7 @@ class OC_Helper { * Returns a absolute url to the given app and file. */ public static function linkToAbsolute($app, $file, $args = array()) { - $urlLinkTo = self::linkTo($app, $file, $args); - return self::makeURLAbsolute($urlLinkTo); + return self::linkTo($app, $file, $args); } /** -- GitLab From 7278f2f5673ca3ebc62938f854cb1028bb5bcfef Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Sat, 29 Mar 2014 20:40:49 +0100 Subject: [PATCH 149/296] Sub-dir was prepended twice --- lib/private/util.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/util.php b/lib/private/util.php index c1adbaf2544..731b7c97503 100755 --- a/lib/private/util.php +++ b/lib/private/util.php @@ -703,7 +703,7 @@ class OC_Util { public static function redirectToDefaultPage() { $urlGenerator = \OC::$server->getURLGenerator(); if(isset($_REQUEST['redirect_url'])) { - $location = $urlGenerator->getAbsoluteURL(urldecode($_REQUEST['redirect_url'])); + $location = urldecode($_REQUEST['redirect_url']); } else if (isset(OC::$REQUESTEDAPP) && !empty(OC::$REQUESTEDAPP)) { $location = $urlGenerator->getAbsoluteURL('/index.php/apps/'.OC::$REQUESTEDAPP.'/index.php'); -- GitLab From bfb0b9a044b164fb40c5db26598f17da78037eb4 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sun, 30 Mar 2014 01:55:42 -0400 Subject: [PATCH 150/296] [tx-robot] updated from transifex --- apps/user_ldap/l10n/sl.php | 1 + core/l10n/sl.php | 2 ++ l10n/sl/core.po | 48 ++++++++++++++--------------- l10n/sl/settings.po | 24 +++++++-------- l10n/sl/user_ldap.po | 10 +++--- l10n/templates/core.pot | 2 +- 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 +- settings/l10n/sl.php | 1 + 18 files changed, 57 insertions(+), 53 deletions(-) diff --git a/apps/user_ldap/l10n/sl.php b/apps/user_ldap/l10n/sl.php index b2a21b6e029..b6df62ffb79 100644 --- a/apps/user_ldap/l10n/sl.php +++ b/apps/user_ldap/l10n/sl.php @@ -85,6 +85,7 @@ $TRANSLATIONS = array( "One Group Base DN per line" => "Eno osnovno ime skupine na vrstico", "Group Search Attributes" => "Skupinski atributi iskanja", "Group-Member association" => "Povezava član-skupina", +"Nested Groups" => "Gnezdene skupine", "Special Attributes" => "Posebni atributi", "Quota Field" => "Polje količinske omejitve", "Quota Default" => "Privzeta količinska omejitev", diff --git a/core/l10n/sl.php b/core/l10n/sl.php index 2cfdfd11899..49eb4f9aa69 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -122,6 +122,8 @@ $TRANSLATIONS = array( "To login page" => "Na prijavno stran", "New password" => "Novo geslo", "Reset password" => "Ponastavi geslo", +"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Sistem Mac OS X ni podprt, zato %s ne bo deloval zanesljivo v tem okolju. Program uporabljate na lastno odgovornost! ", +"For the best results, please consider using a GNU/Linux server instead." => "Za najbolj še rezultate je priporočljivo uporabljati strežnik GNU/Linux.", "Personal" => "Osebno", "Users" => "Uporabniki", "Apps" => "Programi", diff --git a/l10n/sl/core.po b/l10n/sl/core.po index ddd78cae32f..e3285d025c8 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-30 01:55-0400\n" +"PO-Revision-Date: 2014-03-29 20: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" @@ -19,24 +19,24 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "Datum preteka je v preteklosti." -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Ni mogoče poslati sporočila za: %s" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "Vzdrževalni način je omogočen" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "Vzdrževalni način je onemogočen" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "Posodobljena podatkovna zbirka" @@ -140,15 +140,15 @@ msgstr "december" msgid "Settings" msgstr "Nastavitve" -#: js/js.js:496 +#: js/js.js:543 msgid "Saving..." msgstr "Poteka shranjevanje ..." -#: js/js.js:995 +#: js/js.js:1103 msgid "seconds ago" msgstr "pred nekaj sekundami" -#: js/js.js:996 +#: js/js.js:1104 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "pred %n minuto" @@ -156,7 +156,7 @@ msgstr[1] "pred %n minutama" msgstr[2] "pred %n minutami" msgstr[3] "pred %n minutami" -#: js/js.js:997 +#: js/js.js:1105 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "pred %n uro" @@ -164,15 +164,15 @@ msgstr[1] "pred %n urama" msgstr[2] "pred %n urami" msgstr[3] "pred %n urami" -#: js/js.js:998 +#: js/js.js:1106 msgid "today" msgstr "danes" -#: js/js.js:999 +#: js/js.js:1107 msgid "yesterday" msgstr "včeraj" -#: js/js.js:1000 +#: js/js.js:1108 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "pred %n dnevom" @@ -180,11 +180,11 @@ msgstr[1] "pred %n dnevoma" msgstr[2] "pred %n dnevi" msgstr[3] "pred %n dnevi" -#: js/js.js:1001 +#: js/js.js:1109 msgid "last month" msgstr "zadnji mesec" -#: js/js.js:1002 +#: js/js.js:1110 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "pred %n mesecem" @@ -192,15 +192,15 @@ msgstr[1] "pred %n mesecema" msgstr[2] "pred %n meseci" msgstr[3] "pred %n meseci" -#: js/js.js:1003 +#: js/js.js:1111 msgid "months ago" msgstr "mesecev nazaj" -#: js/js.js:1004 +#: js/js.js:1112 msgid "last year" msgstr "lansko leto" -#: js/js.js:1005 +#: js/js.js:1113 msgid "years ago" msgstr "let nazaj" @@ -545,17 +545,17 @@ msgstr "Novo geslo" msgid "Reset password" msgstr "Ponastavi geslo" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " -msgstr "" +msgstr "Sistem Mac OS X ni podprt, zato %s ne bo deloval zanesljivo v tem okolju. Program uporabljate na lastno odgovornost! " -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." -msgstr "" +msgstr "Za najbolj še rezultate je priporočljivo uporabljati strežnik GNU/Linux." #: strings.php:5 msgid "Personal" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 91e310d8f24..dbde28d85dd 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: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-30 01:55-0400\n" +"PO-Revision-Date: 2014-03-29 20:50+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" @@ -22,7 +22,7 @@ msgstr "" #: admin/controller.php:66 #, php-format msgid "Invalid value supplied for %s" -msgstr "" +msgstr "Navedena je napačna vrednost za %s" #: admin/controller.php:73 msgid "Saved" @@ -66,7 +66,7 @@ msgid "Unable to load list from App Store" msgstr "Ni mogoče naložiti seznama iz programskega središča" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Napaka med overjanjem" @@ -128,32 +128,32 @@ msgstr "Uporabnika ni mogoče odstraniti iz skupine %s" msgid "Couldn't update app." msgstr "Programa ni mogoče posodobiti." -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "Napačno geslo" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "Ni navedenega uporabnika" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "Podati je treba skrbniško obnovitveno geslo, sicer bodo vsi uporabniški podatki izgubljeni." -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "Napačno navedeno skrbniško obnovitveno geslo. Preverite geslo in poskusite znova." -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "Hrbtišče programa ne podpira spreminjanja gesla, je pa uspešno posodobljeno uporabniško šifriranje." -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "Ni mogoče spremeniti gesla" @@ -286,7 +286,7 @@ msgstr "Navedeno mora biti veljavno geslo" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Opozorilo: osebna mapa uporabnika \"{user}\" že obstaja" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "Slovenščina" diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index 5a24ba9ffa7..222415e4d01 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -4,14 +4,14 @@ # # Translators: # barbarak , 2013 -# mateju <>, 2013 +# mateju <>, 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-30 01:55-0400\n" +"PO-Revision-Date: 2014-03-29 20:50+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" @@ -417,7 +417,7 @@ msgstr "Povezava član-skupina" #: templates/settings.php:39 msgid "Nested Groups" -msgstr "" +msgstr "Gnezdene skupine" #: templates/settings.php:39 msgid "" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index e53a6e7be11..e121b6d17a4 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: 2014-03-29 01:55-0400\n" +"POT-Creation-Date: 2014-03-30 01:55-0400\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.pot b/l10n/templates/files.pot index ab798413e16..55217cf4e9b 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: 2014-03-29 01:55-0400\n" +"POT-Creation-Date: 2014-03-30 01:55-0400\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 a02470e332f..dbae6761cb3 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: 2014-03-29 01:55-0400\n" +"POT-Creation-Date: 2014-03-30 01:55-0400\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 4fa49bd9280..25d27460e97 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: 2014-03-29 01:55-0400\n" +"POT-Creation-Date: 2014-03-30 01:55-0400\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 1cf0e96e298..80bb68a9c3c 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: 2014-03-29 01:55-0400\n" +"POT-Creation-Date: 2014-03-30 01:55-0400\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 6259fe5f8e8..c59d59cc931 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: 2014-03-29 01:55-0400\n" +"POT-Creation-Date: 2014-03-30 01:55-0400\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 270f007084b..0607bbcedb1 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: 2014-03-29 01:55-0400\n" +"POT-Creation-Date: 2014-03-30 01:55-0400\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 3320212771c..3638bd22efd 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: 2014-03-29 01:55-0400\n" +"POT-Creation-Date: 2014-03-30 01:55-0400\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 4f0be419715..38923e73dd0 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: 2014-03-29 01:55-0400\n" +"POT-Creation-Date: 2014-03-30 01:55-0400\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 0223d8e2cf3..0c628b82bf3 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: 2014-03-29 01:55-0400\n" +"POT-Creation-Date: 2014-03-30 01:55-0400\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 b0c1b1ce4b8..e9e4f6b3235 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: 2014-03-29 01:55-0400\n" +"POT-Creation-Date: 2014-03-30 01:55-0400\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 5acbae2836d..224a8368cd9 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: 2014-03-29 01:55-0400\n" +"POT-Creation-Date: 2014-03-30 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index fea2d4cc3ad..414f46712e3 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -1,5 +1,6 @@ "Navedena je napačna vrednost za %s", "Saved" => "Shranjeno", "Email sent" => "Elektronska pošta je poslana", "Send mode" => "Način pošiljanja", -- GitLab From 881c66df52cba16df17297a88978297231d1d7d9 Mon Sep 17 00:00:00 2001 From: raghunayyar Date: Sun, 30 Mar 2014 15:48:47 +0530 Subject: [PATCH 151/296] Removes highlighting of selected items, padding from apps management. --- core/css/apps.css | 3 --- settings/css/settings.css | 3 +++ 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/core/css/apps.css b/core/css/apps.css index 5bfc2d4a08e..9e48e28fce9 100644 --- a/core/css/apps.css +++ b/core/css/apps.css @@ -35,9 +35,6 @@ #app-navigation li:hover > a { background-color: #ddd; } -#app-navigation .active { - font-weight:700; -} #app-navigation .selected, #app-navigation .selected a { background-color:#ddd; diff --git a/settings/css/settings.css b/settings/css/settings.css index d7d8b0aede2..50e3eacbc12 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -100,6 +100,9 @@ select.quota.active { background: #fff; } /* APPS */ .appinfo { margin: 1em 40px; } h3 { font-size: 1.4em; font-weight: bold; } +#app-navigation { + padding-bottom: 0px; +} #app-navigation .appwarning { background: #fcc; } -- GitLab From 5b552c84daed2f2dff60a6df26dfdb49bb4b94aa Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Mon, 31 Mar 2014 01:55:43 -0400 Subject: [PATCH 152/296] [tx-robot] updated from transifex --- l10n/templates/core.pot | 2 +- 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 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index e121b6d17a4..eacfde04d8d 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: 2014-03-30 01:55-0400\n" +"POT-Creation-Date: 2014-03-31 01:55-0400\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.pot b/l10n/templates/files.pot index 55217cf4e9b..bc931be91d8 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: 2014-03-30 01:55-0400\n" +"POT-Creation-Date: 2014-03-31 01:55-0400\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 dbae6761cb3..99f9cf030b6 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: 2014-03-30 01:55-0400\n" +"POT-Creation-Date: 2014-03-31 01:55-0400\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 25d27460e97..6334e403e41 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: 2014-03-30 01:55-0400\n" +"POT-Creation-Date: 2014-03-31 01:55-0400\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 80bb68a9c3c..8fbff462614 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: 2014-03-30 01:55-0400\n" +"POT-Creation-Date: 2014-03-31 01:55-0400\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 c59d59cc931..f9b4401c785 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: 2014-03-30 01:55-0400\n" +"POT-Creation-Date: 2014-03-31 01:55-0400\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 0607bbcedb1..3381aea0a7d 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: 2014-03-30 01:55-0400\n" +"POT-Creation-Date: 2014-03-31 01:55-0400\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 3638bd22efd..10017472d1b 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: 2014-03-30 01:55-0400\n" +"POT-Creation-Date: 2014-03-31 01:55-0400\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 38923e73dd0..12fa6ad9308 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: 2014-03-30 01:55-0400\n" +"POT-Creation-Date: 2014-03-31 01:55-0400\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 0c628b82bf3..892d64a2733 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: 2014-03-30 01:55-0400\n" +"POT-Creation-Date: 2014-03-31 01:55-0400\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 e9e4f6b3235..d16fe0386eb 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: 2014-03-30 01:55-0400\n" +"POT-Creation-Date: 2014-03-31 01:55-0400\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 224a8368cd9..d2e917267ce 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: 2014-03-30 01:55-0400\n" +"POT-Creation-Date: 2014-03-31 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" -- GitLab From 615de6534f659b3f0bc8149b5ccf8558aaf491e9 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Mon, 31 Mar 2014 12:27:26 +0200 Subject: [PATCH 153/296] fix duplicate rules for button/input styles, em to px --- core/css/styles.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/css/styles.css b/core/css/styles.css index 9719de191ef..68317d1588a 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -99,6 +99,8 @@ input[type="time"], textarea, select, button, .button, +input[type="submit"], +input[type="button"], #quota, .pager li a { width: 130px; @@ -173,14 +175,12 @@ input[type="submit"], input[type="button"], button, .button, #quota, select, .pager li a { width: auto; - padding: .4em; + padding: 5px; background-color: rgba(240,240,240,.9); font-weight: bold; color: #555; border: 1px solid rgba(190,190,190,.9); cursor: pointer; - border-radius: 3px; - outline: none; } input[type="submit"]:hover, input[type="submit"]:focus, input[type="button"]:hover, input[type="button"]:focus, -- GitLab From 6ac85480f7bffeb65fcbc5820ea7bd4ecd8f21ad Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Mon, 31 Mar 2014 13:00:46 +0200 Subject: [PATCH 154/296] replace last personalblock fieldset within files_external --- apps/files_external/templates/settings.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/apps/files_external/templates/settings.php b/apps/files_external/templates/settings.php index e7be16bede1..8b01b7677e5 100644 --- a/apps/files_external/templates/settings.php +++ b/apps/files_external/templates/settings.php @@ -137,11 +137,10 @@ -
      -

      t('SSL root certificates'));?>

      '> @@ -161,6 +160,5 @@ - -- GitLab From 8bd308ffedec77f1dd4b7ddaf588c7a4029ea34f Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Mon, 31 Mar 2014 13:51:53 +0200 Subject: [PATCH 155/296] merge CSS rules --- core/css/apps.css | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/core/css/apps.css b/core/css/apps.css index 9e48e28fce9..5899aa09090 100644 --- a/core/css/apps.css +++ b/core/css/apps.css @@ -32,12 +32,10 @@ #app-navigation .active a { background-color: #eee; } -#app-navigation li:hover > a { - background-color: #ddd; -} +#app-navigation li:hover > a, #app-navigation .selected, #app-navigation .selected a { - background-color:#ddd; + background-color: #ddd; } /* special rules for first-level entries and folders */ -- GitLab From 6292aa57af8900f38885e9bb08b748a80d86aec1 Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Mon, 31 Mar 2014 14:24:38 +0200 Subject: [PATCH 156/296] Check if web root has already been appended --- lib/private/urlgenerator.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lib/private/urlgenerator.php b/lib/private/urlgenerator.php index 0d238737dde..260eeb15108 100644 --- a/lib/private/urlgenerator.php +++ b/lib/private/urlgenerator.php @@ -149,6 +149,11 @@ class URLGenerator implements IURLGenerator { public function getAbsoluteURL($url) { $separator = $url[0] === '/' ? '' : '/'; - return \OC_Request::serverProtocol() . '://' . \OC_Request::serverHost(). \OC::$WEBROOT . $separator . $url; + // The ownCloud web root can already be prepended. + $webRoot = substr($url, 0, strlen(\OC::$WEBROOT)) === \OC::$WEBROOT + ? '' + : \OC::$WEBROOT; + + return \OC_Request::serverProtocol() . '://' . \OC_Request::serverHost(). $webRoot . $separator . $url; } } -- GitLab From 0c2585f3ac9dbf82bf45023963dfecc66c515b78 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 31 Mar 2014 14:29:55 +0200 Subject: [PATCH 157/296] Improve phpdoc --- apps/files_sharing/lib/cache.php | 7 +++++++ lib/private/files/cache/cache.php | 4 +++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php index 49b1d208d48..eeb62c3cce2 100644 --- a/apps/files_sharing/lib/cache.php +++ b/apps/files_sharing/lib/cache.php @@ -400,6 +400,13 @@ class Shared_Cache extends Cache { return false; } + /** + * get the path of a file on this storage by it's id + * + * @param int $id + * @param string $pathEnd (optional) used internally for recursive calls + * @return string | null + */ public function getPathById($id, $pathEnd = '') { // direct shares are easy if ($path = $this->getShareById($id)) { diff --git a/lib/private/files/cache/cache.php b/lib/private/files/cache/cache.php index 42fee4f336d..1c9de56f8c5 100644 --- a/lib/private/files/cache/cache.php +++ b/lib/private/files/cache/cache.php @@ -594,7 +594,7 @@ class Cache { } /** - * get the storage id of the storage for a file and the internal path of the file + * get the path of a file on this storage by it's id * * @param int $id * @return string | null @@ -611,6 +611,8 @@ class Cache { /** * get the storage id of the storage for a file and the internal path of the file + * unlike getPathById this does not limit the search to files on this storage and + * instead does a global search in the cache table * * @param int $id * @return array, first element holding the storage id, second the path -- GitLab From 3a731a01b1742f22b67eda6bc2a643462a9ae40d Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Mon, 31 Mar 2014 15:02:02 +0200 Subject: [PATCH 158/296] select statement always need to contain file_source respectively item_source --- lib/private/share/share.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/private/share/share.php b/lib/private/share/share.php index 8238797600e..7bab98b00bf 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -1523,9 +1523,9 @@ class Share extends \OC\Share\Constants { $select = '*'; if ($format == self::FORMAT_STATUSES) { if ($fileDependent) { - $select = '`*PREFIX*share`.`id`, `*PREFIX*share`.`parent`, `share_type`, `path`, `share_with`, `uid_owner`'; + $select = '`*PREFIX*share`.`id`, `*PREFIX*share`.`parent`, `share_type`, `path`, `share_with`, `uid_owner` , `file_source`'; } else { - $select = '`id`, `parent`, `share_type`, `share_with`, `uid_owner`'; + $select = '`id`, `parent`, `share_type`, `share_with`, `uid_owner`, `item_source`'; } } else { if (isset($uidOwner)) { -- GitLab From 8ebb1f15d31b449401c7f2b726007aaff78a4879 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Thu, 27 Mar 2014 13:49:48 +0100 Subject: [PATCH 159/296] move check if a file should be encrypted to the pre hook --- apps/files_encryption/lib/proxy.php | 92 ++++++++++------------------- apps/files_encryption/lib/util.php | 33 ++++++----- 2 files changed, 50 insertions(+), 75 deletions(-) diff --git a/apps/files_encryption/lib/proxy.php b/apps/files_encryption/lib/proxy.php index bae1fded53d..f7f5ff6f363 100644 --- a/apps/files_encryption/lib/proxy.php +++ b/apps/files_encryption/lib/proxy.php @@ -3,9 +3,10 @@ /** * ownCloud * - * @author Sam Tuke, Robin Appelman - * @copyright 2012 Sam Tuke samtuke@owncloud.com, Robin Appelman - * icewind1991@gmail.com + * @author Bjoern Schiessle, Sam Tuke, Robin Appelman + * @copyright 2012 Sam Tuke + * 2012 Robin Appelman + * 2014 Bjoern Schiessle * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE @@ -36,37 +37,40 @@ namespace OCA\Encryption; */ class Proxy extends \OC_FileProxy { - private static $blackList = null; //mimetypes blacklisted from encryption private static $unencryptedSizes = array(); // remember unencrypted size private static $fopenMode = array(); // remember the fopen mode + private static $enableEncryption = false; // Enable encryption for the given path /** * Check if a file requires encryption * @param string $path + * @param string $mode type of access * @return bool * - * Tests if server side encryption is enabled, and file is allowed by blacklists + * Tests if server side encryption is enabled, and if we should call the + * crypt stream wrapper for the given file */ - private static function shouldEncrypt($path) { + private static function shouldEncrypt($path, $mode = 'w') { $userId = Helper::getUser($path); - if (\OCP\App::isEnabled('files_encryption') === false || Crypt::mode() !== 'server' || - strpos($path, '/' . $userId . '/files') !== 0) { + // don't call the crypt stream wrapper, if... + if ( + \OCP\App::isEnabled('files_encryption') === false // encryption is disabled + || Crypt::mode() !== 'server' // we are not in server-side-encryption mode + || strpos($path, '/' . $userId . '/files') !== 0 // path is not in files/ + || substr($path, 0, 8) === 'crypt://' // we are already in crypt mode + ) { return false; } - if (is_null(self::$blackList)) { - self::$blackList = explode(',', \OCP\Config::getAppValue('files_encryption', 'type_blacklist', '')); - } - - if (Crypt::isCatfileContent($path)) { - return true; - } - - $extension = substr($path, strrpos($path, '.') + 1); + $view = new \OC_FilesystemView(''); + $util = new Util($view, $userId); - if (array_search($extension, self::$blackList) === false) { + // for write operation we always encrypt the files, for read operations + // we check if the existing file is encrypted or not decide if it needs to + // decrypt it. + if (($mode !== 'r' && $mode !== 'rb') || $util->isEncryptedPath($path)) { return true; } @@ -220,7 +224,10 @@ class Proxy extends \OC_FileProxy { * @param string $mode type of access */ public function preFopen($path, $mode) { + self::$fopenMode[$path] = $mode; + self::$enableEncryption = self::shouldEncrypt($path, $mode); + } @@ -233,26 +240,14 @@ class Proxy extends \OC_FileProxy { $path = \OC\Files\Filesystem::normalizePath($path); - if (!$result) { + if (!$result || self::$enableEncryption === false) { return $result; } - // split the path parts - $pathParts = explode('/', $path); - - // don't try to encrypt/decrypt cache chunks or files in the trash bin - if (isset($pathParts[2]) && ($pathParts[2] === 'cache' || $pathParts[2] === 'files_trashbin')) { - return $result; - } - - // Disable encryption proxy to prevent recursive calls - $proxyStatus = \OC_FileProxy::$enabled; - \OC_FileProxy::$enabled = false; - // if we remember the mode from the pre proxy we re-use it - // oterwise we fall back to stream_get_meta_data() + // otherwise we fall back to stream_get_meta_data() if (isset(self::$fopenMode[$path])) { $mode = self::$fopenMode[$path]; unset(self::$fopenMode[$path]); @@ -261,35 +256,12 @@ class Proxy extends \OC_FileProxy { $mode = $meta['mode']; } - $view = new \OC_FilesystemView(''); - - $userId = Helper::getUser($path); - $util = new Util($view, $userId); + // Close the original encrypted file + fclose($result); - // If file is already encrypted, decrypt using crypto protocol - if ( - Crypt::mode() === 'server' - && $util->isEncryptedPath($path) - ) { - - // Close the original encrypted file - fclose($result); - - // Open the file using the crypto stream wrapper - // protocol and let it do the decryption work instead - $result = fopen('crypt://' . $path, $mode); - - } elseif ( - self::shouldEncrypt($path) - and $mode !== 'r' - and $mode !== 'rb' - - ) { - $result = fopen('crypt://' . $path, $mode); - } - - // Re-enable the proxy - \OC_FileProxy::$enabled = $proxyStatus; + // Open the file using the crypto stream wrapper + // protocol and let it do the decryption work instead + $result = fopen('crypt://' . $path, $mode); return $result; diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index 3db5a423478..c3058aefa6f 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -432,25 +432,28 @@ class Util { $proxyStatus = \OC_FileProxy::$enabled; \OC_FileProxy::$enabled = false; - // we only need 24 byte from the last chunk $data = ''; - $handle = $this->view->fopen($path, 'r'); - if (is_resource($handle)) { - // suppress fseek warining, we handle the case that fseek doesn't - // work in the else branch - if (@fseek($handle, -24, SEEK_END) === 0) { - $data = fgets($handle); - } else { - // if fseek failed on the storage we create a local copy from the file - // and read this one - fclose($handle); - $localFile = $this->view->getLocalFile($path); - $handle = fopen($localFile, 'r'); - if (is_resource($handle) && fseek($handle, -24, SEEK_END) === 0) { + + // we only need 24 byte from the last chunk + if ($this->view->file_exists($path)) { + $handle = $this->view->fopen($path, 'r'); + if (is_resource($handle)) { + // suppress fseek warining, we handle the case that fseek doesn't + // work in the else branch + if (@fseek($handle, -24, SEEK_END) === 0) { $data = fgets($handle); + } else { + // if fseek failed on the storage we create a local copy from the file + // and read this one + fclose($handle); + $localFile = $this->view->getLocalFile($path); + $handle = fopen($localFile, 'r'); + if (is_resource($handle) && fseek($handle, -24, SEEK_END) === 0) { + $data = fgets($handle); + } } + fclose($handle); } - fclose($handle); } // re-enable proxy -- GitLab From aa867ad647677d9648f746681adde630fed60850 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Mon, 31 Mar 2014 12:43:38 +0200 Subject: [PATCH 160/296] don't call getFileInfo() to avoid to open the same file twice --- apps/files_encryption/lib/stream.php | 28 ++++++++++++++++------------ 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/apps/files_encryption/lib/stream.php b/apps/files_encryption/lib/stream.php index 58ac03373a7..1a163db887c 100644 --- a/apps/files_encryption/lib/stream.php +++ b/apps/files_encryption/lib/stream.php @@ -568,21 +568,25 @@ class Stream { // part file. $path = Helper::stripPartialFileExtension($this->rawPath); - // get file info - $fileInfo = $this->rootView->getFileInfo($path); - if ($fileInfo) { - // set encryption data - $fileInfo['encrypted'] = true; - $fileInfo['size'] = $this->size; - $fileInfo['unencrypted_size'] = $this->unencryptedSize; - - // set fileinfo - $this->rootView->putFileInfo($path, $fileInfo); - } + $fileInfo = array( + 'encrypted' => true, + 'size' => $this->size, + 'unencrypted_size' => $this->unencryptedSize, + ); + + // set fileinfo + $this->rootView->putFileInfo($path, $fileInfo); } - return fclose($this->handle); + $result = fclose($this->handle); + + if ($result === false) { + \OCP\Util::writeLog('Encryption library', 'Could not close stream, file could be corrupted', \OCP\Util::FATAL); + } + + return $result; + } } -- GitLab From cf361b6b4afe76e3bb6295a1fdd80d5ad0badd65 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Mon, 31 Mar 2014 15:30:44 +0200 Subject: [PATCH 161/296] Allow using "/" in "overwritewebroot" Whenever the reverse proxy is using "/" as the webroot, it is now possible to set that value in "overwritewebroot" --- config/config.sample.php | 2 +- lib/private/request.php | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/config/config.sample.php b/config/config.sample.php index 140b75706ea..adcc175e2fa 100755 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -41,7 +41,7 @@ $CONFIG = array( /* The automatic protocol detection of ownCloud can fail in certain reverse proxy situations. This option allows to manually override the protocol detection. For example "https" */ "overwriteprotocol" => "", -/* The automatic webroot detection of ownCloud can fail in certain reverse proxy situations. This option allows to manually override the automatic detection. For example "/domain.tld/ownCloud" */ +/* The automatic webroot detection of ownCloud can fail in certain reverse proxy situations. This option allows to manually override the automatic detection. For example "/domain.tld/ownCloud". The value "/" can be used to remove the root. */ "overwritewebroot" => "", /* The automatic detection of ownCloud can fail in certain reverse proxy situations. This option allows to define a manually override condition as regular expression for the remote ip address. For example "^10\.0\.0\.[1-3]$" */ diff --git a/lib/private/request.php b/lib/private/request.php index 8041c4f0048..7cbbb0676b1 100755 --- a/lib/private/request.php +++ b/lib/private/request.php @@ -166,10 +166,11 @@ class OC_Request { */ public static function scriptName() { $name = $_SERVER['SCRIPT_NAME']; - if (OC_Config::getValue('overwritewebroot', '') !== '' and self::isOverwriteCondition()) { + $overwriteWebRoot = OC_Config::getValue('overwritewebroot', ''); + if ($overwriteWebRoot !== '' and self::isOverwriteCondition()) { $serverroot = str_replace("\\", '/', substr(__DIR__, 0, -strlen('lib/private/'))); $suburi = str_replace("\\", "/", substr(realpath($_SERVER["SCRIPT_FILENAME"]), strlen($serverroot))); - $name = OC_Config::getValue('overwritewebroot', '') . $suburi; + $name = '/' . ltrim($overwriteWebRoot . $suburi, '/'); } return $name; } -- GitLab From 76c63a576089edcd553244f02d8c3f6c28038fd2 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 31 Mar 2014 17:00:32 +0200 Subject: [PATCH 162/296] Fix uploading files containing a # in the path for webdav --- apps/files_external/lib/webdav.php | 2 +- tests/lib/files/storage/storage.php | 21 ++++++++++++++++++++- 2 files changed, 21 insertions(+), 2 deletions(-) diff --git a/apps/files_external/lib/webdav.php b/apps/files_external/lib/webdav.php index 279ae716935..f5010f92208 100644 --- a/apps/files_external/lib/webdav.php +++ b/apps/files_external/lib/webdav.php @@ -267,7 +267,7 @@ class DAV extends \OC\Files\Storage\Common { $curl = curl_init(); curl_setopt($curl, CURLOPT_USERPWD, $this->user . ':' . $this->password); - curl_setopt($curl, CURLOPT_URL, $this->createBaseUri() . str_replace(' ', '%20', $target)); + curl_setopt($curl, CURLOPT_URL, $this->createBaseUri() . $this->encodePath($target)); curl_setopt($curl, CURLOPT_BINARYTRANSFER, true); curl_setopt($curl, CURLOPT_INFILE, $source); // file pointer curl_setopt($curl, CURLOPT_INFILESIZE, filesize($path)); diff --git a/tests/lib/files/storage/storage.php b/tests/lib/files/storage/storage.php index f3bfba3feb8..e4d9e93ca97 100644 --- a/tests/lib/files/storage/storage.php +++ b/tests/lib/files/storage/storage.php @@ -299,7 +299,7 @@ abstract class Storage extends \PHPUnit_Framework_TestCase { $this->assertFalse($this->instance->file_exists('folder')); } - public function hashProvider(){ + public function hashProvider() { return array( array('Foobar', 'md5'), array('Foobar', 'sha1'), @@ -315,4 +315,23 @@ abstract class Storage extends \PHPUnit_Framework_TestCase { $this->assertEquals(hash($type, $data), $this->instance->hash($type, 'hash.txt')); $this->assertEquals(hash($type, $data, true), $this->instance->hash($type, 'hash.txt', true)); } + + public function testHashInFileName() { + $this->instance->file_put_contents('#test.txt', 'data'); + $this->assertEquals('data', $this->instance->file_get_contents('#test.txt')); + + $this->instance->mkdir('#foo'); + $this->instance->file_put_contents('#foo/test.txt', 'data'); + $this->assertEquals('data', $this->instance->file_get_contents('#foo/test.txt')); + + $dh = $this->instance->opendir('#foo'); + $content = array(); + while ($file = readdir($dh)) { + if ($file != '.' and $file != '..') { + $content[] = $file; + } + } + + $this->assertEquals(array('test.txt'), $content); + } } -- GitLab From fe2c6f4e6d77ca77fc7faed130217f38904d67f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Mon, 31 Mar 2014 18:03:42 +0200 Subject: [PATCH 163/296] remove pl_PL - fixes #7973 --- apps/files/l10n/pl_PL.php | 5 - core/l10n/pl_PL.php | 6 - l10n/pl_PL/core.po | 617 --------------------------------- l10n/pl_PL/files.po | 322 ----------------- l10n/pl_PL/files_encryption.po | 103 ------ l10n/pl_PL/files_external.po | 123 ------- l10n/pl_PL/files_sharing.po | 48 --- l10n/pl_PL/files_trashbin.po | 84 ----- l10n/pl_PL/files_versions.po | 57 --- l10n/pl_PL/lib.po | 245 ------------- l10n/pl_PL/settings.po | 496 -------------------------- l10n/pl_PL/user_ldap.po | 419 ---------------------- l10n/pl_PL/user_webdavauth.po | 33 -- lib/l10n/pl_PL.php | 5 - settings/l10n/pl_PL.php | 6 - 15 files changed, 2569 deletions(-) delete mode 100644 apps/files/l10n/pl_PL.php delete mode 100644 core/l10n/pl_PL.php delete mode 100644 l10n/pl_PL/core.po delete mode 100644 l10n/pl_PL/files.po delete mode 100644 l10n/pl_PL/files_encryption.po delete mode 100644 l10n/pl_PL/files_external.po delete mode 100644 l10n/pl_PL/files_sharing.po delete mode 100644 l10n/pl_PL/files_trashbin.po delete mode 100644 l10n/pl_PL/files_versions.po delete mode 100644 l10n/pl_PL/lib.po delete mode 100644 l10n/pl_PL/settings.po delete mode 100644 l10n/pl_PL/user_ldap.po delete mode 100644 l10n/pl_PL/user_webdavauth.po delete mode 100644 lib/l10n/pl_PL.php delete mode 100644 settings/l10n/pl_PL.php diff --git a/apps/files/l10n/pl_PL.php b/apps/files/l10n/pl_PL.php deleted file mode 100644 index b67f67b972e..00000000000 --- a/apps/files/l10n/pl_PL.php +++ /dev/null @@ -1,5 +0,0 @@ - "Zapisz" -); -$PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/core/l10n/pl_PL.php b/core/l10n/pl_PL.php deleted file mode 100644 index 15c376eb954..00000000000 --- a/core/l10n/pl_PL.php +++ /dev/null @@ -1,6 +0,0 @@ - "Ustawienia", -"Username" => "Nazwa użytkownika" -); -$PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/l10n/pl_PL/core.po b/l10n/pl_PL/core.po deleted file mode 100644 index 7b4ef7d09a1..00000000000 --- a/l10n/pl_PL/core.po +++ /dev/null @@ -1,617 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-04 02:29+0200\n" -"PO-Revision-Date: 2013-06-03 00:32+0000\n" -"Last-Translator: I Robot \n" -"Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: ajax/share.php:97 -#, php-format -msgid "User %s shared a file with you" -msgstr "" - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "" - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "" - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "" - -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "" - -#: js/config.php:34 -msgid "Sunday" -msgstr "" - -#: js/config.php:35 -msgid "Monday" -msgstr "" - -#: js/config.php:36 -msgid "Tuesday" -msgstr "" - -#: js/config.php:37 -msgid "Wednesday" -msgstr "" - -#: js/config.php:38 -msgid "Thursday" -msgstr "" - -#: js/config.php:39 -msgid "Friday" -msgstr "" - -#: js/config.php:40 -msgid "Saturday" -msgstr "" - -#: js/config.php:45 -msgid "January" -msgstr "" - -#: js/config.php:46 -msgid "February" -msgstr "" - -#: js/config.php:47 -msgid "March" -msgstr "" - -#: js/config.php:48 -msgid "April" -msgstr "" - -#: js/config.php:49 -msgid "May" -msgstr "" - -#: js/config.php:50 -msgid "June" -msgstr "" - -#: js/config.php:51 -msgid "July" -msgstr "" - -#: js/config.php:52 -msgid "August" -msgstr "" - -#: js/config.php:53 -msgid "September" -msgstr "" - -#: js/config.php:54 -msgid "October" -msgstr "" - -#: js/config.php:55 -msgid "November" -msgstr "" - -#: js/config.php:56 -msgid "December" -msgstr "" - -#: js/js.js:286 -msgid "Settings" -msgstr "Ustawienia" - -#: js/js.js:718 -msgid "seconds ago" -msgstr "" - -#: js/js.js:719 -msgid "1 minute ago" -msgstr "" - -#: js/js.js:720 -msgid "{minutes} minutes ago" -msgstr "" - -#: js/js.js:721 -msgid "1 hour ago" -msgstr "" - -#: js/js.js:722 -msgid "{hours} hours ago" -msgstr "" - -#: js/js.js:723 -msgid "today" -msgstr "" - -#: js/js.js:724 -msgid "yesterday" -msgstr "" - -#: js/js.js:725 -msgid "{days} days ago" -msgstr "" - -#: js/js.js:726 -msgid "last month" -msgstr "" - -#: js/js.js:727 -msgid "{months} months ago" -msgstr "" - -#: js/js.js:728 -msgid "months ago" -msgstr "" - -#: js/js.js:729 -msgid "last year" -msgstr "" - -#: js/js.js:730 -msgid "years ago" -msgstr "" - -#: js/oc-dialogs.js:117 -msgid "Choose" -msgstr "" - -#: js/oc-dialogs.js:122 -msgid "Cancel" -msgstr "" - -#: js/oc-dialogs.js:141 js/oc-dialogs.js:200 -msgid "Error loading file picker template" -msgstr "" - -#: js/oc-dialogs.js:164 -msgid "Yes" -msgstr "" - -#: js/oc-dialogs.js:172 -msgid "No" -msgstr "" - -#: js/oc-dialogs.js:185 -msgid "Ok" -msgstr "" - -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 -#: js/share.js:589 -msgid "Error" -msgstr "" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - -#: js/share.js:30 js/share.js:45 js/share.js:87 -msgid "Shared" -msgstr "" - -#: js/share.js:90 -msgid "Share" -msgstr "" - -#: js/share.js:125 js/share.js:617 -msgid "Error while sharing" -msgstr "" - -#: js/share.js:136 -msgid "Error while unsharing" -msgstr "" - -#: js/share.js:143 -msgid "Error while changing permissions" -msgstr "" - -#: js/share.js:152 -msgid "Shared with you and the group {group} by {owner}" -msgstr "" - -#: js/share.js:154 -msgid "Shared with you by {owner}" -msgstr "" - -#: js/share.js:159 -msgid "Share with" -msgstr "" - -#: js/share.js:164 -msgid "Share with link" -msgstr "" - -#: js/share.js:167 -msgid "Password protect" -msgstr "" - -#: js/share.js:169 templates/installation.php:54 templates/login.php:26 -msgid "Password" -msgstr "" - -#: js/share.js:173 -msgid "Email link to person" -msgstr "" - -#: js/share.js:174 -msgid "Send" -msgstr "" - -#: js/share.js:178 -msgid "Set expiration date" -msgstr "" - -#: js/share.js:179 -msgid "Expiration date" -msgstr "" - -#: js/share.js:211 -msgid "Share via email:" -msgstr "" - -#: js/share.js:213 -msgid "No people found" -msgstr "" - -#: js/share.js:251 -msgid "Resharing is not allowed" -msgstr "" - -#: js/share.js:287 -msgid "Shared in {item} with {user}" -msgstr "" - -#: js/share.js:308 -msgid "Unshare" -msgstr "" - -#: js/share.js:320 -msgid "can edit" -msgstr "" - -#: js/share.js:322 -msgid "access control" -msgstr "" - -#: js/share.js:325 -msgid "create" -msgstr "" - -#: js/share.js:328 -msgid "update" -msgstr "" - -#: js/share.js:331 -msgid "delete" -msgstr "" - -#: js/share.js:334 -msgid "share" -msgstr "" - -#: js/share.js:368 js/share.js:564 -msgid "Password protected" -msgstr "" - -#: js/share.js:577 -msgid "Error unsetting expiration date" -msgstr "" - -#: js/share.js:589 -msgid "Error setting expiration date" -msgstr "" - -#: js/share.js:604 -msgid "Sending ..." -msgstr "" - -#: js/share.js:615 -msgid "Email sent" -msgstr "" - -#: js/update.js:14 -msgid "" -"The update was unsuccessful. Please report this issue to the ownCloud " -"community." -msgstr "" - -#: js/update.js:18 -msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "" - -#: lostpassword/controller.php:48 -msgid "ownCloud password reset" -msgstr "" - -#: lostpassword/templates/email.php:2 -msgid "Use the following link to reset your password: {link}" -msgstr "" - -#: lostpassword/templates/lostpassword.php:4 -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 "" - -#: lostpassword/templates/lostpassword.php:12 -msgid "Request failed!
      Did you make sure your email/username was right?" -msgstr "" - -#: lostpassword/templates/lostpassword.php:15 -msgid "You will receive a link to reset your password via Email." -msgstr "" - -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 -#: templates/login.php:19 -msgid "Username" -msgstr "Nazwa użytkownika" - -#: lostpassword/templates/lostpassword.php:21 -msgid "Request reset" -msgstr "" - -#: lostpassword/templates/resetpassword.php:4 -msgid "Your password was reset" -msgstr "" - -#: lostpassword/templates/resetpassword.php:5 -msgid "To login page" -msgstr "" - -#: lostpassword/templates/resetpassword.php:8 -msgid "New password" -msgstr "" - -#: lostpassword/templates/resetpassword.php:11 -msgid "Reset password" -msgstr "" - -#: strings.php:5 -msgid "Personal" -msgstr "" - -#: strings.php:6 -msgid "Users" -msgstr "" - -#: strings.php:7 -msgid "Apps" -msgstr "" - -#: strings.php:8 -msgid "Admin" -msgstr "" - -#: strings.php:9 -msgid "Help" -msgstr "" - -#: templates/403.php:12 -msgid "Access forbidden" -msgstr "" - -#: templates/404.php:12 -msgid "Cloud not found" -msgstr "" - -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "" - -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "" - -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 -msgid "Security Warning" -msgstr "" - -#: templates/installation.php:25 -msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "" - -#: templates/installation.php:26 -msgid "Please update your PHP installation to use ownCloud securely." -msgstr "" - -#: templates/installation.php:32 -msgid "" -"No secure random number generator is available, please enable the PHP " -"OpenSSL extension." -msgstr "" - -#: templates/installation.php:33 -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 -msgid "" -"Your data directory and files are probably accessible from the internet " -"because the .htaccess file does not work." -msgstr "" - -#: templates/installation.php:40 -msgid "" -"For information how to properly configure your server, please see the documentation." -msgstr "" - -#: templates/installation.php:44 -msgid "Create an admin account" -msgstr "" - -#: templates/installation.php:62 -msgid "Advanced" -msgstr "" - -#: templates/installation.php:64 -msgid "Data folder" -msgstr "" - -#: templates/installation.php:74 -msgid "Configure the database" -msgstr "" - -#: templates/installation.php:79 templates/installation.php:91 -#: templates/installation.php:102 templates/installation.php:113 -#: templates/installation.php:125 -msgid "will be used" -msgstr "" - -#: templates/installation.php:137 -msgid "Database user" -msgstr "" - -#: templates/installation.php:144 -msgid "Database password" -msgstr "" - -#: templates/installation.php:149 -msgid "Database name" -msgstr "" - -#: templates/installation.php:159 -msgid "Database tablespace" -msgstr "" - -#: templates/installation.php:166 -msgid "Database host" -msgstr "" - -#: templates/installation.php:172 -msgid "Finish setup" -msgstr "" - -#: templates/layout.guest.php:40 -msgid "web services under your control" -msgstr "" - -#: templates/layout.user.php:37 -#, php-format -msgid "%s is available. Get more information on how to update." -msgstr "" - -#: templates/layout.user.php:62 -msgid "Log out" -msgstr "" - -#: templates/login.php:9 -msgid "Automatic logon rejected!" -msgstr "" - -#: templates/login.php:10 -msgid "" -"If you did not change your password recently, your account may be " -"compromised!" -msgstr "" - -#: templates/login.php:12 -msgid "Please change your password to secure your account again." -msgstr "" - -#: templates/login.php:34 -msgid "Lost your password?" -msgstr "" - -#: templates/login.php:39 -msgid "remember" -msgstr "" - -#: templates/login.php:41 -msgid "Log in" -msgstr "" - -#: templates/login.php:47 -msgid "Alternative Logins" -msgstr "" - -#: templates/part.pagenavi.php:3 -msgid "prev" -msgstr "" - -#: templates/part.pagenavi.php:20 -msgid "next" -msgstr "" - -#: templates/update.php:3 -#, php-format -msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" diff --git a/l10n/pl_PL/files.po b/l10n/pl_PL/files.po deleted file mode 100644 index be28fc5ba39..00000000000 --- a/l10n/pl_PL/files.po +++ /dev/null @@ -1,322 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-03 02:27+0200\n" -"PO-Revision-Date: 2013-06-02 23:17+0000\n" -"Last-Translator: I Robot \n" -"Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: ajax/move.php:17 -#, php-format -msgid "Could not move %s - File with this name already exists" -msgstr "" - -#: ajax/move.php:27 ajax/move.php:30 -#, php-format -msgid "Could not move %s" -msgstr "" - -#: ajax/upload.php:19 -msgid "No file was uploaded. Unknown error" -msgstr "" - -#: ajax/upload.php:26 -msgid "There is no error, the file uploaded with success" -msgstr "" - -#: ajax/upload.php:27 -msgid "" -"The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "" - -#: ajax/upload.php:29 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "" - -#: ajax/upload.php:30 -msgid "The uploaded file was only partially uploaded" -msgstr "" - -#: ajax/upload.php:31 -msgid "No file was uploaded" -msgstr "" - -#: ajax/upload.php:32 -msgid "Missing a temporary folder" -msgstr "" - -#: ajax/upload.php:33 -msgid "Failed to write to disk" -msgstr "" - -#: ajax/upload.php:51 -msgid "Not enough storage available" -msgstr "" - -#: ajax/upload.php:83 -msgid "Invalid directory." -msgstr "" - -#: appinfo/app.php:12 -msgid "Files" -msgstr "" - -#: js/fileactions.js:116 -msgid "Share" -msgstr "" - -#: js/fileactions.js:126 -msgid "Delete permanently" -msgstr "" - -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "" - -#: js/fileactions.js:194 -msgid "Rename" -msgstr "" - -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 -msgid "Pending" -msgstr "" - -#: js/filelist.js:259 js/filelist.js:261 -msgid "{new_name} already exists" -msgstr "" - -#: js/filelist.js:259 js/filelist.js:261 -msgid "replace" -msgstr "" - -#: js/filelist.js:259 -msgid "suggest name" -msgstr "" - -#: js/filelist.js:259 js/filelist.js:261 -msgid "cancel" -msgstr "" - -#: js/filelist.js:306 -msgid "replaced {new_name} with {old_name}" -msgstr "" - -#: js/filelist.js:306 -msgid "undo" -msgstr "" - -#: js/filelist.js:331 -msgid "perform delete operation" -msgstr "" - -#: js/filelist.js:413 -msgid "1 file uploading" -msgstr "" - -#: js/filelist.js:416 js/filelist.js:470 -msgid "files uploading" -msgstr "" - -#: js/files.js:52 -msgid "'.' is an invalid file name." -msgstr "" - -#: js/files.js:56 -msgid "File name cannot be empty." -msgstr "" - -#: js/files.js:64 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "" - -#: js/files.js:78 -msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "" - -#: js/files.js:82 -msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "" - -#: js/files.js:231 -msgid "" -"Your download is being prepared. This might take some time if the files are " -"big." -msgstr "" - -#: js/files.js:264 -msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" - -#: js/files.js:277 -msgid "Not enough space available" -msgstr "" - -#: js/files.js:317 -msgid "Upload cancelled." -msgstr "" - -#: js/files.js:413 -msgid "" -"File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" - -#: js/files.js:486 -msgid "URL cannot be empty." -msgstr "" - -#: js/files.js:491 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" - -#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 -msgid "Error" -msgstr "" - -#: js/files.js:877 templates/index.php:69 -msgid "Name" -msgstr "" - -#: js/files.js:878 templates/index.php:80 -msgid "Size" -msgstr "" - -#: js/files.js:879 templates/index.php:82 -msgid "Modified" -msgstr "" - -#: js/files.js:898 -msgid "1 folder" -msgstr "" - -#: js/files.js:900 -msgid "{count} folders" -msgstr "" - -#: js/files.js:908 -msgid "1 file" -msgstr "" - -#: js/files.js:910 -msgid "{count} files" -msgstr "" - -#: lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "" - -#: lib/app.php:73 -msgid "Unable to rename file" -msgstr "" - -#: lib/helper.php:11 templates/index.php:18 -msgid "Upload" -msgstr "" - -#: templates/admin.php:5 -msgid "File handling" -msgstr "" - -#: templates/admin.php:7 -msgid "Maximum upload size" -msgstr "" - -#: templates/admin.php:10 -msgid "max. possible: " -msgstr "" - -#: templates/admin.php:15 -msgid "Needed for multi-file and folder downloads." -msgstr "" - -#: templates/admin.php:17 -msgid "Enable ZIP-download" -msgstr "" - -#: templates/admin.php:20 -msgid "0 is unlimited" -msgstr "" - -#: templates/admin.php:22 -msgid "Maximum input size for ZIP files" -msgstr "" - -#: templates/admin.php:26 -msgid "Save" -msgstr "Zapisz" - -#: templates/index.php:7 -msgid "New" -msgstr "" - -#: templates/index.php:10 -msgid "Text file" -msgstr "" - -#: templates/index.php:12 -msgid "Folder" -msgstr "" - -#: templates/index.php:14 -msgid "From link" -msgstr "" - -#: templates/index.php:42 -msgid "Deleted files" -msgstr "" - -#: templates/index.php:48 -msgid "Cancel upload" -msgstr "" - -#: templates/index.php:54 -msgid "You don’t have write permissions here." -msgstr "" - -#: templates/index.php:61 -msgid "Nothing in here. Upload something!" -msgstr "" - -#: templates/index.php:75 -msgid "Download" -msgstr "" - -#: templates/index.php:87 templates/index.php:88 -msgid "Unshare" -msgstr "" - -#: templates/index.php:107 -msgid "Upload too large" -msgstr "" - -#: templates/index.php:109 -msgid "" -"The files you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "" - -#: templates/index.php:114 -msgid "Files are being scanned, please wait." -msgstr "" - -#: templates/index.php:117 -msgid "Current scanning" -msgstr "" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/pl_PL/files_encryption.po b/l10n/pl_PL/files_encryption.po deleted file mode 100644 index 6b66a61ef66..00000000000 --- a/l10n/pl_PL/files_encryption.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-30 02:27+0200\n" -"PO-Revision-Date: 2013-05-30 00:27+0000\n" -"Last-Translator: I Robot \n" -"Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: ajax/adminrecovery.php:29 -msgid "Recovery key successfully enabled" -msgstr "" - -#: ajax/adminrecovery.php:34 -msgid "" -"Could not enable recovery key. Please check your recovery key password!" -msgstr "" - -#: ajax/adminrecovery.php:48 -msgid "Recovery key successfully disabled" -msgstr "" - -#: ajax/adminrecovery.php:53 -msgid "" -"Could not disable recovery key. Please check your recovery key password!" -msgstr "" - -#: ajax/changeRecoveryPassword.php:49 -msgid "Password successfully changed." -msgstr "" - -#: ajax/changeRecoveryPassword.php:51 -msgid "Could not change the password. Maybe the old password was not correct." -msgstr "" - -#: js/settings-admin.js:11 -msgid "Saving..." -msgstr "" - -#: templates/settings-admin.php:5 templates/settings-personal.php:4 -msgid "Encryption" -msgstr "" - -#: templates/settings-admin.php:9 -msgid "" -"Enable encryption passwords recovery key (allow sharing to recovery key):" -msgstr "" - -#: templates/settings-admin.php:13 -msgid "Recovery account password" -msgstr "" - -#: templates/settings-admin.php:20 templates/settings-personal.php:18 -msgid "Enabled" -msgstr "" - -#: templates/settings-admin.php:28 templates/settings-personal.php:26 -msgid "Disabled" -msgstr "" - -#: templates/settings-admin.php:32 -msgid "Change encryption passwords recovery key:" -msgstr "" - -#: templates/settings-admin.php:39 -msgid "Old Recovery account password" -msgstr "" - -#: templates/settings-admin.php:46 -msgid "New Recovery account password" -msgstr "" - -#: templates/settings-admin.php:51 -msgid "Change Password" -msgstr "" - -#: templates/settings-personal.php:9 -msgid "Enable password recovery by sharing all files with your administrator:" -msgstr "" - -#: templates/settings-personal.php:11 -msgid "" -"Enabling this option will allow you to reobtain access to your encrypted " -"files if your password is lost" -msgstr "" - -#: templates/settings-personal.php:27 -msgid "File recovery settings updated" -msgstr "" - -#: templates/settings-personal.php:28 -msgid "Could not update file recovery" -msgstr "" diff --git a/l10n/pl_PL/files_external.po b/l10n/pl_PL/files_external.po deleted file mode 100644 index be11b7a0268..00000000000 --- a/l10n/pl_PL/files_external.po +++ /dev/null @@ -1,123 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-04-26 08:01+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 -msgid "Access granted" -msgstr "" - -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 -msgid "Error configuring Dropbox storage" -msgstr "" - -#: js/dropbox.js:65 js/google.js:66 -msgid "Grant access" -msgstr "" - -#: js/dropbox.js:101 -msgid "Please provide a valid Dropbox app key and secret." -msgstr "" - -#: js/google.js:36 js/google.js:93 -msgid "Error configuring Google Drive storage" -msgstr "" - -#: lib/config.php:431 -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:434 -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:437 -msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." -msgstr "" - -#: templates/settings.php:3 -msgid "External Storage" -msgstr "" - -#: templates/settings.php:9 templates/settings.php:28 -msgid "Folder name" -msgstr "" - -#: templates/settings.php:10 -msgid "External storage" -msgstr "" - -#: templates/settings.php:11 -msgid "Configuration" -msgstr "" - -#: templates/settings.php:12 -msgid "Options" -msgstr "" - -#: templates/settings.php:13 -msgid "Applicable" -msgstr "" - -#: templates/settings.php:33 -msgid "Add storage" -msgstr "" - -#: templates/settings.php:90 -msgid "None set" -msgstr "" - -#: templates/settings.php:91 -msgid "All Users" -msgstr "" - -#: templates/settings.php:92 -msgid "Groups" -msgstr "" - -#: templates/settings.php:100 -msgid "Users" -msgstr "" - -#: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 -msgid "Delete" -msgstr "" - -#: templates/settings.php:129 -msgid "Enable User External Storage" -msgstr "" - -#: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "" - -#: templates/settings.php:141 -msgid "SSL root certificates" -msgstr "" - -#: templates/settings.php:159 -msgid "Import Root Certificate" -msgstr "" diff --git a/l10n/pl_PL/files_sharing.po b/l10n/pl_PL/files_sharing.po deleted file mode 100644 index c8bd08a2eae..00000000000 --- a/l10n/pl_PL/files_sharing.po +++ /dev/null @@ -1,48 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-04-26 08:01+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: templates/authenticate.php:4 -msgid "Password" -msgstr "" - -#: templates/authenticate.php:6 -msgid "Submit" -msgstr "" - -#: templates/public.php:10 -#, php-format -msgid "%s shared the folder %s with you" -msgstr "" - -#: templates/public.php:13 -#, php-format -msgid "%s shared the file %s with you" -msgstr "" - -#: templates/public.php:19 templates/public.php:43 -msgid "Download" -msgstr "" - -#: templates/public.php:40 -msgid "No preview available for" -msgstr "" - -#: templates/public.php:50 -msgid "web services under your control" -msgstr "" diff --git a/l10n/pl_PL/files_trashbin.po b/l10n/pl_PL/files_trashbin.po deleted file mode 100644 index e6ecf010e77..00000000000 --- a/l10n/pl_PL/files_trashbin.po +++ /dev/null @@ -1,84 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-04-26 08:01+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: ajax/delete.php:42 -#, php-format -msgid "Couldn't delete %s permanently" -msgstr "" - -#: ajax/undelete.php:42 -#, php-format -msgid "Couldn't restore %s" -msgstr "" - -#: js/trash.js:7 js/trash.js:96 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 -msgid "Error" -msgstr "" - -#: js/trash.js:34 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:121 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:174 templates/index.php:17 -msgid "Name" -msgstr "" - -#: js/trash.js:175 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:184 -msgid "1 folder" -msgstr "" - -#: js/trash.js:186 -msgid "{count} folders" -msgstr "" - -#: js/trash.js:194 -msgid "1 file" -msgstr "" - -#: js/trash.js:196 -msgid "{count} files" -msgstr "" - -#: templates/index.php:9 -msgid "Nothing in here. Your trash bin is empty!" -msgstr "" - -#: templates/index.php:20 templates/index.php:22 -msgid "Restore" -msgstr "" - -#: templates/index.php:30 templates/index.php:31 -msgid "Delete" -msgstr "" - -#: templates/part.breadcrumb.php:9 -msgid "Deleted Files" -msgstr "" diff --git a/l10n/pl_PL/files_versions.po b/l10n/pl_PL/files_versions.po deleted file mode 100644 index d6ce265c2af..00000000000 --- a/l10n/pl_PL/files_versions.po +++ /dev/null @@ -1,57 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-04-26 08:01+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: ajax/rollbackVersion.php:15 -#, php-format -msgid "Could not revert: %s" -msgstr "" - -#: history.php:40 -msgid "success" -msgstr "" - -#: history.php:42 -#, php-format -msgid "File %s was reverted to version %s" -msgstr "" - -#: history.php:49 -msgid "failure" -msgstr "" - -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" -msgstr "" - -#: history.php:69 -msgid "No old versions available" -msgstr "" - -#: history.php:74 -msgid "No path specified" -msgstr "" - -#: js/versions.js:6 -msgid "Versions" -msgstr "" - -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "" diff --git a/l10n/pl_PL/lib.po b/l10n/pl_PL/lib.po deleted file mode 100644 index e91de0bce1e..00000000000 --- a/l10n/pl_PL/lib.po +++ /dev/null @@ -1,245 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-04 02:29+0200\n" -"PO-Revision-Date: 2013-06-03 00:32+0000\n" -"Last-Translator: I Robot \n" -"Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: app.php:357 -msgid "Help" -msgstr "" - -#: app.php:370 -msgid "Personal" -msgstr "" - -#: app.php:381 -msgid "Settings" -msgstr "Ustawienia" - -#: app.php:393 -msgid "Users" -msgstr "" - -#: app.php:406 -msgid "Apps" -msgstr "" - -#: app.php:414 -msgid "Admin" -msgstr "" - -#: files.php:210 -msgid "ZIP download is turned off." -msgstr "" - -#: files.php:211 -msgid "Files need to be downloaded one by one." -msgstr "" - -#: files.php:212 files.php:245 -msgid "Back to Files" -msgstr "" - -#: files.php:242 -msgid "Selected files too large to generate zip file." -msgstr "" - -#: helper.php:236 -msgid "couldn't be determined" -msgstr "" - -#: json.php:28 -msgid "Application is not enabled" -msgstr "" - -#: json.php:39 json.php:62 json.php:73 -msgid "Authentication error" -msgstr "" - -#: json.php:51 -msgid "Token expired. Please reload page." -msgstr "" - -#: search/provider/file.php:17 search/provider/file.php:35 -msgid "Files" -msgstr "" - -#: search/provider/file.php:26 search/provider/file.php:33 -msgid "Text" -msgstr "" - -#: search/provider/file.php:29 -msgid "Images" -msgstr "" - -#: setup.php:34 -msgid "Set an admin username." -msgstr "" - -#: setup.php:37 -msgid "Set an admin password." -msgstr "" - -#: setup.php:55 -#, php-format -msgid "%s enter the database username." -msgstr "" - -#: setup.php:58 -#, php-format -msgid "%s enter the database name." -msgstr "" - -#: setup.php:61 -#, php-format -msgid "%s you may not use dots in the database name" -msgstr "" - -#: setup.php:64 -#, php-format -msgid "%s set the database host." -msgstr "" - -#: setup.php:132 setup.php:329 setup.php:374 -msgid "PostgreSQL username and/or password not valid" -msgstr "" - -#: setup.php:133 setup.php:238 -msgid "You need to enter either an existing account or the administrator." -msgstr "" - -#: setup.php:155 -msgid "Oracle connection could not be established" -msgstr "" - -#: setup.php:237 -msgid "MySQL username and/or password not valid" -msgstr "" - -#: setup.php:291 setup.php:395 setup.php:404 setup.php:422 setup.php:432 -#: setup.php:441 setup.php:474 setup.php:540 setup.php:566 setup.php:573 -#: setup.php:584 setup.php:591 setup.php:600 setup.php:608 setup.php:617 -#: setup.php:623 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "" - -#: setup.php:292 setup.php:396 setup.php:405 setup.php:423 setup.php:433 -#: setup.php:442 setup.php:475 setup.php:541 setup.php:567 setup.php:574 -#: setup.php:585 setup.php:601 setup.php:609 setup.php:618 -#, php-format -msgid "Offending command was: \"%s\"" -msgstr "" - -#: setup.php:308 -#, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "" - -#: setup.php:309 -msgid "Drop this user from MySQL" -msgstr "" - -#: setup.php:314 -#, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "" - -#: setup.php:315 -msgid "Drop this user from MySQL." -msgstr "" - -#: setup.php:466 setup.php:533 -msgid "Oracle username and/or password not valid" -msgstr "" - -#: setup.php:592 setup.php:624 -#, php-format -msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "" - -#: setup.php:644 -#, php-format -msgid "MS SQL username and/or password not valid: %s" -msgstr "" - -#: setup.php:867 -msgid "" -"Your web server is not yet properly setup to allow files synchronization " -"because the WebDAV interface seems to be broken." -msgstr "" - -#: setup.php:868 -#, php-format -msgid "Please double check the installation guides." -msgstr "" - -#: template.php:113 -msgid "seconds ago" -msgstr "" - -#: template.php:114 -msgid "1 minute ago" -msgstr "" - -#: template.php:115 -#, php-format -msgid "%d minutes ago" -msgstr "" - -#: template.php:116 -msgid "1 hour ago" -msgstr "" - -#: template.php:117 -#, php-format -msgid "%d hours ago" -msgstr "" - -#: template.php:118 -msgid "today" -msgstr "" - -#: template.php:119 -msgid "yesterday" -msgstr "" - -#: template.php:120 -#, php-format -msgid "%d days ago" -msgstr "" - -#: template.php:121 -msgid "last month" -msgstr "" - -#: template.php:122 -#, php-format -msgid "%d months ago" -msgstr "" - -#: template.php:123 -msgid "last year" -msgstr "" - -#: template.php:124 -msgid "years ago" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/pl_PL/settings.po b/l10n/pl_PL/settings.po deleted file mode 100644 index 68a0e23721f..00000000000 --- a/l10n/pl_PL/settings.po +++ /dev/null @@ -1,496 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-03 02:27+0200\n" -"PO-Revision-Date: 2013-06-02 23:17+0000\n" -"Last-Translator: I Robot \n" -"Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: ajax/apps/ocs.php:20 -msgid "Unable to load list from App Store" -msgstr "" - -#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 -msgid "Authentication error" -msgstr "" - -#: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." -msgstr "" - -#: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "" - -#: ajax/creategroup.php:10 -msgid "Group already exists" -msgstr "" - -#: ajax/creategroup.php:19 -msgid "Unable to add group" -msgstr "" - -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "" - -#: ajax/lostpassword.php:12 -msgid "Email saved" -msgstr "" - -#: ajax/lostpassword.php:14 -msgid "Invalid email" -msgstr "" - -#: ajax/removegroup.php:13 -msgid "Unable to delete group" -msgstr "" - -#: ajax/removeuser.php:24 -msgid "Unable to delete user" -msgstr "" - -#: ajax/setlanguage.php:15 -msgid "Language changed" -msgstr "" - -#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "" - -#: ajax/togglegroups.php:12 -msgid "Admins can't remove themself from the admin group" -msgstr "" - -#: ajax/togglegroups.php:30 -#, php-format -msgid "Unable to add user to group %s" -msgstr "" - -#: ajax/togglegroups.php:36 -#, php-format -msgid "Unable to remove user from group %s" -msgstr "" - -#: ajax/updateapp.php:14 -msgid "Couldn't update app." -msgstr "" - -#: js/apps.js:30 -msgid "Update to {appversion}" -msgstr "" - -#: js/apps.js:36 js/apps.js:76 -msgid "Disable" -msgstr "" - -#: js/apps.js:36 js/apps.js:64 js/apps.js:83 -msgid "Enable" -msgstr "" - -#: js/apps.js:55 -msgid "Please wait...." -msgstr "" - -#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 -msgid "Error" -msgstr "" - -#: js/apps.js:90 -msgid "Updating...." -msgstr "" - -#: js/apps.js:93 -msgid "Error while updating app" -msgstr "" - -#: js/apps.js:96 -msgid "Updated" -msgstr "" - -#: js/personal.js:118 -msgid "Saving..." -msgstr "" - -#: js/users.js:47 -msgid "deleted" -msgstr "" - -#: js/users.js:47 -msgid "undo" -msgstr "" - -#: js/users.js:79 -msgid "Unable to remove user" -msgstr "" - -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 -msgid "Groups" -msgstr "" - -#: js/users.js:95 templates/users.php:85 templates/users.php:120 -msgid "Group Admin" -msgstr "" - -#: js/users.js:115 templates/users.php:160 -msgid "Delete" -msgstr "" - -#: js/users.js:269 -msgid "add group" -msgstr "" - -#: js/users.js:428 -msgid "A valid username must be provided" -msgstr "" - -#: js/users.js:429 js/users.js:435 js/users.js:450 -msgid "Error creating user" -msgstr "" - -#: js/users.js:434 -msgid "A valid password must be provided" -msgstr "" - -#: personal.php:35 personal.php:36 -msgid "__language_name__" -msgstr "" - -#: templates/admin.php:15 -msgid "Security Warning" -msgstr "" - -#: templates/admin.php:18 -msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "" - -#: templates/admin.php:29 -msgid "Setup Warning" -msgstr "" - -#: templates/admin.php:32 -msgid "" -"Your web server is not yet properly setup to allow files synchronization " -"because the WebDAV interface seems to be broken." -msgstr "" - -#: templates/admin.php:33 -#, php-format -msgid "Please double check the installation guides." -msgstr "" - -#: templates/admin.php:44 -msgid "Module 'fileinfo' missing" -msgstr "" - -#: templates/admin.php:47 -msgid "" -"The PHP module 'fileinfo' is missing. We strongly recommend to enable this " -"module to get best results with mime-type detection." -msgstr "" - -#: templates/admin.php:58 -msgid "Locale not working" -msgstr "" - -#: templates/admin.php:63 -#, php-format -msgid "" -"This ownCloud server can't set system locale to %s. This means that there " -"might be problems with certain characters in file names. We strongly suggest" -" to install the required packages on your system to support %s." -msgstr "" - -#: templates/admin.php:75 -msgid "Internet connection not working" -msgstr "" - -#: templates/admin.php:78 -msgid "" -"This ownCloud 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" -" of ownCloud." -msgstr "" - -#: templates/admin.php:92 -msgid "Cron" -msgstr "" - -#: templates/admin.php:101 -msgid "Execute one task with each page loaded" -msgstr "" - -#: templates/admin.php:111 -msgid "" -"cron.php is registered at a webcron service. Call the cron.php page in the " -"owncloud root once a minute over http." -msgstr "" - -#: templates/admin.php:121 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." -msgstr "" - -#: templates/admin.php:128 -msgid "Sharing" -msgstr "" - -#: templates/admin.php:134 -msgid "Enable Share API" -msgstr "" - -#: templates/admin.php:135 -msgid "Allow apps to use the Share API" -msgstr "" - -#: templates/admin.php:142 -msgid "Allow links" -msgstr "" - -#: templates/admin.php:143 -msgid "Allow users to share items to the public with links" -msgstr "" - -#: templates/admin.php:150 -msgid "Allow resharing" -msgstr "" - -#: templates/admin.php:151 -msgid "Allow users to share items shared with them again" -msgstr "" - -#: templates/admin.php:158 -msgid "Allow users to share with anyone" -msgstr "" - -#: templates/admin.php:161 -msgid "Allow users to only share with users in their groups" -msgstr "" - -#: templates/admin.php:168 -msgid "Security" -msgstr "" - -#: templates/admin.php:181 -msgid "Enforce HTTPS" -msgstr "" - -#: templates/admin.php:182 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "" - -#: templates/admin.php:185 -msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." -msgstr "" - -#: templates/admin.php:195 -msgid "Log" -msgstr "" - -#: templates/admin.php:196 -msgid "Log level" -msgstr "" - -#: templates/admin.php:227 -msgid "More" -msgstr "" - -#: templates/admin.php:228 -msgid "Less" -msgstr "" - -#: templates/admin.php:235 templates/personal.php:111 -msgid "Version" -msgstr "" - -#: templates/admin.php:237 templates/personal.php:114 -msgid "" -"Developed by the ownCloud community, the source code is " -"licensed under the AGPL." -msgstr "" - -#: templates/apps.php:11 -msgid "Add your App" -msgstr "" - -#: templates/apps.php:12 -msgid "More Apps" -msgstr "" - -#: templates/apps.php:28 -msgid "Select an App" -msgstr "" - -#: templates/apps.php:34 -msgid "See application page at apps.owncloud.com" -msgstr "" - -#: templates/apps.php:36 -msgid "-licensed by " -msgstr "" - -#: templates/apps.php:38 -msgid "Update" -msgstr "Uaktualnienie" - -#: templates/help.php:4 -msgid "User Documentation" -msgstr "" - -#: templates/help.php:6 -msgid "Administrator Documentation" -msgstr "" - -#: templates/help.php:9 -msgid "Online Documentation" -msgstr "" - -#: templates/help.php:11 -msgid "Forum" -msgstr "" - -#: templates/help.php:14 -msgid "Bugtracker" -msgstr "" - -#: templates/help.php:17 -msgid "Commercial Support" -msgstr "" - -#: templates/personal.php:8 -#, php-format -msgid "You have used %s of the available %s" -msgstr "" - -#: templates/personal.php:15 -msgid "Get the apps to sync your files" -msgstr "" - -#: templates/personal.php:26 -msgid "Show First Run Wizard again" -msgstr "" - -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 -msgid "Password" -msgstr "" - -#: templates/personal.php:38 -msgid "Your password was changed" -msgstr "" - -#: templates/personal.php:39 -msgid "Unable to change your password" -msgstr "" - -#: templates/personal.php:40 -msgid "Current password" -msgstr "" - -#: templates/personal.php:42 -msgid "New password" -msgstr "" - -#: templates/personal.php:44 -msgid "Change password" -msgstr "" - -#: templates/personal.php:56 templates/users.php:81 -msgid "Display Name" -msgstr "" - -#: templates/personal.php:71 -msgid "Email" -msgstr "Email" - -#: templates/personal.php:73 -msgid "Your email address" -msgstr "" - -#: templates/personal.php:74 -msgid "Fill in an email address to enable password recovery" -msgstr "" - -#: templates/personal.php:83 templates/personal.php:84 -msgid "Language" -msgstr "" - -#: templates/personal.php:95 -msgid "Help translate" -msgstr "" - -#: templates/personal.php:100 -msgid "WebDAV" -msgstr "" - -#: templates/personal.php:102 -msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "" - -#: templates/users.php:21 templates/users.php:80 -msgid "Login Name" -msgstr "" - -#: templates/users.php:30 -msgid "Create" -msgstr "" - -#: templates/users.php:34 -msgid "Admin Recovery Password" -msgstr "" - -#: templates/users.php:38 -msgid "Default Storage" -msgstr "" - -#: templates/users.php:44 templates/users.php:138 -msgid "Unlimited" -msgstr "" - -#: templates/users.php:62 templates/users.php:153 -msgid "Other" -msgstr "" - -#: templates/users.php:87 -msgid "Storage" -msgstr "" - -#: templates/users.php:98 -msgid "change display name" -msgstr "" - -#: templates/users.php:102 -msgid "set new password" -msgstr "" - -#: templates/users.php:133 -msgid "Default" -msgstr "" diff --git a/l10n/pl_PL/user_ldap.po b/l10n/pl_PL/user_ldap.po deleted file mode 100644 index 242252ed0e4..00000000000 --- a/l10n/pl_PL/user_ldap.po +++ /dev/null @@ -1,419 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-04-26 08:02+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: ajax/clearMappings.php:34 -msgid "Failed to clear the mappings." -msgstr "" - -#: ajax/deleteConfiguration.php:34 -msgid "Failed to delete the server configuration" -msgstr "" - -#: ajax/testConfiguration.php:36 -msgid "The configuration is valid and the connection could be established!" -msgstr "" - -#: ajax/testConfiguration.php:39 -msgid "" -"The configuration is valid, but the Bind failed. Please check the server " -"settings and credentials." -msgstr "" - -#: ajax/testConfiguration.php:43 -msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " -"details." -msgstr "" - -#: js/settings.js:66 -msgid "Deletion failed" -msgstr "" - -#: js/settings.js:82 -msgid "Take over settings from recent server configuration?" -msgstr "" - -#: js/settings.js:83 -msgid "Keep settings?" -msgstr "" - -#: js/settings.js:97 -msgid "Cannot add server configuration" -msgstr "" - -#: js/settings.js:111 -msgid "mappings cleared" -msgstr "" - -#: js/settings.js:112 -msgid "Success" -msgstr "" - -#: js/settings.js:117 -msgid "Error" -msgstr "" - -#: js/settings.js:141 -msgid "Connection test succeeded" -msgstr "" - -#: js/settings.js:146 -msgid "Connection test failed" -msgstr "" - -#: js/settings.js:156 -msgid "Do you really want to delete the current Server Configuration?" -msgstr "" - -#: js/settings.js:157 -msgid "Confirm Deletion" -msgstr "" - -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behaviour. Please ask your system administrator to " -"disable one of them." -msgstr "" - -#: templates/settings.php:12 -msgid "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." -msgstr "" - -#: templates/settings.php:16 -msgid "Server configuration" -msgstr "" - -#: templates/settings.php:32 -msgid "Add Server Configuration" -msgstr "" - -#: templates/settings.php:37 -msgid "Host" -msgstr "" - -#: templates/settings.php:39 -msgid "" -"You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "" - -#: templates/settings.php:40 -msgid "Base DN" -msgstr "" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "" - -#: templates/settings.php:44 -msgid "User DN" -msgstr "" - -#: templates/settings.php:46 -msgid "" -"The DN of the client user with which the bind shall be done, e.g. " -"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " -"empty." -msgstr "" - -#: templates/settings.php:47 -msgid "Password" -msgstr "" - -#: templates/settings.php:50 -msgid "For anonymous access, leave DN and Password empty." -msgstr "" - -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "" - -#: templates/settings.php:54 -#, php-format -msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action." -msgstr "" - -#: templates/settings.php:55 -#, php-format -msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "" - -#: templates/settings.php:56 -msgid "User List Filter" -msgstr "" - -#: templates/settings.php:59 -msgid "Defines the filter to apply, when retrieving users." -msgstr "" - -#: templates/settings.php:60 -msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "" - -#: templates/settings.php:61 -msgid "Group Filter" -msgstr "" - -#: templates/settings.php:64 -msgid "Defines the filter to apply, when retrieving groups." -msgstr "" - -#: templates/settings.php:65 -msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "" - -#: templates/settings.php:69 -msgid "Connection Settings" -msgstr "" - -#: templates/settings.php:71 -msgid "Configuration Active" -msgstr "" - -#: templates/settings.php:71 -msgid "When unchecked, this configuration will be skipped." -msgstr "" - -#: templates/settings.php:72 -msgid "Port" -msgstr "" - -#: templates/settings.php:73 -msgid "Backup (Replica) Host" -msgstr "" - -#: templates/settings.php:73 -msgid "" -"Give an optional backup host. It must be a replica of the main LDAP/AD " -"server." -msgstr "" - -#: templates/settings.php:74 -msgid "Backup (Replica) Port" -msgstr "" - -#: templates/settings.php:75 -msgid "Disable Main Server" -msgstr "" - -#: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "" - -#: templates/settings.php:76 -msgid "Use TLS" -msgstr "" - -#: templates/settings.php:76 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:77 -msgid "Case insensitve LDAP server (Windows)" -msgstr "" - -#: templates/settings.php:78 -msgid "Turn off SSL certificate validation." -msgstr "" - -#: templates/settings.php:78 -msgid "" -"If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." -msgstr "" - -#: templates/settings.php:78 -msgid "Not recommended, use for testing only." -msgstr "" - -#: templates/settings.php:79 -msgid "Cache Time-To-Live" -msgstr "" - -#: templates/settings.php:79 -msgid "in seconds. A change empties the cache." -msgstr "" - -#: templates/settings.php:81 -msgid "Directory Settings" -msgstr "" - -#: templates/settings.php:83 -msgid "User Display Name Field" -msgstr "" - -#: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "" - -#: templates/settings.php:84 -msgid "Base User Tree" -msgstr "" - -#: templates/settings.php:84 -msgid "One User Base DN per line" -msgstr "" - -#: templates/settings.php:85 -msgid "User Search Attributes" -msgstr "" - -#: templates/settings.php:85 templates/settings.php:88 -msgid "Optional; one attribute per line" -msgstr "" - -#: templates/settings.php:86 -msgid "Group Display Name Field" -msgstr "" - -#: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "" - -#: templates/settings.php:87 -msgid "Base Group Tree" -msgstr "" - -#: templates/settings.php:87 -msgid "One Group Base DN per line" -msgstr "" - -#: templates/settings.php:88 -msgid "Group Search Attributes" -msgstr "" - -#: templates/settings.php:89 -msgid "Group-Member association" -msgstr "" - -#: templates/settings.php:91 -msgid "Special Attributes" -msgstr "" - -#: templates/settings.php:93 -msgid "Quota Field" -msgstr "" - -#: templates/settings.php:94 -msgid "Quota Default" -msgstr "" - -#: templates/settings.php:94 -msgid "in bytes" -msgstr "" - -#: templates/settings.php:95 -msgid "Email Field" -msgstr "" - -#: templates/settings.php:96 -msgid "User Home Folder Naming Rule" -msgstr "" - -#: templates/settings.php:96 -msgid "" -"Leave empty for user name (default). Otherwise, specify an LDAP/AD " -"attribute." -msgstr "" - -#: templates/settings.php:101 -msgid "Internal Username" -msgstr "" - -#: templates/settings.php:102 -msgid "" -"By default the internal username will be created from the UUID attribute. It" -" makes sure that the username is unique and characters do not need to be " -"converted. The internal username has the restriction that only these " -"characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced " -"with their ASCII correspondence or simply omitted. On collisions a number " -"will be added/increased. The internal username is used to identify a user " -"internally. It is also the default name for the user home folder in " -"ownCloud. It is also a port of remote URLs, for instance for all *DAV " -"services. With this setting, the default behaviour can be overriden. To " -"achieve a similar behaviour as before ownCloud 5 enter the user display name" -" attribute in the following field. Leave it empty for default behaviour. " -"Changes will have effect only on newly mapped (added) LDAP users." -msgstr "" - -#: templates/settings.php:103 -msgid "Internal Username Attribute:" -msgstr "" - -#: templates/settings.php:104 -msgid "Override UUID detection" -msgstr "" - -#: templates/settings.php:105 -msgid "" -"By default, ownCloud autodetects the UUID attribute. The UUID attribute is " -"used to doubtlessly identify LDAP users and groups. Also, the internal " -"username will be created based on the UUID, if not specified otherwise " -"above. You can override the setting and pass an attribute of your choice. " -"You must make sure that the attribute of your choice can be fetched for both" -" users and groups and it is unique. Leave it empty for default behaviour. " -"Changes will have effect only on newly mapped (added) LDAP users and groups." -msgstr "" - -#: templates/settings.php:106 -msgid "UUID Attribute:" -msgstr "" - -#: templates/settings.php:107 -msgid "Username-LDAP User Mapping" -msgstr "" - -#: templates/settings.php:108 -msgid "" -"ownCloud uses usernames to store and assign (meta) data. In order to " -"precisely identify and recognize users, each LDAP user will have a internal " -"username. This requires a mapping from ownCloud username to LDAP user. The " -"created username is mapped to the UUID of the LDAP user. Additionally the DN" -" is cached as well to reduce LDAP interaction, but it is not used for " -"identification. If the DN changes, the changes will be found by ownCloud. " -"The internal ownCloud name is used all over in ownCloud. Clearing the " -"Mappings will have leftovers everywhere. Clearing the Mappings is not " -"configuration sensitive, it affects all LDAP configurations! Do never clear " -"the mappings in a production environment. Only clear mappings in a testing " -"or experimental stage." -msgstr "" - -#: templates/settings.php:109 -msgid "Clear Username-LDAP User Mapping" -msgstr "" - -#: templates/settings.php:109 -msgid "Clear Groupname-LDAP Group Mapping" -msgstr "" - -#: templates/settings.php:111 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:111 -msgid "Help" -msgstr "" diff --git a/l10n/pl_PL/user_webdavauth.po b/l10n/pl_PL/user_webdavauth.po deleted file mode 100644 index 2ac39a46211..00000000000 --- a/l10n/pl_PL/user_webdavauth.po +++ /dev/null @@ -1,33 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2012-11-09 09:06+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: templates/settings.php:3 -msgid "WebDAV Authentication" -msgstr "" - -#: templates/settings.php:4 -msgid "URL: http://" -msgstr "" - -#: templates/settings.php:7 -msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " -"response and will interpret the HTTP statuscodes 401 and 403 as invalid " -"credentials, and all other responses as valid credentials." -msgstr "" diff --git a/lib/l10n/pl_PL.php b/lib/l10n/pl_PL.php deleted file mode 100644 index 5494e3dab25..00000000000 --- a/lib/l10n/pl_PL.php +++ /dev/null @@ -1,5 +0,0 @@ - "Ustawienia" -); -$PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/settings/l10n/pl_PL.php b/settings/l10n/pl_PL.php deleted file mode 100644 index 91ae517f236..00000000000 --- a/settings/l10n/pl_PL.php +++ /dev/null @@ -1,6 +0,0 @@ - "Uaktualnienie", -"Email" => "Email" -); -$PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; -- GitLab From 8e34812393d730da9a161d1724eba818de61076c Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Mon, 31 Mar 2014 18:09:46 +0200 Subject: [PATCH 164/296] always encrypt files to owner --- apps/files_encryption/lib/stream.php | 2 +- apps/files_encryption/lib/util.php | 16 +++++++--------- lib/public/share.php | 6 +++--- 3 files changed, 11 insertions(+), 13 deletions(-) diff --git a/apps/files_encryption/lib/stream.php b/apps/files_encryption/lib/stream.php index 58ac03373a7..66871945882 100644 --- a/apps/files_encryption/lib/stream.php +++ b/apps/files_encryption/lib/stream.php @@ -545,7 +545,7 @@ class Stream { $util = new Util($this->rootView, $this->userId); // Get all users sharing the file includes current user - $uniqueUserIds = $util->getSharingUsersArray($sharingEnabled, $this->relPath, $this->userId); + $uniqueUserIds = $util->getSharingUsersArray($sharingEnabled, $this->relPath); $checkedUserIds = $util->filterShareReadyUsers($uniqueUserIds); // Fetch public keys for all sharing users diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index 3db5a423478..4bf987d9255 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -1124,8 +1124,9 @@ class Util { * @brief Find, sanitise and format users sharing a file * @note This wraps other methods into a portable bundle * @param boolean $sharingEnabled + * @param string $filePath path relativ to current users files folder */ - public function getSharingUsersArray($sharingEnabled, $filePath, $currentUserId = false) { + public function getSharingUsersArray($sharingEnabled, $filePath) { $appConfig = \OC::$server->getAppConfig(); @@ -1144,12 +1145,14 @@ class Util { $ownerPath = \OCA\Encryption\Helper::stripPartialFileExtension($ownerPath); - $userIds = array(); + // always add owner to the list of users with access to the file + $userIds = array($owner); + if ($sharingEnabled) { // Find out who, if anyone, is sharing the file - $result = \OCP\Share::getUsersSharingFile($ownerPath, $owner, true); - $userIds = $result['users']; + $result = \OCP\Share::getUsersSharingFile($ownerPath, $owner); + $userIds = \array_merge($userIds, $result['users']); if ($result['public']) { $userIds[] = $this->publicShareKeyId; } @@ -1165,11 +1168,6 @@ class Util { $userIds[] = $recoveryKeyId; } - // add current user if given - if ($currentUserId !== false) { - $userIds[] = $currentUserId; - } - // check if it is a group mount if (\OCP\App::isEnabled("files_external")) { $mount = \OC_Mount_Config::getSystemMountPoints(); diff --git a/lib/public/share.php b/lib/public/share.php index a08134b3837..564839e86b6 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -63,9 +63,9 @@ class Share extends \OC\Share\Constants { /** * Find which users can access a shared item - * @param $path to the file - * @param $user owner of the file - * @param include owner to the list of users with access to the file + * @param string $path to the file + * @param string $user owner of the file + * @param bool $includeOwner include owner to the list of users with access to the file * @return array * @note $path needs to be relative to user data dir, e.g. 'file.txt' * not '/admin/data/file.txt' -- GitLab From c578ab68fe133abdd1519810be642c4b27aed6c3 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Mon, 31 Mar 2014 18:24:53 +0200 Subject: [PATCH 165/296] there is no need to re-calculate the shares after a touch --- apps/files_encryption/lib/proxy.php | 45 ----------------------------- 1 file changed, 45 deletions(-) diff --git a/apps/files_encryption/lib/proxy.php b/apps/files_encryption/lib/proxy.php index 6549273c8f1..3f59a99eea9 100644 --- a/apps/files_encryption/lib/proxy.php +++ b/apps/files_encryption/lib/proxy.php @@ -206,16 +206,6 @@ class Proxy extends \OC_FileProxy { } - /** - * @param $path - * @return bool - */ - public function postTouch($path) { - $this->handleFile($path); - - return true; - } - /** * @brief remember initial fopen mode because sometimes it gets changed during the request * @param string $path path @@ -404,39 +394,4 @@ class Proxy extends \OC_FileProxy { return $size; } - /** - * @param $path - */ - public function handleFile($path) { - - // Disable encryption proxy to prevent recursive calls - $proxyStatus = \OC_FileProxy::$enabled; - \OC_FileProxy::$enabled = false; - - $view = new \OC_FilesystemView('/'); - $session = new \OCA\Encryption\Session($view); - $userId = Helper::getUser($path); - $util = new Util($view, $userId); - - // split the path parts - $pathParts = explode('/', $path); - - // get relative path - $relativePath = \OCA\Encryption\Helper::stripUserFilesPath($path); - - // only if file is on 'files' folder fix file size and sharing - if (isset($pathParts[2]) && $pathParts[2] === 'files' && $util->fixFileSize($path)) { - - // get sharing app state - $sharingEnabled = \OCP\Share::isEnabled(); - - // get users - $usersSharing = $util->getSharingUsersArray($sharingEnabled, $relativePath); - - // update sharing-keys - $util->setSharedFileKeyfiles($session, $usersSharing, $relativePath); - } - - \OC_FileProxy::$enabled = $proxyStatus; - } } -- GitLab From 7a4a836abe2cce89df92648a39cd9e2cd3fae1de Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Tue, 1 Apr 2014 01:56:15 -0400 Subject: [PATCH 166/296] [tx-robot] updated from transifex --- apps/files/l10n/el.php | 3 ++ apps/files_encryption/l10n/el.php | 1 + apps/files_external/l10n/el.php | 1 + apps/files_external/l10n/sk_SK.php | 1 + apps/files_sharing/l10n/sk_SK.php | 1 + apps/user_ldap/l10n/el.php | 4 ++ core/l10n/el.php | 7 ++++ l10n/el/core.po | 59 +++++++++++++++-------------- l10n/el/files.po | 35 ++++++++--------- l10n/el/files_encryption.po | 9 +++-- l10n/el/files_external.po | 37 +++++++++--------- l10n/el/lib.po | 25 ++++++------ l10n/el/settings.po | 35 ++++++++--------- l10n/el/user_ldap.po | 15 ++++---- l10n/sk_SK/core.po | 44 ++++++++++----------- l10n/sk_SK/files_external.po | 34 ++++++++--------- l10n/sk_SK/files_sharing.po | 10 ++--- l10n/sk_SK/lib.po | 42 ++++++++++---------- l10n/sk_SK/settings.po | 38 +++++++++---------- l10n/templates/core.pot | 2 +- 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 +- lib/l10n/el.php | 2 + lib/l10n/sk_SK.php | 1 + settings/l10n/el.php | 6 +++ settings/l10n/sk_SK.php | 8 ++++ 35 files changed, 242 insertions(+), 200 deletions(-) diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index 9144cf3ea10..c71aa9a35ab 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -5,6 +5,7 @@ $TRANSLATIONS = array( "File name cannot be empty." => "Το όνομα αρχείου δεν μπορεί να είναι κενό.", "\"%s\" is an invalid file name." => "Το \"%s\" είναι ένα μη έγκυρο όνομα αρχείου.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Μη έγκυρο όνομα, '\\', '/', '<', '>', ':', '\"', '|', '?' και '*' δεν επιτρέπονται.", +"The target folder has been moved or deleted." => "Ο φάκελος προορισμού έχει μετακινηθεί ή διαγραφεί.", "The name %s is already used in the folder %s. Please choose a different name." => "Το όνομα %s χρησιμοποιείτε ήδη στον φάκελο %s. Παρακαλώ επιλέξτε ένα άλλο όνομα.", "Not a valid source" => "Μη έγκυρη πηγή", "Server is not allowed to open URLs, please check the server configuration" => "Ο διακομιστής δεν επιτρέπεται να ανοίγει URL, παρακαλώ ελέγξτε τις ρυθμίσεις του διακομιστή", @@ -28,6 +29,8 @@ $TRANSLATIONS = array( "Invalid directory." => "Μη έγκυρος φάκελος.", "Files" => "Αρχεία", "Unable to upload {filename} as it is a directory or has 0 bytes" => "Αδυναμία φόρτωσης {filename} καθώς είναι κατάλογος αρχείων ή έχει 0 bytes", +"Total file size {size1} exceeds upload limit {size2}" => "Το συνολικό μέγεθος αρχείου {size1} υπερβαίνει το όριο μεταφόρτωσης {size2}", +"Not enough free space, you are uploading {size1} but only {size2} is left" => "Δεν υπάρχει αρκετός ελεύθερος χώρος, μεταφορτώνετε μέγεθος {size1} αλλά υπάρχει χώρος μόνο {size2}", "Upload cancelled." => "Η αποστολή ακυρώθηκε.", "Could not get result from server." => "Αδυναμία λήψης αποτελέσματος από το διακομιστή.", "File upload is in progress. Leaving the page now will cancel the upload." => "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Το κλείσιμο της σελίδας θα ακυρώσει την αποστολή.", diff --git a/apps/files_encryption/l10n/el.php b/apps/files_encryption/l10n/el.php index ad8617bc6d2..972d7d7138c 100644 --- a/apps/files_encryption/l10n/el.php +++ b/apps/files_encryption/l10n/el.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "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 extension είναι ενεργοποιήμένο και έχει ρυθμιστεί σωστά. Προς το παρόν, η εφαρμογή κρυπτογράφησης είναι απενεργοποιημένη.", "Following users are not set up for encryption:" => "Οι κάτωθι χρήστες δεν έχουν ρυθμιστεί για κρυπογράφηση:", "Initial encryption started... This can take some time. Please wait." => "Η αρχική κρυπτογράφηση άρχισε... Αυτό μπορεί να πάρει κάποια ώρα. Παρακαλώ περιμένετε.", +"Initial encryption running... Please try again later." => "Εκτέλεση αρχικής κρυπτογράφησης... Παρακαλώ προσπαθήστε αργότερα.", "Go directly to your " => "Πηγαίνε απευθείας στο ", "personal settings" => "προσωπικές ρυθμίσεις", "Encryption" => "Κρυπτογράφηση", diff --git a/apps/files_external/l10n/el.php b/apps/files_external/l10n/el.php index 4dcd93d7ac8..15f2b3b15ec 100644 --- a/apps/files_external/l10n/el.php +++ b/apps/files_external/l10n/el.php @@ -22,6 +22,7 @@ $TRANSLATIONS = array( "Users" => "Χρήστες", "Delete" => "Διαγραφή", "Enable User External Storage" => "Ενεργοποίηση Εξωτερικού Αποθηκευτικού Χώρου Χρήστη", +"Allow users to mount the following external storage" => "Χορήγηση άδειας στους χρήστες να συνδέσουν τα παρακάτω εξωτερικά μέσα αποθήκευσης", "SSL root certificates" => "Πιστοποιητικά SSL root", "Import Root Certificate" => "Εισαγωγή Πιστοποιητικού Root" ); diff --git a/apps/files_external/l10n/sk_SK.php b/apps/files_external/l10n/sk_SK.php index aa288982576..245bcc62aaa 100644 --- a/apps/files_external/l10n/sk_SK.php +++ b/apps/files_external/l10n/sk_SK.php @@ -5,6 +5,7 @@ $TRANSLATIONS = array( "Grant access" => "Povoliť prístup", "Please provide a valid Dropbox app key and secret." => "Zadajte platný kľúč aplikácie a heslo Dropbox", "Error configuring Google Drive storage" => "Chyba pri konfigurácii úložiska Google drive", +"Saved" => "Uložené", "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Upozornenie: \"smbclient\" nie je nainštalovaný. Nie je možné pripojenie oddielov CIFS/SMB. Požiadajte administrátora systému, nech ho nainštaluje.", "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." => "Upozornenie: Podpora FTP v PHP nie je povolená alebo nainštalovaná. Nie je možné pripojenie oddielov FTP. Požiadajte administrátora systému, nech ho nainštaluje.", "Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Varovanie: nie je nainštalovaná, alebo povolená, podpora Curl v PHP. Nie je možné pripojenie oddielov ownCloud, WebDAV, či GoogleDrive. Prosím požiadajte svojho administrátora systému, nech ju nainštaluje.", diff --git a/apps/files_sharing/l10n/sk_SK.php b/apps/files_sharing/l10n/sk_SK.php index 4e9856da4a7..6856c0591f4 100644 --- a/apps/files_sharing/l10n/sk_SK.php +++ b/apps/files_sharing/l10n/sk_SK.php @@ -11,6 +11,7 @@ $TRANSLATIONS = array( "sharing is disabled" => "zdieľanie je zakázané", "For more info, please ask the person who sent this link." => "Pre viac informácií kontaktujte osobu, ktorá vám poslala tento odkaz.", "shared by %s" => "Zdieľa %s", +"Download %s" => "Stiahnuť %s", "Direct link" => "Priama linka" ); $PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/apps/user_ldap/l10n/el.php b/apps/user_ldap/l10n/el.php index 1e975911953..926419d86b2 100644 --- a/apps/user_ldap/l10n/el.php +++ b/apps/user_ldap/l10n/el.php @@ -33,12 +33,14 @@ $TRANSLATIONS = array( "Save" => "Αποθήκευση", "Test Configuration" => "Δοκιμαστικες ρυθμισεις", "Help" => "Βοήθεια", +"Groups meeting these criteria are available in %s:" => "Οι ομάδες που πληρούν τα κριτήρια είναι διαθέσιμες σε %s:", "only those object classes:" => "μόνο αυτές οι κλάσεις αντικειμένων:", "only from those groups:" => "μόνο από αυτές τις ομάδες:", "Edit raw filter instead" => "Επεξεργασία πρωτογενούς φίλτρου αντί αυτού", "Raw LDAP filter" => "Πρωτογενές φίλτρο ", "The filter specifies which LDAP groups shall have access to the %s instance." => "Το φίλτρο καθορίζει ποιες ομάδες LDAP θα έχουν πρόσβαση στην εγκατάσταση %s.", "groups found" => "ομάδες βρέθηκαν", +"Users login with this attribute:" => "Οι χρήστες εισέρχονται με αυτό το χαρακτηριστικό:", "LDAP Username:" => "Όνομα χρήστη LDAP:", "LDAP Email Address:" => "Διεύθυνση ηλ. ταχυδρομείου LDAP:", "Other Attributes:" => "Άλλες Ιδιότητες:", @@ -53,6 +55,7 @@ $TRANSLATIONS = array( "For anonymous access, leave DN and Password empty." => "Για ανώνυμη πρόσβαση, αφήστε κενά τα πεδία DN και Pasword.", "One Base DN per line" => "Ένα DN Βάσης ανά γραμμή ", "You can specify Base DN for users and groups in the Advanced tab" => "Μπορείτε να καθορίσετε το Base DN για χρήστες και ομάδες από την καρτέλα Προηγμένες ρυθμίσεις", +"Limit %s access to users meeting these criteria:" => "Περιορισμός της πρόσβασης %s σε χρήστες που πληρούν τα κριτήρια:", "The filter specifies which LDAP users shall have access to the %s instance." => "Το φίλτρο καθορίζει ποιοι χρήστες LDAP θα έχουν πρόσβαση στην εγκατάσταση %s.", "users found" => "χρήστες βρέθηκαν", "Back" => "Επιστροφή", @@ -85,6 +88,7 @@ $TRANSLATIONS = array( "One Group Base DN per line" => "Μια ομαδικη Βάση DN ανά γραμμή", "Group Search Attributes" => "Ομάδα Χαρακτηριστικων Αναζήτηση", "Group-Member association" => "Group-Member association", +"Nested Groups" => "Φωλιασμένες ομάδες", "Special Attributes" => "Ειδικά Χαρακτηριστικά ", "Quota Field" => "Ποσοσταση πεδιου", "Quota Default" => "Προκαθισμενο πεδιο", diff --git a/core/l10n/el.php b/core/l10n/el.php index ed7792b7261..0ffb746fc77 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -1,5 +1,6 @@ "Η ημερομηνία λήξης είναι στο παρελθόν.", "Couldn't send mail to following users: %s " => "Αδυναμία αποστολής μηνύματος στους ακόλουθους χρήστες: %s", "Turned on maintenance mode" => "Η κατάσταση συντήρησης ενεργοποιήθηκε", "Turned off maintenance mode" => "Η κατάσταση συντήρησης απενεργοποιήθηκε", @@ -55,8 +56,10 @@ $TRANSLATIONS = array( "Continue" => "Συνέχεια", "(all selected)" => "(όλα τα επιλεγμένα)", "({count} selected)" => "({count} επιλέχθησαν)", +"Error loading file exists template" => "Σφάλμα κατά την φόρτωση του προτύπου ύπαρξης αρχείου", "Very weak password" => "Πολύ αδύναμο συνθηματικό", "Weak password" => "Αδύναμο συνθηματικό", +"So-so password" => "Μέτριο συνθηματικό", "Good password" => "Καλό συνθηματικό", "Strong password" => "Δυνατό συνθηματικό", "Shared" => "Κοινόχρηστα", @@ -119,6 +122,8 @@ $TRANSLATIONS = array( "To login page" => "Σελίδα εισόδου", "New password" => "Νέο συνθηματικό", "Reset password" => "Επαναφορά συνθηματικού", +"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Το Mac OS X δεν υποστηρίζεται και το %s δεν θα λειτουργήσει σωστά σε αυτή την πλατφόρμα. Χρησιμοποιείτε με δική σας ευθύνη!", +"For the best results, please consider using a GNU/Linux server instead." => "Για καλύτερα αποτελέσματα, παρακαλούμε εξετάστε την μετατροπή σε έναν διακομιστή GNU/Linux.", "Personal" => "Προσωπικά", "Users" => "Χρήστες", "Apps" => "Εφαρμογές", @@ -144,6 +149,7 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Ο κατάλογος δεδομένων και τα αρχεία σας είναι πιθανό προσβάσιμα από το internet γιατί δεν δουλεύει το αρχείο .htaccess.", "For information how to properly configure your server, please see the documentation." => "Για πληροφορίες πως να ρυθμίσετε ορθά τον διακομιστή σας, παρακαλώ δείτε την τεκμηρίωση.", "Create an admin account" => "Δημιουργήστε έναν λογαριασμό διαχειριστή", +"Storage & database" => "Αποθήκευση & βάση δεδομένων", "Data folder" => "Φάκελος δεδομένων", "Configure the database" => "Ρύθμιση της βάσης δεδομένων", "will be used" => "θα χρησιμοποιηθούν", @@ -166,6 +172,7 @@ $TRANSLATIONS = array( "remember" => "απομνημόνευση", "Log in" => "Είσοδος", "Alternative Logins" => "Εναλλακτικές Συνδέσεις", +"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." => "Επικοινωνήστε με το διαχειριστή του συστήματος αν αυτό το μήνυμα συνεχίζει να εμφανίζεται ή εμφανίστηκε απρόσμενα.", diff --git a/l10n/el/core.po b/l10n/el/core.po index 54906380cd8..7f52a39aed6 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -6,6 +6,7 @@ # Efstathios Iosifidis , 2013-2014 # Efstathios Iosifidis , 2013 # KAT.RAT12 , 2013 +# pe_ppe , 2014 # Teogramm , 2013 # Teogramm , 2013 # vkehayas , 2013-2014 @@ -16,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-01 01:55-0400\n" +"PO-Revision-Date: 2014-03-31 16:30+0000\n" +"Last-Translator: pe_ppe \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +27,24 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." -msgstr "" +msgstr "Η ημερομηνία λήξης είναι στο παρελθόν." -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Αδυναμία αποστολής μηνύματος στους ακόλουθους χρήστες: %s" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "Η κατάσταση συντήρησης ενεργοποιήθηκε" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "Η κατάσταση συντήρησης απενεργοποιήθηκε" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "Ενημερωμένη βάση δεδομένων" @@ -147,59 +148,59 @@ msgstr "Δεκέμβριος" msgid "Settings" msgstr "Ρυθμίσεις" -#: js/js.js:496 +#: js/js.js:543 msgid "Saving..." msgstr "Γίνεται αποθήκευση..." -#: js/js.js:995 +#: js/js.js:1103 msgid "seconds ago" msgstr "δευτερόλεπτα πριν" -#: js/js.js:996 +#: js/js.js:1104 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n λεπτό πριν" msgstr[1] "%n λεπτά πριν" -#: js/js.js:997 +#: js/js.js:1105 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n ώρα πριν" msgstr[1] "%n ώρες πριν" -#: js/js.js:998 +#: js/js.js:1106 msgid "today" msgstr "σήμερα" -#: js/js.js:999 +#: js/js.js:1107 msgid "yesterday" msgstr "χτες" -#: js/js.js:1000 +#: js/js.js:1108 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n ημέρα πριν" msgstr[1] "%n ημέρες πριν" -#: js/js.js:1001 +#: js/js.js:1109 msgid "last month" msgstr "τελευταίο μήνα" -#: js/js.js:1002 +#: js/js.js:1110 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n μήνας πριν" msgstr[1] "%n μήνες πριν" -#: js/js.js:1003 +#: js/js.js:1111 msgid "months ago" msgstr "μήνες πριν" -#: js/js.js:1004 +#: js/js.js:1112 msgid "last year" msgstr "τελευταίο χρόνο" -#: js/js.js:1005 +#: js/js.js:1113 msgid "years ago" msgstr "χρόνια πριν" @@ -265,7 +266,7 @@ msgstr "({count} επιλέχθησαν)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" -msgstr "" +msgstr "Σφάλμα κατά την φόρτωση του προτύπου ύπαρξης αρχείου" #: js/setup.js:84 msgid "Very weak password" @@ -277,7 +278,7 @@ msgstr "Αδύναμο συνθηματικό" #: js/setup.js:86 msgid "So-so password" -msgstr "" +msgstr "Μέτριο συνθηματικό" #: js/setup.js:87 msgid "Good password" @@ -542,17 +543,17 @@ msgstr "Νέο συνθηματικό" msgid "Reset password" msgstr "Επαναφορά συνθηματικού" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " -msgstr "" +msgstr "Το Mac OS X δεν υποστηρίζεται και το %s δεν θα λειτουργήσει σωστά σε αυτή την πλατφόρμα. Χρησιμοποιείτε με δική σας ευθύνη!" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." -msgstr "" +msgstr "Για καλύτερα αποτελέσματα, παρακαλούμε εξετάστε την μετατροπή σε έναν διακομιστή GNU/Linux." #: strings.php:5 msgid "Personal" @@ -674,7 +675,7 @@ msgstr "Δημιουργήστε έναν λογαριασμό διαχ #: templates/installation.php:70 msgid "Storage & database" -msgstr "" +msgstr "Αποθήκευση & βάση δεδομένων" #: templates/installation.php:77 msgid "Data folder" @@ -775,7 +776,7 @@ 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." diff --git a/l10n/el/files.po b/l10n/el/files.po index fc989942bb6..086a36cec35 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -7,14 +7,15 @@ # Efstathios Iosifidis , 2013 # gtsamis , 2013 # frerisp , 2013 +# pe_ppe , 2014 # vkehayas , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-01 01:55-0400\n" +"PO-Revision-Date: 2014-03-31 16:30+0000\n" +"Last-Translator: pe_ppe \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -50,7 +51,7 @@ msgstr "Μη έγκυρο όνομα, '\\', '/', '<', '>', ':', '\"', '|', '?' #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." -msgstr "" +msgstr "Ο φάκελος προορισμού έχει μετακινηθεί ή διαγραφεί." #: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format @@ -154,12 +155,12 @@ msgstr "Αδυναμία φόρτωσης {filename} καθώς είναι κα #: js/file-upload.js:258 msgid "Total file size {size1} exceeds upload limit {size2}" -msgstr "" +msgstr "Το συνολικό μέγεθος αρχείου {size1} υπερβαίνει το όριο μεταφόρτωσης {size2}" #: js/file-upload.js:268 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" -msgstr "" +msgstr "Δεν υπάρχει αρκετός ελεύθερος χώρος, μεταφορτώνετε μέγεθος {size1} αλλά υπάρχει χώρος μόνο {size2}" #: js/file-upload.js:340 msgid "Upload cancelled." @@ -198,15 +199,15 @@ msgstr "Αδυναμία δημιουργίας φακέλου" msgid "Error fetching URL" msgstr "Σφάλμα φόρτωσης URL" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Διαμοιρασμός" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "Μόνιμη διαγραφή" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "Μετονομασία" @@ -230,13 +231,13 @@ msgstr "αναίρεση" msgid "Error deleting file." msgstr "Σφάλμα διαγραφής αρχείου." -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:694 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n φάκελος" msgstr[1] "%n φάκελοι" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:700 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n αρχείο" @@ -283,29 +284,29 @@ msgid "" "your personal settings to decrypt your files." msgstr "Η κρυπτογράφηση απενεργοποιήθηκε, αλλά τα αρχεία σας είναι ακόμα κρυπτογραφημένα. Παρακαλούμε απενεργοποιήσετε την κρυπτογράφηση αρχείων από τις προσωπικές σας ρυθμίσεις" -#: js/files.js:379 +#: js/files.js:382 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Η λήψη προετοιμάζεται. Αυτό μπορεί να πάρει ώρα εάν τα αρχεία έχουν μεγάλο μέγεθος." -#: js/files.js:610 js/files.js:654 +#: js/files.js:613 js/files.js:657 msgid "Error moving file" msgstr "Σφάλμα κατά τη μετακίνηση του αρχείου" -#: js/files.js:610 js/files.js:654 +#: js/files.js:613 js/files.js:657 msgid "Error" msgstr "Σφάλμα" -#: js/files.js:672 templates/index.php:68 +#: js/files.js:675 templates/index.php:68 msgid "Name" msgstr "Όνομα" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:676 templates/index.php:80 msgid "Size" msgstr "Μέγεθος" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:677 templates/index.php:82 msgid "Modified" msgstr "Τροποποιήθηκε" diff --git a/l10n/el/files_encryption.po b/l10n/el/files_encryption.po index bd28873a5e1..0398e975672 100644 --- a/l10n/el/files_encryption.po +++ b/l10n/el/files_encryption.po @@ -5,6 +5,7 @@ # Translators: # Efstathios Iosifidis , 2013 # Marios Bekatoros <>, 2013 +# pe_ppe , 2014 # Teogramm , 2013 # Teogramm , 2013 # vkehayas , 2013 @@ -12,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-01 01:55-0400\n" +"PO-Revision-Date: 2014-03-31 16:30+0000\n" +"Last-Translator: pe_ppe \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -106,7 +107,7 @@ msgstr "Η αρχική κρυπτογράφηση άρχισε... Αυτό μπ #: js/detect-migration.js:25 msgid "Initial encryption running... Please try again later." -msgstr "" +msgstr "Εκτέλεση αρχικής κρυπτογράφησης... Παρακαλώ προσπαθήστε αργότερα." #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index ca669ad43ad..f2240af7932 100644 --- a/l10n/el/files_external.po +++ b/l10n/el/files_external.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# pe_ppe , 2014 # KAT.RAT12 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 17:12-0400\n" -"PO-Revision-Date: 2014-03-13 14:21+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-01 01:55-0400\n" +"PO-Revision-Date: 2014-03-31 16:30+0000\n" +"Last-Translator: pe_ppe \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -38,24 +39,24 @@ msgstr "Παρακαλούμε δώστε έγκυρο κλειδί Dropbox κα msgid "Error configuring Google Drive storage" msgstr "Σφάλμα ρυθμίζωντας αποθήκευση Google Drive " -#: js/settings.js:313 js/settings.js:320 +#: js/settings.js:318 js/settings.js:325 msgid "Saved" msgstr "Αποθηκεύτηκαν" -#: lib/config.php:512 +#: lib/config.php:654 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Προσοχή: Ο \"smbclient\" δεν εγκαταστάθηκε. Δεν είναι δυνατή η προσάρτηση CIFS/SMB. Παρακαλώ ενημερώστε τον διαχειριστή συστήματος να το εγκαταστήσει." -#: lib/config.php:516 +#: lib/config.php:658 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 "Προσοχή: Η υποστήριξη FTP στην PHP δεν ενεργοποιήθηκε ή εγκαταστάθηκε. Δεν είναι δυνατή η προσάρτηση FTP. Παρακαλώ ενημερώστε τον διαχειριστή συστήματος να το εγκαταστήσει." -#: lib/config.php:519 +#: lib/config.php:661 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -90,39 +91,39 @@ msgstr "Εφαρμόσιμο" msgid "Add storage" msgstr "Προσθηκη αποθηκευσης" -#: templates/settings.php:90 +#: templates/settings.php:93 msgid "None set" msgstr "Κανένα επιλεγμένο" -#: templates/settings.php:91 +#: templates/settings.php:94 msgid "All Users" msgstr "Όλοι οι Χρήστες" -#: templates/settings.php:92 +#: templates/settings.php:95 msgid "Groups" msgstr "Ομάδες" -#: templates/settings.php:100 +#: templates/settings.php:103 msgid "Users" msgstr "Χρήστες" -#: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:155 templates/settings.php:156 +#: templates/settings.php:116 templates/settings.php:117 +#: templates/settings.php:158 templates/settings.php:159 msgid "Delete" msgstr "Διαγραφή" -#: templates/settings.php:127 +#: templates/settings.php:130 msgid "Enable User External Storage" msgstr "Ενεργοποίηση Εξωτερικού Αποθηκευτικού Χώρου Χρήστη" -#: templates/settings.php:130 +#: templates/settings.php:133 msgid "Allow users to mount the following external storage" -msgstr "" +msgstr "Χορήγηση άδειας στους χρήστες να συνδέσουν τα παρακάτω εξωτερικά μέσα αποθήκευσης" -#: templates/settings.php:147 +#: templates/settings.php:150 msgid "SSL root certificates" msgstr "Πιστοποιητικά SSL root" -#: templates/settings.php:165 +#: templates/settings.php:168 msgid "Import Root Certificate" msgstr "Εισαγωγή Πιστοποιητικού Root" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index 8f6d6e8c547..3428c9daded 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -5,14 +5,15 @@ # Translators: # Efstathios Iosifidis , 2014 # Efstathios Iosifidis , 2013 +# pe_ppe , 2014 # vkehayas , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-16 03:12-0400\n" -"PO-Revision-Date: 2014-03-15 22:50+0000\n" -"Last-Translator: Efstathios Iosifidis \n" +"POT-Creation-Date: 2014-04-01 01:55-0400\n" +"PO-Revision-Date: 2014-03-31 16:30+0000\n" +"Last-Translator: pe_ppe \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -68,23 +69,23 @@ msgstr "Μη έγκυρη εικόνα" msgid "web services under your control" msgstr "υπηρεσίες δικτύου υπό τον έλεγχό σας" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "Η λήψη ZIP απενεργοποιήθηκε." -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "Τα αρχεία πρέπει να ληφθούν ένα-ένα." -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "Πίσω στα Αρχεία" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "Τα επιλεγμένα αρχεία είναι μεγάλα ώστε να δημιουργηθεί αρχείο zip." -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -234,7 +235,7 @@ msgstr "Υπάρχει ήδη ο χρήστης '%s'@'localhost' της MySQL/Ma #: private/setup/mysql.php:86 msgid "Drop this user from MySQL/MariaDB" -msgstr "" +msgstr "Κατάργηση του χρήστη από MySQL/MariaDB" #: private/setup/mysql.php:91 #, php-format @@ -243,7 +244,7 @@ msgstr "Υπάρχει ήδη ο χρήστης '%s'@'%%' της MySQL/MariaDB" #: private/setup/mysql.php:92 msgid "Drop this user from MySQL/MariaDB." -msgstr "" +msgstr "Κατάργηση του χρήστη από MySQL/MariaDB." #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -270,13 +271,13 @@ msgstr "Εισάγετε όνομα χρήστη διαχειριστή." msgid "Set an admin password." msgstr "Εισάγετε συνθηματικό διαχειριστή." -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ο διακομιστής σας δεν έχει ρυθμιστεί κατάλληλα ώστε να επιτρέπει τον συγχρονισμό αρχείων γιατί η διεπαφή WebDAV πιθανόν να είναι κατεστραμμένη." -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "Ελέγξτε ξανά τις οδηγίες εγκατάστασης." diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 963340f3af1..adda7be21db 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -6,6 +6,7 @@ # Efstathios Iosifidis , 2013-2014 # Efstathios Iosifidis , 2013 # KAT.RAT12 , 2013 +# pe_ppe , 2014 # Teogramm , 2013 # Teogramm , 2013 # vkehayas , 2013 @@ -15,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-01 01:55-0400\n" +"PO-Revision-Date: 2014-03-31 17:11+0000\n" +"Last-Translator: pe_ppe \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,7 +29,7 @@ msgstr "" #: admin/controller.php:66 #, php-format msgid "Invalid value supplied for %s" -msgstr "" +msgstr "Άκυρη τιμή για το %s" #: admin/controller.php:73 msgid "Saved" @@ -72,7 +73,7 @@ msgid "Unable to load list from App Store" msgstr "Σφάλμα στην φόρτωση της λίστας από το App Store" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Σφάλμα πιστοποίησης" @@ -134,32 +135,32 @@ msgstr "Αδυναμία αφαίρεσης χρήστη από την ομάδ msgid "Couldn't update app." msgstr "Αδυναμία ενημέρωσης εφαρμογής" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "Εσφαλμένο συνθηματικό" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "Δεν εισήχθη χρήστης" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "Παρακαλώ παρέχετε έναν κωδικό ανάκτησης διαχειριστή, διαφορετικά όλα τα δεδομένα χρήστη θα χαθούν" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "Λάθος κωδικός ανάκτησης διαχειριστή. Παρακαλώ ελέγξτε τον κωδικό και δοκιμάστε ξανά." -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "Το βασικό πλαίσιο δεν υποστηρίζει αλλαγή κωδικού, αλλά το κλειδί κρυπτογράφησης των χρηστών ενημερώθηκε επιτυχώς." -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "Αδυναμία αλλαγής συνθηματικού" @@ -233,7 +234,7 @@ msgstr "Αδύναμο συνθηματικό" #: js/personal.js:279 msgid "So-so password" -msgstr "" +msgstr "Μέτριο συνθηματικό" #: js/personal.js:280 msgid "Good password" @@ -292,7 +293,7 @@ msgstr "Πρέπει να δοθεί έγκυρο συνθηματικό" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Προειδοποίηση: Ο μητρικός κατάλογος του χρήστη \"{user}\" υπάρχει ήδη" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "__όνομα_γλώσσας__" @@ -326,7 +327,7 @@ msgstr "Σύνδεση" #: templates/admin.php:18 msgid "Plain" -msgstr "" +msgstr "Απλό" #: templates/admin.php:19 msgid "NT LAN Manager" @@ -437,18 +438,18 @@ msgstr "Cron" #: templates/admin.php:167 #, php-format msgid "Last cron was executed at %s." -msgstr "" +msgstr "Η τελευταία εκτέλεση του cron ήταν στις %s" #: templates/admin.php:170 #, php-format msgid "" "Last cron was executed at %s. This is more than an hour ago, something seems" " wrong." -msgstr "" +msgstr "Η τελευταία εκτέλεση του cron ήταν στις %s. Αυτό είναι πάνω από μια ώρα πριν, ίσως κάτι δεν πάει καλά." #: templates/admin.php:174 msgid "Cron was not executed yet!" -msgstr "" +msgstr "Η διεργασία cron δεν εκτελέστηκε ακόμα!" #: templates/admin.php:184 msgid "Execute one task with each page loaded" diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index f9c9174c553..aeb2e200366 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -4,14 +4,15 @@ # # Translators: # Marios Bekatoros <>, 2013 +# pe_ppe , 2014 # vkehayas , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-01 01:55-0400\n" +"PO-Revision-Date: 2014-03-31 17:11+0000\n" +"Last-Translator: pe_ppe \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -165,7 +166,7 @@ msgstr "Βοήθεια" #: templates/part.wizard-groupfilter.php:4 #, php-format msgid "Groups meeting these criteria are available in %s:" -msgstr "" +msgstr "Οι ομάδες που πληρούν τα κριτήρια είναι διαθέσιμες σε %s:" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 @@ -201,7 +202,7 @@ msgstr "ομάδες βρέθηκαν" #: templates/part.wizard-loginfilter.php:4 msgid "Users login with this attribute:" -msgstr "" +msgstr "Οι χρήστες εισέρχονται με αυτό το χαρακτηριστικό:" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" @@ -269,7 +270,7 @@ msgstr "Μπορείτε να καθορίσετε το Base DN για χρήσ #: templates/part.wizard-userfilter.php:4 #, php-format msgid "Limit %s access to users meeting these criteria:" -msgstr "" +msgstr "Περιορισμός της πρόσβασης %s σε χρήστες που πληρούν τα κριτήρια:" #: templates/part.wizard-userfilter.php:31 #, php-format @@ -413,7 +414,7 @@ msgstr "Group-Member association" #: templates/settings.php:39 msgid "Nested Groups" -msgstr "" +msgstr "Φωλιασμένες ομάδες" #: templates/settings.php:39 msgid "" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 4a51239c720..91d7cf7c70b 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-01 01:55-0400\n" +"PO-Revision-Date: 2014-03-31 10:38+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,24 +19,24 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Nebolo možné odoslať email týmto používateľom: %s " -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "Mód údržby je zapnutý" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "Mód údržby e vypnutý" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "Databáza je aktualizovaná" @@ -140,63 +140,63 @@ msgstr "December" msgid "Settings" msgstr "Nastavenia" -#: js/js.js:496 +#: js/js.js:543 msgid "Saving..." msgstr "Ukladám..." -#: js/js.js:995 +#: js/js.js:1103 msgid "seconds ago" msgstr "pred sekundami" -#: js/js.js:996 +#: js/js.js:1104 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "pred %n minútou" msgstr[1] "pred %n minútami" msgstr[2] "pred %n minútami" -#: js/js.js:997 +#: js/js.js:1105 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "pred %n hodinou" msgstr[1] "pred %n hodinami" msgstr[2] "pred %n hodinami" -#: js/js.js:998 +#: js/js.js:1106 msgid "today" msgstr "dnes" -#: js/js.js:999 +#: js/js.js:1107 msgid "yesterday" msgstr "včera" -#: js/js.js:1000 +#: js/js.js:1108 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "pred %n dňom" msgstr[1] "pred %n dňami" msgstr[2] "pred %n dňami" -#: js/js.js:1001 +#: js/js.js:1109 msgid "last month" msgstr "minulý mesiac" -#: js/js.js:1002 +#: js/js.js:1110 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "pred %n mesiacom" msgstr[1] "pred %n mesiacmi" msgstr[2] "pred %n mesiacmi" -#: js/js.js:1003 +#: js/js.js:1111 msgid "months ago" msgstr "pred mesiacmi" -#: js/js.js:1004 +#: js/js.js:1112 msgid "last year" msgstr "minulý rok" -#: js/js.js:1005 +#: js/js.js:1113 msgid "years ago" msgstr "pred rokmi" @@ -540,14 +540,14 @@ msgstr "Nové heslo" msgid "Reset password" msgstr "Obnovenie hesla" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index 5ac968e0c46..9b27d46c889 100644 --- a/l10n/sk_SK/files_external.po +++ b/l10n/sk_SK/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-01 01:55-0400\n" +"PO-Revision-Date: 2014-03-31 10:51+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" @@ -38,24 +38,24 @@ msgstr "Zadajte platný kľúč aplikácie a heslo Dropbox" msgid "Error configuring Google Drive storage" msgstr "Chyba pri konfigurácii úložiska Google drive" -#: js/settings.js:313 js/settings.js:320 +#: js/settings.js:318 js/settings.js:325 msgid "Saved" -msgstr "" +msgstr "Uložené" -#: lib/config.php:512 +#: lib/config.php:654 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Upozornenie: \"smbclient\" nie je nainštalovaný. Nie je možné pripojenie oddielov CIFS/SMB. Požiadajte administrátora systému, nech ho nainštaluje." -#: lib/config.php:516 +#: lib/config.php:658 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 "Upozornenie: Podpora FTP v PHP nie je povolená alebo nainštalovaná. Nie je možné pripojenie oddielov FTP. Požiadajte administrátora systému, nech ho nainštaluje." -#: lib/config.php:519 +#: lib/config.php:661 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -90,39 +90,39 @@ msgstr "Aplikovateľné" msgid "Add storage" msgstr "Pridať úložisko" -#: templates/settings.php:90 +#: templates/settings.php:93 msgid "None set" msgstr "Žiadne nastavené" -#: templates/settings.php:91 +#: templates/settings.php:94 msgid "All Users" msgstr "Všetci používatelia" -#: templates/settings.php:92 +#: templates/settings.php:95 msgid "Groups" msgstr "Skupiny" -#: templates/settings.php:100 +#: templates/settings.php:103 msgid "Users" msgstr "Používatelia" -#: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:155 templates/settings.php:156 +#: templates/settings.php:116 templates/settings.php:117 +#: templates/settings.php:158 templates/settings.php:159 msgid "Delete" msgstr "Zmazať" -#: templates/settings.php:127 +#: templates/settings.php:130 msgid "Enable User External Storage" msgstr "Povoliť externé úložisko" -#: templates/settings.php:130 +#: templates/settings.php:133 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:147 +#: templates/settings.php:150 msgid "SSL root certificates" msgstr "Koreňové SSL certifikáty" -#: templates/settings.php:165 +#: templates/settings.php:168 msgid "Import Root Certificate" msgstr "Importovať koreňový certifikát" diff --git a/l10n/sk_SK/files_sharing.po b/l10n/sk_SK/files_sharing.po index 74a307337e5..fafef561bd3 100644 --- a/l10n/sk_SK/files_sharing.po +++ b/l10n/sk_SK/files_sharing.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# mhh , 2013 +# mhh , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-01 01:55-0400\n" +"PO-Revision-Date: 2014-03-31 10:40+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -66,7 +66,7 @@ msgstr "Zdieľa %s" #: templates/public.php:44 #, php-format msgid "Download %s" -msgstr "" +msgstr "Stiahnuť %s" #: templates/public.php:48 msgid "Direct link" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index 41d6fb61393..a7df661ab0c 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# mhh , 2013 +# mhh , 2013-2014 # martin, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-01 01:55-0400\n" +"PO-Revision-Date: 2014-03-31 10:40+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -67,23 +67,23 @@ msgstr "Chybný obrázok" msgid "web services under your control" msgstr "webové služby pod Vašou kontrolou" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "Sťahovanie súborov ZIP je vypnuté." -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "Súbory musia byť nahrávané jeden za druhým." -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "Späť na súbory" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "Zvolené súbory sú príliš veľké na vygenerovanie zip súboru." -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -159,7 +159,7 @@ msgstr "Token vypršal. Obnovte, prosím, stránku." #: private/json.php:75 msgid "Unknown user" -msgstr "" +msgstr "Neznámy používateľ" #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" @@ -194,8 +194,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Používateľské meno, alebo heslo MS SQL nie je platné: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Musíte zadať jestvujúci účet alebo administrátora." @@ -208,9 +208,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Chyba DB: \"%s\"" @@ -219,9 +219,9 @@ msgstr "Chyba DB: \"%s\"" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "Podozrivý príkaz bol: \"%s\"" @@ -257,7 +257,7 @@ msgstr "Používateľské meno a/alebo heslo pre Oracle databázu je neplatné" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Podozrivý príkaz bol: \"%s\", meno: %s, heslo: %s" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "Používateľské meno a/alebo heslo pre PostgreSQL databázu je neplatné" @@ -269,13 +269,13 @@ msgstr "Zadajte používateľské meno administrátora." msgid "Set an admin password." msgstr "Zadajte heslo administrátora." -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Váš webový server nie je správne nastavený na synchronizáciu, pretože rozhranie WebDAV je poškodené." -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "Prosím skontrolujte inštalačnú príručku." diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 32ec5e902eb..224946f78bd 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-01 01:55-0400\n" +"PO-Revision-Date: 2014-03-31 10:51+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,7 +26,7 @@ msgstr "" #: admin/controller.php:73 msgid "Saved" -msgstr "" +msgstr "Uložené" #: admin/controller.php:90 msgid "test email settings" @@ -66,7 +66,7 @@ msgid "Unable to load list from App Store" msgstr "Nie je možné nahrať zoznam z App Store" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Chyba autentifikácie" @@ -128,38 +128,38 @@ msgstr "Nie je možné odstrániť používateľa zo skupiny %s" msgid "Couldn't update app." msgstr "Nemožno aktualizovať aplikáciu." -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "Nesprávne heslo" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "Nebol uvedený používateľ" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "Zadajte administrátorské heslo pre obnovu, inak budú všetky dáta stratené" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "Chybné administrátorské heslo pre obnovu. Skontrolujte správnosť hesla a skúste to znovu." -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "Úložisko nepodporuje zmenu hesla, ale šifrovací kľúč používateľov bol úspešne zmenený." -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "Zmena hesla sa nepodarila" #: js/admin.js:73 msgid "Sending..." -msgstr "" +msgstr "Odosielam..." #: js/apps.js:45 templates/help.php:4 msgid "User Documentation" @@ -286,7 +286,7 @@ msgstr "Musíte zadať platné heslo" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Upozornenie: Domovský priečinok používateľa \"{user}\" už existuje" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "Slovensky" @@ -328,11 +328,11 @@ msgstr "" #: templates/admin.php:24 msgid "SSL" -msgstr "" +msgstr "SSL" #: templates/admin.php:25 msgid "TLS" -msgstr "" +msgstr "TLS" #: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" @@ -533,7 +533,7 @@ msgstr "Pripojte sa k %s cez HTTPS pre povolenie alebo zakázanie vynútenia SSL #: templates/admin.php:294 msgid "Email Server" -msgstr "" +msgstr "Email server" #: templates/admin.php:296 msgid "This is used for sending out notifications." @@ -561,11 +561,11 @@ msgstr "Prihlasovanie údaje" #: templates/admin.php:363 msgid "SMTP Username" -msgstr "" +msgstr "SMTP používateľské meno" #: templates/admin.php:366 msgid "SMTP Password" -msgstr "" +msgstr "SMTP heslo" #: templates/admin.php:370 msgid "Test email settings" @@ -573,7 +573,7 @@ msgstr "" #: templates/admin.php:371 msgid "Send email" -msgstr "" +msgstr "Odoslať email" #: templates/admin.php:376 msgid "Log" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index eacfde04d8d..e2343f68a9d 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: 2014-03-31 01:55-0400\n" +"POT-Creation-Date: 2014-04-01 01:55-0400\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.pot b/l10n/templates/files.pot index bc931be91d8..32c823f9114 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: 2014-03-31 01:55-0400\n" +"POT-Creation-Date: 2014-04-01 01:55-0400\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 99f9cf030b6..426ee835c51 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: 2014-03-31 01:55-0400\n" +"POT-Creation-Date: 2014-04-01 01:55-0400\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 6334e403e41..15d30558896 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: 2014-03-31 01:55-0400\n" +"POT-Creation-Date: 2014-04-01 01:55-0400\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 8fbff462614..5acf3d4e6fd 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: 2014-03-31 01:55-0400\n" +"POT-Creation-Date: 2014-04-01 01:55-0400\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 f9b4401c785..d890a5395da 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: 2014-03-31 01:55-0400\n" +"POT-Creation-Date: 2014-04-01 01:55-0400\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 3381aea0a7d..21b53607979 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: 2014-03-31 01:55-0400\n" +"POT-Creation-Date: 2014-04-01 01:55-0400\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 10017472d1b..f7ed90f06ae 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: 2014-03-31 01:55-0400\n" +"POT-Creation-Date: 2014-04-01 01:55-0400\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 12fa6ad9308..64f139c4968 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: 2014-03-31 01:55-0400\n" +"POT-Creation-Date: 2014-04-01 01:55-0400\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 892d64a2733..2da34f73a9a 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: 2014-03-31 01:55-0400\n" +"POT-Creation-Date: 2014-04-01 01:55-0400\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 d16fe0386eb..2e57ba0cb5b 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: 2014-03-31 01:55-0400\n" +"POT-Creation-Date: 2014-04-01 01:55-0400\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 d2e917267ce..5d24239a412 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: 2014-03-31 01:55-0400\n" +"POT-Creation-Date: 2014-04-01 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/lib/l10n/el.php b/lib/l10n/el.php index 148b7fc1fe5..a169ae38649 100644 --- a/lib/l10n/el.php +++ b/lib/l10n/el.php @@ -44,7 +44,9 @@ $TRANSLATIONS = array( "DB Error: \"%s\"" => "Σφάλμα Βάσης Δεδομένων: \"%s\"", "Offending command was: \"%s\"" => "Η εντολη παραβατικοτητας ηταν: \"%s\"", "MySQL/MariaDB user '%s'@'localhost' exists already." => "Υπάρχει ήδη ο χρήστης '%s'@'localhost' της MySQL/MariaDB", +"Drop this user from MySQL/MariaDB" => "Κατάργηση του χρήστη από MySQL/MariaDB", "MySQL/MariaDB user '%s'@'%%' already exists" => "Υπάρχει ήδη ο χρήστης '%s'@'%%' της MySQL/MariaDB", +"Drop this user from MySQL/MariaDB." => "Κατάργηση του χρήστη από MySQL/MariaDB.", "Oracle connection could not be established" => "Αδυναμία σύνδεσης Oracle", "Oracle username and/or password not valid" => "Μη έγκυρος χρήστης και/ή συνθηματικό της Oracle", "Offending command was: \"%s\", name: %s, password: %s" => "Η εντολη παραβατικοτητας ηταν: \"%s\", ονομα: %s, κωδικος: %s", diff --git a/lib/l10n/sk_SK.php b/lib/l10n/sk_SK.php index 546e3017978..424f0f5bd8c 100644 --- a/lib/l10n/sk_SK.php +++ b/lib/l10n/sk_SK.php @@ -31,6 +31,7 @@ $TRANSLATIONS = array( "Application is not enabled" => "Aplikácia nie je zapnutá", "Authentication error" => "Chyba autentifikácie", "Token expired. Please reload page." => "Token vypršal. Obnovte, prosím, stránku.", +"Unknown user" => "Neznámy používateľ", "Files" => "Súbory", "Text" => "Text", "Images" => "Obrázky", diff --git a/settings/l10n/el.php b/settings/l10n/el.php index c438fa0f997..0b6ee6a2983 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -1,5 +1,6 @@ "Άκυρη τιμή για το %s", "Saved" => "Αποθηκεύτηκαν", "test email settings" => "δοκιμή ρυθμίσεων email", "If you received this email, the settings seem to be correct." => "Εάν λάβατε αυτό το email, οι ρυθμίσεις δείχνουν να είναι σωστές.", @@ -48,6 +49,7 @@ $TRANSLATIONS = array( "Select a profile picture" => "Επιλογή εικόνας προφίλ", "Very weak password" => "Πολύ αδύναμο συνθηματικό", "Weak password" => "Αδύναμο συνθηματικό", +"So-so password" => "Μέτριο συνθηματικό", "Good password" => "Καλό συνθηματικό", "Strong password" => "Δυνατό συνθηματικό", "Decrypting files... Please wait, this can take some time." => "Αποκρυπτογράφηση αρχείων... Παρακαλώ περιμένετε, αυτό μπορεί να πάρει κάποιο χρόνο.", @@ -70,6 +72,7 @@ $TRANSLATIONS = array( "Fatal issues only" => "Καίρια ζητήματα μόνο", "None" => "Τίποτα", "Login" => "Σύνδεση", +"Plain" => "Απλό", "NT LAN Manager" => "Διαχειριστης NT LAN", "SSL" => "SSL", "TLS" => "TLS", @@ -90,6 +93,9 @@ $TRANSLATIONS = array( "Internet connection not working" => "Η σύνδεση στο διαδίκτυο δεν δουλεύει", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Αυτός ο διακομιστής δεν έχει ενεργή σύνδεση στο διαδίκτυο. Αυτό σημαίνει ότι κάποιες υπηρεσίες όπως η σύνδεση με εξωτερικούς αποθηκευτικούς χώρους, ειδοποιήσεις περί ενημερώσεων ή η εγκατάσταση 3ων εφαρμογών δεν θα είναι διαθέσιμες. Η πρόσβαση απομακρυσμένων αρχείων και η αποστολή ειδοποιήσεων μέσω ηλεκτρονικού ταχυδρομείου μπορεί επίσης να μην είναι διαθέσιμες. Προτείνουμε να ενεργοποιήσετε την πρόσβαση στο διαδίκτυο για αυτόν το διακομιστή εάν θέλετε να χρησιμοποιήσετε όλες τις υπηρεσίες.", "Cron" => "Cron", +"Last cron was executed at %s." => "Η τελευταία εκτέλεση του cron ήταν στις %s", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Η τελευταία εκτέλεση του cron ήταν στις %s. Αυτό είναι πάνω από μια ώρα πριν, ίσως κάτι δεν πάει καλά.", +"Cron was not executed yet!" => "Η διεργασία cron δεν εκτελέστηκε ακόμα!", "Execute one task with each page loaded" => "Εκτέλεση μιας διεργασίας με κάθε σελίδα που φορτώνεται", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "Το cron.php είναι καταχωρημένο σε μια υπηρεσία webcron ώστε να καλεί το cron.php κάθε 15 λεπτά μέσω http.", "Use systems cron service to call the cron.php file every 15 minutes." => "Χρήση της υπηρεσίας cron του συστήματος για να καλεστεί το αρχείο cron.php κάθε 15 λεπτά.", diff --git a/settings/l10n/sk_SK.php b/settings/l10n/sk_SK.php index eaa8552f9cf..e613b5b04c7 100644 --- a/settings/l10n/sk_SK.php +++ b/settings/l10n/sk_SK.php @@ -1,5 +1,6 @@ "Uložené", "Email sent" => "Email odoslaný", "Encryption" => "Šifrovanie", "Unable to load list from App Store" => "Nie je možné nahrať zoznam z App Store", @@ -24,6 +25,7 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Chybné administrátorské heslo pre obnovu. Skontrolujte správnosť hesla a skúste to znovu.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "Úložisko nepodporuje zmenu hesla, ale šifrovací kľúč používateľov bol úspešne zmenený.", "Unable to change password" => "Zmena hesla sa nepodarila", +"Sending..." => "Odosielam...", "User Documentation" => "Príručka používateľa", "Update to {appversion}" => "Aktualizovať na {appversion}", "Disable" => "Zakázať", @@ -57,6 +59,8 @@ $TRANSLATIONS = array( "Fatal issues only" => "Len fatálne problémy", "None" => "Žiadny", "Login" => "Prihlásenie", +"SSL" => "SSL", +"TLS" => "TLS", "Security Warning" => "Bezpečnostné upozornenie", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Do %s máte prístup cez HTTP. Dôrazne odporúčame nakonfigurovať server tak, aby namiesto toho vyžadoval použitie HTTPS.", "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Váš priečinok s dátami aj vaše súbory sú pravdepodobne prístupné z internetu. Súbor .htaccess nefunguje. Odporúčame nakonfigurovať webový server tak, aby priečinok s dátami nebol naďalej prístupný, alebo presunúť priečinok s dátami mimo priestor sprístupňovaný webovým serverom.", @@ -94,9 +98,13 @@ $TRANSLATIONS = array( "Enforce HTTPS" => "Vynútiť HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Vynúti pripájanie klientov k %s šifrovaným pripojením.", "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Pripojte sa k %s cez HTTPS pre povolenie alebo zakázanie vynútenia SSL.", +"Email Server" => "Email server", "Server address" => "Adresa servera", "Port" => "Port", "Credentials" => "Prihlasovanie údaje", +"SMTP Username" => "SMTP používateľské meno", +"SMTP Password" => "SMTP heslo", +"Send email" => "Odoslať email", "Log" => "Záznam", "Log level" => "Úroveň záznamu", "More" => "Viac", -- GitLab From d6ce45fe61c05c0779cfaa3207a538a7a5b9a04c Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Mon, 31 Mar 2014 18:36:52 +0200 Subject: [PATCH 167/296] Correctly read the full stream in file_get_contents When using user-defined stream wrappers, PHP will return a maximum of 8192 bytes even if more was requested. This fix uses stream_get_contents to make sure the full stream is read and not only the first 8 KB. Added unit test with a bigger test file to cover this case. --- lib/private/files/storage/common.php | 7 ++----- tests/data/lorem-big.txt | 29 ++++++++++++++++++++++++++++ tests/lib/files/storage/storage.php | 15 ++++++++++++-- 3 files changed, 44 insertions(+), 7 deletions(-) create mode 100644 tests/data/lorem-big.txt diff --git a/lib/private/files/storage/common.php b/lib/private/files/storage/common.php index 2b697141515..480cf6b5c77 100644 --- a/lib/private/files/storage/common.php +++ b/lib/private/files/storage/common.php @@ -118,11 +118,8 @@ abstract class Common implements \OC\Files\Storage\Storage { if (!$handle) { return false; } - $size = $this->filesize($path); - if ($size == 0) { - return ''; - } - return fread($handle, $size); + $data = stream_get_contents($handle); + return $data; } public function file_put_contents($path, $data) { diff --git a/tests/data/lorem-big.txt b/tests/data/lorem-big.txt new file mode 100644 index 00000000000..3712b9d30f0 --- /dev/null +++ b/tests/data/lorem-big.txt @@ -0,0 +1,29 @@ +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse id hendrerit felis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Sed dictum dolor nec lobortis sagittis. Aliquam blandit lobortis ullamcorper. Donec malesuada ante ante, vel cursus purus suscipit ut. Sed a eros vitae lorem tristique hendrerit a a odio. Cras interdum mi lectus, sed molestie mauris tempus sit amet. Praesent auctor neque venenatis diam tincidunt sodales. Maecenas tincidunt ligula et ipsum dignissim, et molestie dui hendrerit. Nunc lobortis mauris vel tempor tristique. Sed consectetur bibendum nunc. Pellentesque augue velit, interdum ac posuere eu, eleifend et massa. Vestibulum ac mi eu mi viverra iaculis. Sed consequat leo adipiscing dui varius, sagittis vestibulum massa vehicula. + +Praesent imperdiet erat vitae dui placerat, sit amet vulputate tortor viverra. In laoreet elit lorem, at luctus est tempor ac. Nam elementum scelerisque nisl vitae accumsan. Curabitur cursus rutrum est, ut adipiscing ante elementum ut. Ut lectus sem, luctus ut massa non, dignissim vestibulum ipsum. Suspendisse non convallis enim, aliquam adipiscing velit. Donec pharetra non turpis hendrerit porttitor. Aliquam erat volutpat. + +Cras eget arcu eu dolor faucibus accumsan non eget orci. Integer quis quam tincidunt, faucibus neque in, imperdiet lacus. Aenean dui turpis, lacinia quis ligula non, semper adipiscing tellus. Curabitur vitae dui quis nisl malesuada commodo. Nunc eleifend metus enim, eu aliquet dui semper sit amet. Sed a odio sapien. Suspendisse vitae ante id sapien semper accumsan. Sed vestibulum erat quis laoreet pellentesque. Nullam placerat ligula eu odio faucibus, eget dictum orci tristique. Quisque sit amet pulvinar velit, lacinia dictum sem. + +Phasellus id sagittis lacus. Vivamus facilisis convallis metus, sit amet ultricies purus gravida quis. Vivamus eget egestas arcu, a euismod risus. Fusce metus arcu, molestie ut lacinia at, commodo eu nibh. In leo tortor, feugiat aliquet semper in, malesuada ac nulla. Fusce tempor ultricies blandit. Pellentesque et lorem quam. Suspendisse eros eros, mattis ut porttitor vitae, fermentum eget augue. Aliquam vitae justo sed est dictum lobortis. Cras lacinia commodo ligula sed ornare. Donec ut eros semper, sodales tellus quis, cursus quam. Quisque elementum ullamcorper pellentesque. Integer in rutrum ante, vel condimentum metus. Aliquam erat volutpat. + +Quisque convallis tempus eros, sit amet mattis ipsum eleifend in. Mauris volutpat, urna ut commodo tempus, est quam scelerisque erat, eget consequat nulla arcu id eros. Nam elementum nibh quis tincidunt adipiscing. Fusce tristique pretium mollis. Nulla quis ornare felis, vel lacinia diam. In et dui et mauris vestibulum commodo. In hac habitasse platea dictumst. Vestibulum viverra pellentesque tortor, tempor vehicula orci. Praesent rutrum turpis ipsum, ac commodo nisi vehicula ac. + +Nulla gravida ultrices mauris. Ut congue purus nec dolor euismod, vitae auctor elit condimentum. Nullam elementum velit lectus, fringilla pharetra sem hendrerit sit amet. Cras quis lobortis nisi, id interdum massa. Proin eget porttitor sapien. Vivamus quam odio, consectetur at rhoncus vel, posuere in nisi. Donec hendrerit urna ac massa tristique, pellentesque consequat orci dapibus. Mauris mi erat, aliquet id adipiscing ultricies, ultrices nec lacus. Proin imperdiet elit magna, ut suscipit metus faucibus eget. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas at leo lorem. Donec mi nibh, blandit ut mi quis, dictum adipiscing ante. Curabitur sodales blandit odio id viverra. Fusce sagittis rutrum nibh. Mauris risus lacus, placerat at dictum in, varius volutpat quam. + +Ut accumsan tincidunt dui, non semper lorem sodales nec. Curabitur pellentesque velit nec erat ultrices, in convallis diam suscipit. Curabitur pellentesque convallis mi. Phasellus iaculis orci quis nisi semper auctor. Vestibulum eleifend tortor quis odio feugiat, pulvinar congue turpis blandit. Sed viverra diam risus, vel mattis orci dignissim ut. Cras pellentesque dapibus dolor. Morbi tempor eleifend magna. Ut sodales ut sapien sed elementum. In hac habitasse platea dictumst. + +Nullam eget sagittis tellus. Donec a tellus id ligula viverra pellentesque. Pellentesque nulla turpis, pretium vel sem vel, placerat ultricies diam. Donec felis nibh, rhoncus id ornare at, lobortis vel massa. Nullam eu luctus ipsum. Mauris consequat dictum aliquam. Suspendisse ullamcorper aliquam mauris, viverra tincidunt augue suscipit at. Sed luctus scelerisque justo ut semper. Phasellus massa mauris, molestie at nulla eget, dictum ultricies nisi. Aliquam rhoncus nisl sed urna egestas, vel luctus lectus euismod. Mauris sagittis dapibus leo. Donec vitae dignissim risus, ac ultricies augue. Ut vulputate tortor sed dui consectetur placerat. Nullam viverra non diam vel dignissim. + +Suspendisse potenti. Integer facilisis neque vitae euismod adipiscing. Aenean dictum leo commodo dui sodales, sit amet volutpat mauris gravida. Proin tempus convallis eros at consectetur. Proin nisl purus, dictum vel euismod ut, imperdiet quis est. Etiam sollicitudin lobortis neque eget pulvinar. Etiam venenatis vel sem ut posuere. Aliquam consectetur rhoncus facilisis. Morbi a viverra orci. + +Praesent ut vehicula orci, vel convallis risus. Suspendisse consectetur varius interdum. Interdum et malesuada fames ac ante ipsum primis in faucibus. Proin vel sodales enim. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Curabitur suscipit tristique justo vel dapibus. Sed tincidunt mattis massa a auctor. Donec in tincidunt elit. Curabitur interdum neque at ante fringilla tempus. In hac habitasse platea dictumst. Vivamus luctus ligula ut nisl fermentum egestas. Praesent pulvinar accumsan neque. Sed nec leo sit amet arcu vehicula vehicula non ac diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; + +Morbi vel arcu quis neque dictum ullamcorper. Pellentesque condimentum consequat lacinia. Vestibulum eleifend placerat erat, eu hendrerit dui pulvinar eget. Vestibulum accumsan, lectus id vehicula fringilla, erat eros dictum massa, ut tristique libero mi eu ante. In at ante nunc. Praesent sodales ullamcorper porta. Curabitur egestas odio elit. Praesent et libero malesuada, venenatis lorem vitae, eleifend nisl. Donec dapibus euismod turpis, nec porttitor turpis dapibus ac. Fusce iaculis lacus eget dictum aliquam. Sed dictum eu enim ac posuere. Ut accumsan, ipsum et laoreet consectetur, ipsum quam dapibus diam, ac molestie ligula dui id massa. Nulla aliquam mauris congue nibh vestibulum imperdiet. + +Aenean ultricies, orci vel consectetur suscipit, ante nisi eleifend est, vitae suscipit risus erat dictum dui. Ut nisi diam, tristique sed nisl nec, aliquam gravida orci. Vestibulum in molestie sem. Ut eu molestie mi. Suspendisse potenti. Nunc sagittis lorem ut est vehicula, vitae imperdiet leo rutrum. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Donec pharetra urna pretium, faucibus orci cursus, sodales purus. Duis iaculis dignissim augue, non aliquet ligula elementum quis. Sed tempus a nisi et faucibus. Donec mattis ligula ac sem aliquam, sed sodales est ullamcorper. Cras vel orci est. Integer eget ultricies nisi. + +Quisque rhoncus, nisl vel auctor consectetur, sapien augue iaculis urna, quis suscipit arcu dolor ac est. Fusce sit amet quam lacinia, malesuada lorem vitae, dapibus justo. Mauris eget massa nec dolor volutpat tempor ut eu ante. Donec risus mi, aliquam at euismod vulputate, ullamcorper non leo. Etiam ac elit velit. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Vivamus sollicitudin enim sed felis pharetra, a convallis mi venenatis. Donec convallis non velit venenatis suscipit. Sed massa risus, dictum quis aliquam ut, placerat quis arcu. Donec at nisi neque. Nullam porta et mi vel ultricies. Donec vel aliquam sem. Mauris varius, ipsum interdum mattis rhoncus, nunc nisl vehicula tortor, quis condimentum nibh nisl vel ante. Sed vel pretium dui. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce pulvinar molestie neque, quis luctus ante. + +Interdum et malesuada fames ac ante ipsum primis in faucibus. Donec ac ipsum egestas, luctus urna aliquet, fringilla tortor. Cras eleifend sed tellus tempor congue. Integer venenatis magna dignissim pharetra cursus. Nulla volutpat, sem sit amet malesuada laoreet, odio libero consectetur orci, sit amet pellentesque neque ligula quis libero. Morbi nec interdum metus, in imperdiet justo. Fusce euismod egestas nulla et elementum. Etiam aliquam lectus quis eros semper, sed dapibus velit ultrices. Lorem ipsum dolor sit amet, consectetur adipiscing elit. + +Proin sed elit vel massa placerat mattis et vel mauris. Aliquam accumsan ante ligula, at accumsan enim pellentesque sit amet. Sed eget quam vel nunc molestie iaculis vitae nec massa. Vivamus sed accumsan libero. Duis pretium quam at blandit sollicitudin. Nullam sodales sit amet elit ac adipiscing. Ut ullamcorper dignissim sapien. Nulla facilisi. Fusce sed consequat lectus, et tempus ipsum. Aliquam vestibulum lectus vitae quam mollis, et adipiscing nisl lobortis diff --git a/tests/lib/files/storage/storage.php b/tests/lib/files/storage/storage.php index f3bfba3feb8..6ec35dfbc92 100644 --- a/tests/lib/files/storage/storage.php +++ b/tests/lib/files/storage/storage.php @@ -113,11 +113,22 @@ abstract class Storage extends \PHPUnit_Framework_TestCase { ); } + function loremFileProvider() { + $root = \OC::$SERVERROOT . '/tests/data/'; + return array( + // small file + array($root . 'lorem.txt'), + // bigger file (> 8 KB which is the standard PHP block size) + array($root . 'lorem-big.txt') + ); + } + /** * test the various uses of file_get_contents and file_put_contents + * + * @dataProvider loremFileProvider */ - public function testGetPutContents() { - $sourceFile = \OC::$SERVERROOT . '/tests/data/lorem.txt'; + public function testGetPutContents($sourceFile) { $sourceText = file_get_contents($sourceFile); //fill a file with string data -- GitLab From 0067a4eac287928a70a50c925b00777d760e4ec1 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Mon, 31 Mar 2014 18:37:52 +0200 Subject: [PATCH 168/296] Added missing fclose in file_get_contents and file_put_contents --- lib/private/files/storage/common.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/private/files/storage/common.php b/lib/private/files/storage/common.php index 480cf6b5c77..0ce447a5a48 100644 --- a/lib/private/files/storage/common.php +++ b/lib/private/files/storage/common.php @@ -119,13 +119,16 @@ abstract class Common implements \OC\Files\Storage\Storage { return false; } $data = stream_get_contents($handle); + fclose($handle); return $data; } public function file_put_contents($path, $data) { $handle = $this->fopen($path, "w"); $this->removeCachedFile($path); - return fwrite($handle, $data); + $count = fwrite($handle, $data); + fclose($handle); + return $count; } public function rename($path1, $path2) { -- GitLab From 0d2a81a0959576f02a0d82bc1efba88ee7bb09d0 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Tue, 1 Apr 2014 10:48:55 +0200 Subject: [PATCH 169/296] apply proposed change --- core/css/apps.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/css/apps.css b/core/css/apps.css index 5899aa09090..836d36d8b8f 100644 --- a/core/css/apps.css +++ b/core/css/apps.css @@ -30,12 +30,12 @@ } #app-navigation .active, #app-navigation .active a { - background-color: #eee; + background-color: #ddd; } #app-navigation li:hover > a, #app-navigation .selected, #app-navigation .selected a { - background-color: #ddd; + background-color: #ccc; } /* special rules for first-level entries and folders */ -- GitLab From 0a112de676ab41579a40eb04d4f8b0cc96b326a7 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Tue, 1 Apr 2014 14:26:06 +0200 Subject: [PATCH 170/296] external storage: change confusing 'applicable' to 'available for' --- apps/files_external/templates/settings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_external/templates/settings.php b/apps/files_external/templates/settings.php index a2bdbcf4632..28836ed5b53 100644 --- a/apps/files_external/templates/settings.php +++ b/apps/files_external/templates/settings.php @@ -9,7 +9,7 @@
      - '.$l->t('Applicable').''); ?> + '.$l->t('Available for').''); ?> -- GitLab From acfb3cfff544096342b9d44410bcb74bbffec99a Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Tue, 1 Apr 2014 14:28:33 +0200 Subject: [PATCH 171/296] external storage: set storages to be available for All Users by default --- apps/files_external/templates/settings.php | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/apps/files_external/templates/settings.php b/apps/files_external/templates/settings.php index 28836ed5b53..e8815acaf16 100644 --- a/apps/files_external/templates/settings.php +++ b/apps/files_external/templates/settings.php @@ -88,9 +88,12 @@ data-applicable-users=''> ').attr({ + "data-id" : fileData.id, "data-type": type, - "data-size": size, + "data-size": fileData.size, "data-file": name, - "data-permissions": permissions + "data-mime": mime, + "data-mtime": mtime, + "data-etag": fileData.etag, + "data-permissions": fileData.permissions || this.getDirectoryPermissions() }); + + if (type === 'dir') { + // use default folder icon + icon = icon || OC.imagePath('core', 'filetypes/folder'); + } + else { + icon = icon || OC.imagePath('core', 'filetypes/file'); + } + // filename td td = $('').attr({ - "class": "filename svg", - "style": 'background-image:url('+iconurl+'); background-size: 32px;' + "class": "filename", + "style": 'background-image:url(' + icon + '); background-size: 32px;' }); - var rand = Math.random().toString(16).slice(2); - td.append(''); + + // linkUrl + if (type === 'dir') { + linkUrl = FileList.linkTo(FileList.getCurrentDirectory() + '/' + name); + } + else { + linkUrl = Files.getDownloadUrl(name, FileList.getCurrentDirectory()); + } + td.append(''); var link_elem = $('').attr({ "class": "name", - "href": linktarget + "href": linkUrl }); - //split extension from filename for non dirs + + // from here work on the display name + name = fileData.displayName || name; + + // split extension from filename for non dirs if (type !== 'dir' && name.indexOf('.') !== -1) { - basename=name.substr(0,name.lastIndexOf('.')); - extension=name.substr(name.lastIndexOf('.')); + basename = name.substr(0, name.lastIndexOf('.')); + extension = name.substr(name.lastIndexOf('.')); } else { - basename=name; - extension=false; + basename = name; + extension = false; } var name_span=$('').addClass('nametext').text(basename); link_elem.append(name_span); if (extension) { name_span.append($('').addClass('extension').text(extension)); } - //dirs can show the number of uploaded files + // dirs can show the number of uploaded files if (type === 'dir') { link_elem.append($('').attr({ 'class': 'uploadtext', @@ -103,98 +259,122 @@ window.FileList={ td.append(link_elem); tr.append(td); - //size column - if (size !== t('files', 'Pending')) { - simpleSize = humanFileSize(size); + // size column + if (typeof(fileData.size) !== 'undefined' && fileData.size >= 0) { + simpleSize = humanFileSize(parseInt(fileData.size, 10)); + sizeColor = Math.round(160-Math.pow((fileData.size/(1024*1024)),2)); } else { - simpleSize=t('files', 'Pending'); + simpleSize = t('files', 'Pending'); } - var sizeColor = Math.round(160-Math.pow((size/(1024*1024)),2)); - var lastModifiedTime = Math.round(lastModified.getTime() / 1000); + var lastModifiedTime = Math.round(mtime / 1000); td = $('').attr({ "class": "filesize", - "style": 'color:rgb('+sizeColor+','+sizeColor+','+sizeColor+')' + "style": 'color:rgb(' + sizeColor + ',' + sizeColor + ',' + sizeColor + ')' }).text(simpleSize); tr.append(td); // date column - var modifiedColor = Math.round((Math.round((new Date()).getTime() / 1000)-lastModifiedTime)/60/60/24*5); + var modifiedColor = Math.round((Math.round((new Date()).getTime() / 1000) - mtime)/60/60/24*5); td = $('').attr({ "class": "date" }); td.append($('').attr({ "class": "modified", - "title": formatDate(lastModified), + "title": formatDate(mtime), "style": 'color:rgb('+modifiedColor+','+modifiedColor+','+modifiedColor+')' - }).text( relative_modified_date(lastModified.getTime() / 1000) )); + }).text( relative_modified_date(mtime / 1000) )); + tr.find('.filesize').text(simpleSize); tr.append(td); return tr; }, - addFile:function(name, size, lastModified, loading, hidden, param) { - var imgurl; + /** + * Adds an entry to the files table using the data from the given file data + * @param fileData map of file attributes + * @param options map of attributes: + * - "insert" true to insert in a sorted manner, false to append (default) + * - "updateSummary" true to update the summary after adding (default), false otherwise + * @return new tr element (not appended to the table) + */ + add: function(fileData, options) { + options = options || {}; + var type = fileData.type || 'file', + mime = fileData.mimetype, + permissions = parseInt(fileData.permissions, 10) || 0; - if (!param) { - param = {}; + if (type === 'dir') { + mime = mime || 'httpd/unix-directory'; } + var tr = this._createRow( + fileData, + options + ); + var filenameTd = tr.find('td.filename'); - var download_url = null; - if (!param.download_url) { - download_url = OC.generateUrl( - 'apps/files/download{file}', - { file: $('#dir').val()+'/'+name }); - } else { - download_url = param.download_url; + // sorted insert is expensive, so needs to be explicitly + // requested + if (options.insert) { + this.insertElement(fileData.name, type, tr); } + else { + this.$fileList.append(tr); + } + FileList.isEmpty = false; - if (loading) { - imgurl = OC.imagePath('core', 'loading.gif'); - } else { - imgurl = OC.imagePath('core', 'filetypes/file'); - } - var tr = this.createRow( - 'file', - name, - imgurl, - download_url, - size, - lastModified, - $('#permissions').val() - ); + // TODO: move dragging to FileActions ? + // enable drag only for deletable files + if (permissions & OC.PERMISSION_DELETE) { + filenameTd.draggable(dragOptions); + } + // allow dropping on folders + if (fileData.type === 'dir') { + filenameTd.droppable(folderDropOptions); + } - FileList.insertElement(name, 'file', tr); - if (loading) { - tr.data('loading', true); - } else { - tr.find('td.filename').draggable(dragOptions); + if (options.hidden) { + tr.addClass('hidden'); } - if (hidden) { - tr.hide(); + + // display actions + FileActions.display(filenameTd, false); + + if (fileData.isPreviewAvailable) { + // lazy load / newly inserted td ? + if (!fileData.icon) { + Files.lazyLoadPreview(getPathForPreview(fileData.name), mime, function(url) { + filenameTd.css('background-image', 'url(' + url + ')'); + }, null, null, fileData.etag); + } + else { + // set the preview URL directly + var urlSpec = { + file: FileList.getCurrentDirectory() + '/' + fileData.name, + c: fileData.etag + }; + var previewUrl = Files.generatePreviewUrl(urlSpec); + previewUrl = previewUrl.replace('(', '%28').replace(')', '%29'); + filenameTd.css('background-image', 'url(' + previewUrl + ')'); + } } - return tr; - }, - addDir:function(name, size, lastModified, hidden) { - - var tr = this.createRow( - 'dir', - name, - OC.imagePath('core', 'filetypes/folder'), - OC.linkTo('files', 'index.php')+"?dir="+ encodeURIComponent($('#dir').val()+'/'+name).replace(/%2F/g, '/'), - size, - lastModified, - $('#permissions').val() - ); - FileList.insertElement(name, 'dir', tr); - var td = tr.find('td.filename'); - td.draggable(dragOptions); - td.droppable(folderDropOptions); - if (hidden) { - tr.hide(); + // defaults to true if not defined + if (typeof(options.updateSummary) === 'undefined' || !!options.updateSummary) { + this.updateFileSummary(); + this.updateEmptyContent(); } - FileActions.display(tr.find('td.filename'), true); return tr; }, + /** + * Returns the current directory + * @return current directory + */ getCurrentDirectory: function(){ return $('#dir').val() || '/'; }, + /** + * Returns the directory permissions + * @return permission value as integer + */ + getDirectoryPermissions: function() { + return parseInt($('#permissions').val(), 10); + }, /** * @brief Changes the current directory and reload the file list. * @param targetDir target directory (non URL encoded) @@ -209,7 +389,7 @@ window.FileList={ if (!force && currentDir === targetDir) { return; } - FileList.setCurrentDir(targetDir, changeUrl); + FileList._setCurrentDir(targetDir, changeUrl); $('#fileList').trigger( jQuery.Event('changeDirectory', { dir: targetDir, @@ -221,7 +401,13 @@ window.FileList={ linkTo: function(dir) { return OC.linkTo('files', 'index.php')+"?dir="+ encodeURIComponent(dir).replace(/%2F/g, '/'); }, - setCurrentDir: function(targetDir, changeUrl) { + + /** + * Sets the current directory name and updates the breadcrumb. + * @param targetDir directory to display + * @param changeUrl true to also update the URL, false otherwise (default) + */ + _setCurrentDir: function(targetDir, changeUrl) { var url, baseDir = OC.basename(targetDir); @@ -243,6 +429,7 @@ window.FileList={ window.location.hash = '?dir='+ encodeURIComponent(targetDir).replace(/%2F/g, '/'); } } + this.breadcrumb.setDirectory(this.getCurrentDirectory()); }, /** * @brief Reloads the file list using ajax call @@ -253,10 +440,9 @@ window.FileList={ FileList._reloadCall.abort(); } FileList._reloadCall = $.ajax({ - url: OC.filePath('files','ajax','list.php'), + url: Files.getAjaxUrl('list'), data: { - dir : $('#dir').val(), - breadcrumb: true + dir : $('#dir').val() }, error: function(result) { FileList.reloadCallback(result); @@ -269,8 +455,8 @@ window.FileList={ reloadCallback: function(result) { var $controls = $('#controls'); - delete FileList._reloadCall; - FileList.hideMask(); + delete this._reloadCall; + this.hideMask(); if (!result || result.status === 'error') { OC.Notification.show(result.data.message); @@ -279,7 +465,11 @@ window.FileList={ if (result.status === 404) { // go back home - FileList.changeDirectory('/'); + this.changeDirectory('/'); + return; + } + // aborted ? + if (result.status === 0){ return; } @@ -288,24 +478,10 @@ window.FileList={ Files.updateStorageStatistics(true); if (result.data.permissions) { - FileList.setDirectoryPermissions(result.data.permissions); - } - - if (typeof(result.data.breadcrumb) !== 'undefined') { - $controls.find('.crumb').remove(); - $controls.prepend(result.data.breadcrumb); - - var width = $(window).width(); - Files.initBreadCrumbs(); - Files.resizeBreadcrumbs(width, true); - - // in case svg is not supported by the browser we need to execute the fallback mechanism - if (!SVGSupport()) { - replaceSVG(); - } + this.setDirectoryPermissions(result.data.permissions); } - FileList.update(result.data.files); + this.setFiles(result.data.files); }, setDirectoryPermissions: function(permissions) { var isCreatable = (permissions & OC.PERMISSION_CREATE) !== 0; @@ -322,10 +498,14 @@ window.FileList={ $('.actions,#file_action_panel').toggleClass('hidden', !show); if (show){ // make sure to display according to permissions - var permissions = $('#permissions').val(); + var permissions = this.getDirectoryPermissions(); var isCreatable = (permissions & OC.PERMISSION_CREATE) !== 0; $('.creatable').toggleClass('hidden', !isCreatable); $('.notCreatable').toggleClass('hidden', isCreatable); + // remove old style breadcrumbs (some apps might create them) + $('#controls .crumb').remove(); + // refresh breadcrumbs in case it was replaced by an app + this.breadcrumb.render(); } else{ $('.creatable, .notCreatable').addClass('hidden'); @@ -341,22 +521,32 @@ window.FileList={ this.showActions(!show); $('#filestable').toggleClass('hidden', show); }, - remove:function(name){ + /** + * Removes a file entry from the list + * @param name name of the file to remove + * @param options optional options as map: + * "updateSummary": true to update the summary (default), false otherwise + */ + remove:function(name, options){ + options = options || {}; var fileEl = FileList.findFileEl(name); if (fileEl.data('permissions') & OC.PERMISSION_DELETE) { // file is only draggable when delete permissions are set fileEl.find('td.filename').draggable('destroy'); } fileEl.remove(); - FileList.updateFileSummary(); - if ( ! $('tr[data-file]').exists() ) { - $('#emptycontent').removeClass('hidden'); - $('#filescontent th').addClass('hidden'); + // TODO: improve performance on batch update + FileList.isEmpty = !this.$fileList.find('tr:not(.summary)').length; + if (typeof(options.updateSummary) === 'undefined' || !!options.updateSummary) { + FileList.updateEmptyContent(); + FileList.updateFileSummary(); } + return fileEl; }, insertElement:function(name, type, element) { - //find the correct spot to insert the file or folder - var pos, fileElements=$('tr[data-file][data-type="'+type+'"]:visible'); + // find the correct spot to insert the file or folder + var pos, + fileElements = this.$fileList.find('tr[data-file][data-type="'+type+'"]:not(.hidden)'); if (name.localeCompare($(fileElements[0]).attr('data-file')) < 0) { pos = -1; } else if (name.localeCompare($(fileElements[fileElements.length-1]).attr('data-file')) > 0) { @@ -376,35 +566,18 @@ window.FileList={ } else { $(fileElements[pos]).after(element); } - } else if (type === 'dir' && $('tr[data-file]').exists()) { - $('tr[data-file]').first().before(element); - } else if (type === 'file' && $('tr[data-file]').exists()) { - $('tr[data-file]').last().before(element); + } else if (type === 'dir' && !FileList.isEmpty) { + this.$fileList.find('tr[data-file]:first').before(element); + } else if (type === 'file' && !FileList.isEmpty) { + this.$fileList.find('tr[data-file]:last').before(element); } else { - $('#fileList').append(element); + this.$fileList.append(element); } - $('#emptycontent').addClass('hidden'); - $('#filestable th').removeClass('hidden'); + FileList.isEmpty = false; + FileList.updateEmptyContent(); FileList.updateFileSummary(); }, - loadingDone:function(name, id) { - var mime, tr = FileList.findFileEl(name); - tr.data('loading', false); - mime = tr.data('mime'); - tr.attr('data-mime', mime); - if (id) { - tr.attr('data-id', id); - } - var path = getPathForPreview(name); - Files.lazyLoadPreview(path, mime, function(previewpath) { - tr.find('td.filename').attr('style','background-image:url('+previewpath+')'); - }, null, null, tr.attr('data-etag')); - tr.find('td.filename').draggable(dragOptions); - }, - isLoading:function(file) { - return FileList.findFileEl(file).data('loading'); - }, - rename:function(oldname) { + rename: function(oldname) { var tr, td, input, form; tr = FileList.findFileEl(oldname); tr.data('renaming',true); @@ -438,6 +611,7 @@ window.FileList={ event.preventDefault(); try { var newname = input.val(); + var directory = FileList.getCurrentDirectory(); if (newname !== oldname) { checkInput(); // save background image, because it's replaced by a spinner while async request @@ -480,12 +654,12 @@ window.FileList={ tr.attr('data-mime', fileInfo.mime); tr.attr('data-etag', fileInfo.etag); if (fileInfo.isPreviewAvailable) { - Files.lazyLoadPreview(fileInfo.directory + '/' + fileInfo.name, result.data.mime, function(previewpath) { + Files.lazyLoadPreview(directory + '/' + fileInfo.name, result.data.mime, function(previewpath) { tr.find('td.filename').attr('style','background-image:url('+previewpath+')'); }, null, null, result.data.etag); } else { - tr.find('td.filename').removeClass('preview').attr('style','background-image:url('+fileInfo.icon+')'); + tr.find('td.filename').removeClass('preview').attr('style','background-image:url('+FileList._replaceSVG(fileInfo.icon)+')'); } } // reinsert row @@ -554,58 +728,12 @@ window.FileList={ inList:function(file) { return FileList.findFileEl(file).length; }, - replace:function(oldName, newName, isNewFile) { - // Finish any existing actions - var oldFileEl = FileList.findFileEl(oldName); - var newFileEl = FileList.findFileEl(newName); - oldFileEl.hide(); - newFileEl.hide(); - var tr = oldFileEl.clone(); - tr.attr('data-replace', 'true'); - tr.attr('data-file', newName); - var td = tr.children('td.filename'); - td.children('a.name .span').text(newName); - var path = td.children('a.name').attr('href'); - td.children('a.name').attr('href', path.replace(encodeURIComponent(oldName), encodeURIComponent(newName))); - var basename = newName; - if (newName.indexOf('.') > 0) { - basename = newName.substr(0, newName.lastIndexOf('.')); - } - td.children('a.name').empty(); - var span = $(''); - span.text(basename); - td.children('a.name').append(span); - if (newName.indexOf('.') > 0) { - span.append($(''+newName.substr(newName.lastIndexOf('.'))+'')); - } - FileList.insertElement(newName, tr.data('type'), tr); - tr.show(); - FileList.replaceCanceled = false; - FileList.replaceOldName = oldName; - FileList.replaceNewName = newName; - FileList.replaceIsNewFile = isNewFile; - FileList.lastAction = function() { - FileList.finishReplace(); - }; - if (!isNewFile) { - OC.Notification.showHtml(t('files', 'replaced {new_name} with {old_name}', {new_name: newName}, {old_name: oldName})+''+t('files', 'undo')+''); - } - }, - finishReplace:function() { - if (!FileList.replaceCanceled && FileList.replaceOldName && FileList.replaceNewName) { - $.ajax({url: OC.filePath('files', 'ajax', 'rename.php'), async: false, data: { dir: $('#dir').val(), newname: FileList.replaceNewName, file: FileList.replaceOldName }, success: function(result) { - if (result && result.status === 'success') { - $('tr[data-replace="true"').removeAttr('data-replace'); - } else { - OC.dialogs.alert(result.data.message, 'Error moving file'); - } - FileList.replaceCanceled = true; - FileList.replaceOldName = null; - FileList.replaceNewName = null; - FileList.lastAction = null; - }}); - } - }, + /** + * Delete the given files from the given dir + * @param files file names list (without path) + * @param dir directory in which to delete the files, defaults to the current + * directory + */ do_delete:function(files, dir) { var params; if (files && files.substr) { @@ -622,7 +750,7 @@ window.FileList={ FileList.lastAction(); } - var params = { + params = { dir: dir || FileList.getCurrentDirectory() }; if (files) { @@ -643,10 +771,9 @@ window.FileList={ } else { $.each(files,function(index,file) { - var files = FileList.findFileEl(file); - files.remove(); - files.find('input[type="checkbox"]').removeAttr('checked'); - files.removeClass('selected'); + var fileEl = FileList.remove(file, {updateSummary: false}); + fileEl.find('input[type="checkbox"]').prop('checked', false); + fileEl.removeClass('selected'); }); } procesSelection(); @@ -680,7 +807,7 @@ window.FileList={ }); }, createFileSummary: function() { - if( $('#fileList tr').exists() ) { + if ( !FileList.isEmpty ) { var summary = this._calculateFileSummary(); // Get translations @@ -702,7 +829,7 @@ window.FileList={ } var $summary = $(''+fileSize+''); - $('#fileList').append($summary); + this.$fileList.append($summary); var $dirInfo = $summary.find('.dirinfo'); var $fileInfo = $summary.find('.fileinfo'); @@ -710,12 +837,12 @@ window.FileList={ // Show only what's necessary, e.g.: no files: don't show "0 files" if (summary.totalDirs === 0) { - $dirInfo.hide(); - $connector.hide(); + $dirInfo.addClass('hidden'); + $connector.addClass('hidden'); } if (summary.totalFiles === 0) { - $fileInfo.hide(); - $connector.hide(); + $fileInfo.addClass('hidden'); + $connector.addClass('hidden'); } } }, @@ -740,10 +867,13 @@ window.FileList={ return result; }, updateFileSummary: function() { - var $summary = $('.summary'); + var $summary = this.$el.find('.summary'); + + // always make it the last element + this.$fileList.append($summary.detach()); // Check if we should remove the summary to show "Upload something" - if ($('#fileList tr').length === 1 && $summary.length === 1) { + if (this.isEmpty && $summary.length === 1) { $summary.remove(); } // If there's no summary create one (createFileSummary checks if there's data) @@ -751,7 +881,7 @@ window.FileList={ FileList.createFileSummary(); } // There's a summary and data -> Update the summary - else if ($('#fileList tr').length > 1 && $summary.length === 1) { + else if (!this.isEmpty && $summary.length === 1) { var fileSummary = this._calculateFileSummary(); var $dirInfo = $('.summary .dirinfo'); var $fileInfo = $('.summary .fileinfo'); @@ -764,19 +894,19 @@ window.FileList={ // Show only what's necessary (may be hidden) if (fileSummary.totalDirs === 0) { - $dirInfo.hide(); - $connector.hide(); + $dirInfo.addClass('hidden'); + $connector.addClass('hidden'); } else { - $dirInfo.show(); + $dirInfo.removeClass('hidden'); } if (fileSummary.totalFiles === 0) { - $fileInfo.hide(); - $connector.hide(); + $fileInfo.addClass('hidden'); + $connector.addClass('hidden'); } else { - $fileInfo.show(); + $fileInfo.removeClass('hidden'); } if (fileSummary.totalDirs > 0 && fileSummary.totalFiles > 0) { - $connector.show(); + $connector.removeClass('hidden'); } } }, @@ -784,10 +914,14 @@ window.FileList={ var $fileList = $('#fileList'); var permissions = $('#permissions').val(); var isCreatable = (permissions & OC.PERMISSION_CREATE) !== 0; - var exists = $fileList.find('tr:first').exists(); - $('#emptycontent').toggleClass('hidden', !isCreatable || exists); - $('#filestable th').toggleClass('hidden', !exists); + $('#emptycontent').toggleClass('hidden', !isCreatable || !FileList.isEmpty); + $('#filestable thead th').toggleClass('hidden', FileList.isEmpty); }, + /** + * Shows the loading mask. + * + * @see #hideMask + */ showMask: function() { // in case one was shown before var $mask = $('#content .mask'); @@ -795,23 +929,23 @@ window.FileList={ return; } + this.$el.addClass('hidden'); + $mask = $('
      '); $mask.css('background-image', 'url('+ OC.imagePath('core', 'loading.gif') + ')'); $mask.css('background-repeat', 'no-repeat'); $('#content').append($mask); - // block UI, but only make visible in case loading takes longer - FileList._maskTimeout = window.setTimeout(function() { - // reset opacity - $mask.removeClass('transparent'); - }, 250); + $mask.removeClass('transparent'); }, + /** + * Hide the loading mask. + * @see #showMask + */ hideMask: function() { - var $mask = $('#content .mask').remove(); - if (FileList._maskTimeout) { - window.clearTimeout(FileList._maskTimeout); - } + $('#content .mask').remove(); + this.$el.removeClass('hidden'); }, scrollTo:function(file) { //scroll to and highlight preselected file @@ -850,29 +984,11 @@ window.FileList={ */ isAllSelected: function() { return $('#select_all').prop('checked'); - }, - - /** - * Returns the download URL of the given file - * @param filename file name of the file - * @param dir optional directory in which the file name is, defaults to the current directory - */ - getDownloadUrl: function(filename, dir) { - var files = filename; - if ($.isArray(filename)) { - files = JSON.stringify(filename); - } - var params = { - dir: dir || FileList.getCurrentDirectory(), - files: files - }; - return OC.filePath('files', 'ajax', 'download.php') + '?' + OC.buildQueryString(params); } }; $(document).ready(function() { - var baseDir, - isPublic = !!$('#isPublic').val(); + FileList.initialize(); // handle upload events var file_upload_start = $('#file_upload_start'); @@ -907,8 +1023,13 @@ $(document).ready(function() { {name: 'requesttoken', value: oc_requesttoken} ]; }; + } else { + // cancel uploads to current dir if no permission + var isCreatable = (FileList.getDirectoryPermissions() & OC.PERMISSION_CREATE) !== 0; + if (!isCreatable) { + return false; + } } - }); file_upload_start.on('fileuploadadd', function(e, data) { OC.Upload.log('filelist handle fileuploadadd', e, data); @@ -993,31 +1114,11 @@ $(document).ready(function() { if (data.files[0].size>=0) { size=data.files[0].size; } - var date=new Date(); - var param = {}; - if ($('#publicUploadRequestToken').exists()) { - param.download_url = document.location.href + '&download&path=/' + $('#dir').val() + '/' + file.name; - } //should the file exist in the list remove it FileList.remove(file.name); // create new file context - data.context = FileList.addFile(file.name, file.size, date, false, false, param); - - // update file data - data.context.attr('data-mime',file.mime).attr('data-id',file.id).attr('data-etag', file.etag); - - var permissions = data.context.data('permissions'); - if (permissions !== file.permissions) { - data.context.attr('data-permissions', file.permissions); - data.context.data('permissions', file.permissions); - } - FileActions.display(data.context.find('td.filename'), true); - - var path = getPathForPreview(file.name); - Files.lazyLoadPreview(path, file.mime, function(previewpath) { - data.context.find('td.filename').attr('style','background-image:url('+previewpath+')'); - }, null, null, file.etag); + data.context = FileList.add(file, {insert: true}); } } }); @@ -1049,31 +1150,6 @@ $(document).ready(function() { }); $('#notification').hide(); - $('#notification').on('click', '.undo', function() { - if (FileList.deleteFiles) { - $.each(FileList.deleteFiles,function(index,file) { - FileList.findFileEl(file).show(); - }); - FileList.deleteCanceled=true; - FileList.deleteFiles=null; - } else if (FileList.replaceOldName && FileList.replaceNewName) { - if (FileList.replaceIsNewFile) { - // Delete the new uploaded file - FileList.deleteCanceled = false; - FileList.deleteFiles = [FileList.replaceOldName]; - } else { - FileList.findFileEl(FileList.replaceOldName).show(); - } - $('tr[data-replace="true"').remove(); - FileList.findFileEl(FileList.replaceNewName).show(); - FileList.replaceCanceled = true; - FileList.replaceOldName = null; - FileList.replaceNewName = null; - FileList.replaceIsNewFile = null; - } - FileList.lastAction = null; - OC.Notification.hide(); - }); $('#notification:first-child').on('click', '.replace', function() { OC.Notification.hide(function() { FileList.replace($('#notification > span').attr('data-oldName'), $('#notification > span').attr('data-newName'), $('#notification > span').attr('data-isNewFile')); @@ -1081,7 +1157,7 @@ $(document).ready(function() { }); $('#notification:first-child').on('click', '.suggest', function() { var file = $('#notification > span').attr('data-oldName'); - FileList.findFileEl(file).show(); + FileList.findFileEl(file).removeClass('hidden'); OC.Notification.hide(); }); $('#notification:first-child').on('click', '.cancel', function() { @@ -1130,34 +1206,32 @@ $(document).ready(function() { } // disable ajax/history API for public app (TODO: until it gets ported) - if (!isPublic) { - // fallback to hashchange when no history support - if (!window.history.pushState) { - $(window).on('hashchange', function() { - FileList.changeDirectory(parseCurrentDirFromUrl(), false); - }); + // fallback to hashchange when no history support + if (!window.history.pushState) { + $(window).on('hashchange', function() { + FileList.changeDirectory(parseCurrentDirFromUrl(), false); + }); + } + window.onpopstate = function(e) { + var targetDir; + if (e.state && e.state.dir) { + targetDir = e.state.dir; } - window.onpopstate = function(e) { - var targetDir; - if (e.state && e.state.dir) { - targetDir = e.state.dir; - } - else{ - // read from URL - targetDir = parseCurrentDirFromUrl(); - } - if (targetDir) { - FileList.changeDirectory(targetDir, false); - } - }; - - if (parseInt($('#ajaxLoad').val(), 10) === 1) { - // need to initially switch the dir to the one from the hash (IE8) - FileList.changeDirectory(parseCurrentDirFromUrl(), false, true); + else{ + // read from URL + targetDir = parseCurrentDirFromUrl(); + } + if (targetDir) { + FileList.changeDirectory(targetDir, false); } + }; - FileList.setCurrentDir(parseCurrentDirFromUrl(), false); - } + var dir = parseCurrentDirFromUrl(); + // trigger ajax load, deferred to let sub-apps do their overrides first + setTimeout(function() { + FileList.changeDirectory(dir, false, true); + }, 0); FileList.createFileSummary(); }); + diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 1137364db4a..4c2d87d808c 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -161,80 +161,33 @@ var Files = { }); }, - lastWidth: 0, - - initBreadCrumbs: function () { - var $controls = $('#controls'); - - Files.lastWidth = 0; - Files.breadcrumbs = []; - - // initialize with some extra space - Files.breadcrumbsWidth = 64; - if ( document.getElementById("navigation") ) { - Files.breadcrumbsWidth += $('#navigation').get(0).offsetWidth; + /** + * Returns the download URL of the given file(s) + * @param filename string or array of file names to download + * @param dir optional directory in which the file name is, defaults to the current directory + */ + getDownloadUrl: function(filename, dir) { + if ($.isArray(filename)) { + filename = JSON.stringify(filename); } - Files.hiddenBreadcrumbs = 0; - - $.each($('.crumb'), function(index, breadcrumb) { - Files.breadcrumbs[index] = breadcrumb; - Files.breadcrumbsWidth += $(breadcrumb).get(0).offsetWidth; - }); - - $.each($('#controls .actions>div'), function(index, action) { - Files.breadcrumbsWidth += $(action).get(0).offsetWidth; - }); - - // event handlers for breadcrumb items - $controls.find('.crumb a').on('click', onClickBreadcrumb); - - // setup drag and drop - $controls.find('.crumb:not(.last)').droppable(crumbDropOptions); + var params = { + dir: dir || FileList.getCurrentDirectory(), + files: filename + }; + return this.getAjaxUrl('download', params); }, - resizeBreadcrumbs: function (width, firstRun) { - if (width !== Files.lastWidth) { - if ((width < Files.lastWidth || firstRun) && width < Files.breadcrumbsWidth) { - if (Files.hiddenBreadcrumbs === 0) { - bc = $(Files.breadcrumbs[1]).get(0); - if (typeof bc != 'undefined') { - Files.breadcrumbsWidth -= bc.offsetWidth; - $(Files.breadcrumbs[1]).find('a').hide(); - $(Files.breadcrumbs[1]).append('...'); - Files.breadcrumbsWidth += bc.offsetWidth; - Files.hiddenBreadcrumbs = 2; - } - } - var i = Files.hiddenBreadcrumbs; - while (width < Files.breadcrumbsWidth && i > 1 && i < Files.breadcrumbs.length - 1) { - Files.breadcrumbsWidth -= $(Files.breadcrumbs[i]).get(0).offsetWidth; - $(Files.breadcrumbs[i]).hide(); - Files.hiddenBreadcrumbs = i; - i++; - } - } else if (width > Files.lastWidth && Files.hiddenBreadcrumbs > 0) { - var i = Files.hiddenBreadcrumbs; - while (width > Files.breadcrumbsWidth && i > 0) { - if (Files.hiddenBreadcrumbs === 1) { - Files.breadcrumbsWidth -= $(Files.breadcrumbs[1]).get(0).offsetWidth; - $(Files.breadcrumbs[1]).find('span').remove(); - $(Files.breadcrumbs[1]).find('a').show(); - Files.breadcrumbsWidth += $(Files.breadcrumbs[1]).get(0).offsetWidth; - } else { - $(Files.breadcrumbs[i]).show(); - Files.breadcrumbsWidth += $(Files.breadcrumbs[i]).get(0).offsetWidth; - if (Files.breadcrumbsWidth > width) { - Files.breadcrumbsWidth -= $(Files.breadcrumbs[i]).get(0).offsetWidth; - $(Files.breadcrumbs[i]).hide(); - break; - } - } - i--; - Files.hiddenBreadcrumbs = i; - } - } - Files.lastWidth = width; + /** + * Returns the ajax URL for a given action + * @param action action string + * @param params optional params map + */ + getAjaxUrl: function(action, params) { + var q = ''; + if (params) { + q = '?' + OC.buildQueryString(params); } + return OC.filePath('files', 'ajax', action + '.php') + q; } }; $(document).ready(function() { @@ -245,14 +198,10 @@ $(document).ready(function() { Files.displayEncryptionWarning(); Files.bindKeyboardShortcuts(document, jQuery); - FileList.postProcessList(); Files.setupDragAndDrop(); $('#file_action_panel').attr('activeAction', false); - // allow dropping on the "files" app icon - $('ul#apps li:first-child').data('dir','').droppable(crumbDropOptions); - // Triggers invisible file input $('#upload a').on('click', function() { $(this).parent().children('#file_upload_start').trigger('click'); @@ -311,7 +260,7 @@ $(document).ready(function() { var filename=$(this).parent().parent().attr('data-file'); var tr = FileList.findFileEl(filename); var renaming=tr.data('renaming'); - if (!renaming && !FileList.isLoading(filename)) { + if (!renaming) { FileActions.currentFile = $(this).parent(); var mime=FileActions.getCurrentMimeType(); var type=FileActions.getCurrentType(); @@ -377,15 +326,15 @@ $(document).ready(function() { dir = OC.dirname(dir) || '/'; } else { - files = getSelectedFilesTrash('name'); + files = Files.getSelectedFiles('name'); } OC.Notification.show(t('files','Your download is being prepared. This might take some time if the files are big.')); - OC.redirect(FileList.getDownloadUrl(files, dir)); + OC.redirect(Files.getDownloadUrl(files, dir)); return false; }); $('.delete-selected').click(function(event) { - var files=getSelectedFilesTrash('name'); + var files = Files.getSelectedFiles('name'); event.preventDefault(); if (FileList.isAllSelected()) { files = null; @@ -403,16 +352,6 @@ $(document).ready(function() { //do a background scan if needed scanFiles(); - Files.initBreadCrumbs(); - - $(window).resize(function() { - var width = $(this).width(); - Files.resizeBreadcrumbs(width, false); - }); - - var width = $(this).width(); - Files.resizeBreadcrumbs(width, true); - // display storage warnings setTimeout(Files.displayStorageWarnings, 100); OC.Notification.setDefault(Files.displayStorageWarnings); @@ -503,7 +442,7 @@ var createDragShadow = function(event) { $(event.target).parents('tr').find('td input:first').prop('checked',true); } - var selectedFiles = getSelectedFilesTrash(); + var selectedFiles = Files.getSelectedFiles(); if (!isDragSelected && selectedFiles.length === 1) { //revert the selection @@ -619,52 +558,8 @@ var folderDropOptions={ tolerance: 'pointer' }; -var crumbDropOptions={ - drop: function( event, ui ) { - var target=$(this).data('dir'); - var dir = $('#dir').val(); - while(dir.substr(0,1) === '/') {//remove extra leading /'s - dir=dir.substr(1); - } - dir = '/' + dir; - if (dir.substr(-1,1) !== '/') { - dir = dir + '/'; - } - if (target === dir || target+'/' === dir) { - return; - } - var files = ui.helper.find('tr'); - $(files).each(function(i,row) { - var dir = $(row).data('dir'); - var file = $(row).data('filename'); - //slapdash selector, tracking down our original element that the clone budded off of. - var origin = $('tr[data-id=' + $(row).data('origin') + ']'); - var td = origin.children('td.filename'); - var oldBackgroundImage = td.css('background-image'); - td.css('background-image', 'url('+ OC.imagePath('core', 'loading.gif') + ')'); - $.post(OC.filePath('files', 'ajax', 'move.php'), { dir: dir, file: file, target: target }, function(result) { - if (result) { - if (result.status === 'success') { - FileList.remove(file); - procesSelection(); - $('#notification').hide(); - } else { - $('#notification').hide(); - $('#notification').text(result.data.message); - $('#notification').fadeIn(); - } - } else { - OC.dialogs.alert(t('files', 'Error moving file'), t('files', 'Error')); - } - td.css('background-image', oldBackgroundImage); - }); - }); - }, - tolerance: 'pointer' -}; - function procesSelection() { - var selected = getSelectedFilesTrash(); + var selected = Files.getSelectedFiles(); var selectedFiles = selected.filter(function(el) { return el.type==='file'; }); @@ -714,7 +609,7 @@ function procesSelection() { * if property is set, an array with that property for each file is returnd * if it's ommited an array of objects with all properties is returned */ -function getSelectedFilesTrash(property) { +Files.getSelectedFiles = function(property) { var elements=$('td.filename input:checkbox:checked').parent().parent(); var files=[]; elements.each(function(i,element) { @@ -755,25 +650,30 @@ function getPathForPreview(name) { return path; } +/** + * Generates a preview URL based on the URL space. + * @param urlSpec map with {x: width, y: height, file: file path} + * @return preview URL + */ +Files.generatePreviewUrl = function(urlSpec) { + urlSpec = urlSpec || {}; + if (!urlSpec.x) { + urlSpec.x = $('#filestable').data('preview-x'); + } + if (!urlSpec.y) { + urlSpec.y = $('#filestable').data('preview-y'); + } + urlSpec.forceIcon = 0; + return OC.generateUrl('/core/preview.png?') + $.param(urlSpec); +} + Files.lazyLoadPreview = function(path, mime, ready, width, height, etag) { // get mime icon url Files.getMimeIcon(mime, function(iconURL) { - var urlSpec = {}; var previewURL; + urlSpec = {}; ready(iconURL); // set mimeicon URL - // now try getting a preview thumbnail URL - if ( ! width ) { - width = $('#filestable').data('preview-x'); - } - if ( ! height ) { - height = $('#filestable').data('preview-y'); - } - // note: the order of arguments must match the one - // from the server's template so that the browser - // knows it's the same file for caching - urlSpec.x = width; - urlSpec.y = height; urlSpec.file = Files.fixPath(path); if (etag){ @@ -784,15 +684,9 @@ Files.lazyLoadPreview = function(path, mime, ready, width, height, etag) { console.warn('Files.lazyLoadPreview(): missing etag argument'); } - if ( $('#isPublic').length ) { - urlSpec.t = $('#dirToken').val(); - previewURL = OC.generateUrl('/publicpreview.png?') + $.param(urlSpec); - } else { - previewURL = OC.generateUrl('/core/preview.png?') + $.param(urlSpec); - } + previewURL = Files.generatePreviewUrl(urlSpec); previewURL = previewURL.replace('(', '%28'); previewURL = previewURL.replace(')', '%29'); - previewURL += '&forceIcon=0'; // preload image to prevent delay // this will make the browser cache the image @@ -841,14 +735,8 @@ function checkTrashStatus() { }); } -function onClickBreadcrumb(e) { - var $el = $(e.target).closest('.crumb'), - $targetDir = $el.data('dir'), - isPublic = !!$('#isPublic').val(); - - if ($targetDir !== undefined && !isPublic) { - e.preventDefault(); - FileList.changeDirectory(decodeURIComponent($targetDir)); - } +// override core's fileDownloadPath (legacy) +function fileDownloadPath(dir, file) { + return Files.getDownloadUrl(file, dir); } diff --git a/apps/files/lib/app.php b/apps/files/lib/app.php index fea88faa92a..adfca669577 100644 --- a/apps/files/lib/app.php +++ b/apps/files/lib/app.php @@ -84,25 +84,7 @@ class App { ) { // successful rename $meta = $this->view->getFileInfo($dir . '/' . $newname); - if ($meta['mimetype'] === 'httpd/unix-directory') { - $meta['type'] = 'dir'; - } - else { - $meta['type'] = 'file'; - } - // these need to be set for determineIcon() - $meta['isPreviewAvailable'] = \OC::$server->getPreviewManager()->isMimeSupported($meta['mimetype']); - $meta['directory'] = $dir; - $fileinfo = array( - 'id' => $meta['fileid'], - 'mime' => $meta['mimetype'], - 'size' => $meta['size'], - 'etag' => $meta['etag'], - 'directory' => $meta['directory'], - 'name' => $newname, - 'isPreviewAvailable' => $meta['isPreviewAvailable'], - 'icon' => \OCA\Files\Helper::determineIcon($meta) - ); + $fileinfo = \OCA\Files\Helper::formatFileInfo($meta); $result['success'] = true; $result['data'] = $fileinfo; } else { diff --git a/apps/files/lib/helper.php b/apps/files/lib/helper.php index c41e2d15581..b765fdaf3e3 100644 --- a/apps/files/lib/helper.php +++ b/apps/files/lib/helper.php @@ -19,11 +19,17 @@ class Helper 'usedSpacePercent' => (int)$storageInfo['relative']); } + /** + * Determine icon for a given file + * + * @param \OC\Files\FileInfo $file file info + * @return string icon URL + */ public static function determineIcon($file) { if($file['type'] === 'dir') { $dir = $file['directory']; $icon = \OC_Helper::mimetypeIcon('dir'); - $absPath = \OC\Files\Filesystem::getView()->getAbsolutePath($dir.'/'.$file['name']); + $absPath = $file->getPath(); $mount = \OC\Files\Filesystem::getMountManager()->find($absPath); if (!is_null($mount)) { $sid = $mount->getStorageId(); @@ -38,11 +44,7 @@ class Helper } } }else{ - if($file['isPreviewAvailable']) { - $pathForPreview = $file['directory'] . '/' . $file['name']; - return \OC_Helper::previewIcon($pathForPreview) . '&c=' . $file['etag']; - } - $icon = \OC_Helper::mimetypeIcon($file['mimetype']); + $icon = \OC_Helper::mimetypeIcon($file->getMimetype()); } return substr($icon, 0, -3) . 'svg'; @@ -69,52 +71,58 @@ class Helper } /** - * Retrieves the contents of the given directory and - * returns it as a sorted array. - * @param string $dir path to the directory - * @return array of files + * Formats the file info to be returned as JSON to the client. + * + * @param \OCP\Files\FileInfo file info + * @return array formatted file info */ - public static function getFiles($dir) { - $content = \OC\Files\Filesystem::getDirectoryContent($dir); - $files = array(); + public static function formatFileInfo($i) { + $entry = array(); - foreach ($content as $i) { - $i['date'] = \OCP\Util::formatDate($i['mtime']); - if ($i['type'] === 'file') { - $fileinfo = pathinfo($i['name']); - $i['basename'] = $fileinfo['filename']; - if (!empty($fileinfo['extension'])) { - $i['extension'] = '.' . $fileinfo['extension']; - } else { - $i['extension'] = ''; - } - } - $i['directory'] = $dir; - $i['isPreviewAvailable'] = \OC::$server->getPreviewManager()->isMimeSupported($i['mimetype']); - $i['icon'] = \OCA\Files\Helper::determineIcon($i); - $files[] = $i; + $entry['id'] = $i['fileid']; + $entry['date'] = \OCP\Util::formatDate($i['mtime']); + $entry['mtime'] = $i['mtime'] * 1000; + // only pick out the needed attributes + $entry['icon'] = \OCA\Files\Helper::determineIcon($i); + if (\OC::$server->getPreviewManager()->isMimeSupported($i['mimetype'])) { + $entry['isPreviewAvailable'] = true; + } + $entry['name'] = $i['name']; + $entry['permissions'] = $i['permissions']; + $entry['mimetype'] = $i['mimetype']; + $entry['size'] = $i['size']; + $entry['type'] = $i['type']; + $entry['etag'] = $i['etag']; + if (isset($i['displayname_owner'])) { + $entry['shareOwner'] = $i['displayname_owner']; } + return $entry; + } - usort($files, array('\OCA\Files\Helper', 'fileCmp')); + /** + * Format file info for JSON + * @param \OCP\Files\FileInfo[] $fileInfos file infos + */ + public static function formatFileInfos($fileInfos) { + $files = array(); + foreach ($fileInfos as $i) { + $files[] = self::formatFileInfo($i); + } return $files; } /** - * Splits the given path into a breadcrumb structure. - * @param string $dir path to process - * @return array where each entry is a hash of the absolute - * directory path and its name + * Retrieves the contents of the given directory and + * returns it as a sorted array of FileInfo. + * + * @param string $dir path to the directory + * @return \OCP\Files\FileInfo[] files */ - public static function makeBreadcrumb($dir){ - $breadcrumb = array(); - $pathtohere = ''; - foreach (explode('/', $dir) as $i) { - if ($i !== '') { - $pathtohere .= '/' . $i; - $breadcrumb[] = array('dir' => $pathtohere, 'name' => $i); - } - } - return $breadcrumb; + public static function getFiles($dir) { + $content = \OC\Files\Filesystem::getDirectoryContent($dir); + + usort($content, array('\OCA\Files\Helper', 'fileCmp')); + return $content; } } diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index 34acd9c4f51..95edd625cb3 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -1,6 +1,5 @@
      - -
      +
      -
      +
      -
      class="hidden">t('Nothing in here. Upload something!'))?>
      +
      t('External storage')); ?> t('Configuration')); ?>  
      '+info+'
      - - - + -
      class="hidden" id='headerName'> + class="hidden" id="headerSize">t('Size')); ?>class="hidden" id="headerDate"> +
      @@ -111,7 +109,6 @@ - diff --git a/apps/files/templates/part.breadcrumb.php b/apps/files/templates/part.breadcrumb.php deleted file mode 100644 index 69b4cbca10d..00000000000 --- a/apps/files/templates/part.breadcrumb.php +++ /dev/null @@ -1,17 +0,0 @@ -
      " data-dir=''> - - - - - -
      - -
      svg" - data-dir=''> - -
      - -160) $relative_date_color = 160; - $name = \OCP\Util::encodePath($file['name']); - $directory = \OCP\Util::encodePath($file['directory']); ?> - - data-share-owner="" - - > - - - - - style="background-image:url()" - > - - - - - - - - - - - - - - - - - - - - - - - - - - - - -viewMock->expects($this->any()) ->method('getFileInfo') - ->will($this->returnValue(array( + ->will($this->returnValue(new \OC\Files\FileInfo( + '/test', + null, + '/test', + array( 'fileid' => 123, 'type' => 'dir', 'mimetype' => 'httpd/unix-directory', + 'mtime' => 0, + 'permissions' => 31, 'size' => 18, 'etag' => 'abcdef', 'directory' => '/', 'name' => 'new_name', - ))); + )))); $result = $this->files->rename($dir, $oldname, $newname); $this->assertTrue($result['success']); $this->assertEquals(123, $result['data']['id']); $this->assertEquals('new_name', $result['data']['name']); - $this->assertEquals('/test', $result['data']['directory']); $this->assertEquals(18, $result['data']['size']); - $this->assertEquals('httpd/unix-directory', $result['data']['mime']); + $this->assertEquals('httpd/unix-directory', $result['data']['mimetype']); $icon = \OC_Helper::mimetypeIcon('dir'); $icon = substr($icon, 0, -3) . 'svg'; $this->assertEquals($icon, $result['data']['icon']); - $this->assertFalse($result['data']['isPreviewAvailable']); } /** @@ -148,29 +152,33 @@ class Test_OC_Files_App_Rename extends \PHPUnit_Framework_TestCase { $this->viewMock->expects($this->any()) ->method('getFileInfo') - ->will($this->returnValue(array( + ->will($this->returnValue(new \OC\Files\FileInfo( + '/', + null, + '/', + array( 'fileid' => 123, 'type' => 'dir', 'mimetype' => 'httpd/unix-directory', + 'mtime' => 0, + 'permissions' => 31, 'size' => 18, 'etag' => 'abcdef', 'directory' => '/', 'name' => 'new_name', - ))); + )))); $result = $this->files->rename($dir, $oldname, $newname); $this->assertTrue($result['success']); $this->assertEquals(123, $result['data']['id']); - $this->assertEquals('newname', $result['data']['name']); - $this->assertEquals('/', $result['data']['directory']); + $this->assertEquals('new_name', $result['data']['name']); $this->assertEquals(18, $result['data']['size']); - $this->assertEquals('httpd/unix-directory', $result['data']['mime']); + $this->assertEquals('httpd/unix-directory', $result['data']['mimetype']); $this->assertEquals('abcdef', $result['data']['etag']); $icon = \OC_Helper::mimetypeIcon('dir'); $icon = substr($icon, 0, -3) . 'svg'; $this->assertEquals($icon, $result['data']['icon']); - $this->assertFalse($result['data']['isPreviewAvailable']); } /** diff --git a/apps/files/tests/js/breadcrumbSpec.js b/apps/files/tests/js/breadcrumbSpec.js new file mode 100644 index 00000000000..1bfe5308a27 --- /dev/null +++ b/apps/files/tests/js/breadcrumbSpec.js @@ -0,0 +1,248 @@ +/** +* ownCloud +* +* @author Vincent Petry +* @copyright 2014 Vincent Petry +* +* This library is free software; you can redistribute it and/or +* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE +* License as published by the Free Software Foundation; either +* version 3 of the License, or any later version. +* +* This library is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU AFFERO GENERAL PUBLIC LICENSE for more details. +* +* You should have received a copy of the GNU Affero General Public +* License along with this library. If not, see . +* +*/ + +/* global BreadCrumb */ +describe('BreadCrumb tests', function() { + describe('Rendering', function() { + var bc; + beforeEach(function() { + bc = new BreadCrumb({ + getCrumbUrl: function(part, index) { + // for testing purposes + return part.dir + '#' + index; + } + }); + }); + afterEach(function() { + bc = null; + }); + it('Renders its own container', function() { + bc.render(); + expect(bc.$el.hasClass('breadcrumb')).toEqual(true); + }); + it('Renders root by default', function() { + var $crumbs; + bc.render(); + $crumbs = bc.$el.find('.crumb'); + expect($crumbs.length).toEqual(1); + expect($crumbs.eq(0).find('a').attr('href')).toEqual('/#0'); + expect($crumbs.eq(0).find('img').length).toEqual(1); + expect($crumbs.eq(0).attr('data-dir')).toEqual('/'); + }); + it('Renders root when switching to root', function() { + var $crumbs; + bc.setDirectory('/somedir'); + bc.setDirectory('/'); + $crumbs = bc.$el.find('.crumb'); + expect($crumbs.length).toEqual(1); + expect($crumbs.eq(0).attr('data-dir')).toEqual('/'); + }); + it('Renders last crumb with "last" class', function() { + bc.setDirectory('/abc/def'); + expect(bc.$el.find('.crumb:last').hasClass('last')).toEqual(true); + }); + it('Renders single path section', function() { + var $crumbs; + bc.setDirectory('/somedir'); + $crumbs = bc.$el.find('.crumb'); + expect($crumbs.length).toEqual(2); + expect($crumbs.eq(0).find('a').attr('href')).toEqual('/#0'); + expect($crumbs.eq(0).find('img').length).toEqual(1); + expect($crumbs.eq(0).attr('data-dir')).toEqual('/'); + expect($crumbs.eq(1).find('a').attr('href')).toEqual('/somedir#1'); + expect($crumbs.eq(1).find('img').length).toEqual(0); + expect($crumbs.eq(1).attr('data-dir')).toEqual('/somedir'); + }); + it('Renders multiple path sections and special chars', function() { + var $crumbs; + bc.setDirectory('/somedir/with space/abc'); + $crumbs = bc.$el.find('.crumb'); + expect($crumbs.length).toEqual(4); + expect($crumbs.eq(0).find('a').attr('href')).toEqual('/#0'); + expect($crumbs.eq(0).find('img').length).toEqual(1); + expect($crumbs.eq(0).attr('data-dir')).toEqual('/'); + + expect($crumbs.eq(1).find('a').attr('href')).toEqual('/somedir#1'); + expect($crumbs.eq(1).find('img').length).toEqual(0); + expect($crumbs.eq(1).attr('data-dir')).toEqual('/somedir'); + + expect($crumbs.eq(2).find('a').attr('href')).toEqual('/somedir/with space#2'); + expect($crumbs.eq(2).find('img').length).toEqual(0); + expect($crumbs.eq(2).attr('data-dir')).toEqual('/somedir/with space'); + + expect($crumbs.eq(3).find('a').attr('href')).toEqual('/somedir/with space/abc#3'); + expect($crumbs.eq(3).find('img').length).toEqual(0); + expect($crumbs.eq(3).attr('data-dir')).toEqual('/somedir/with space/abc'); + }); + }); + describe('Events', function() { + it('Calls onClick handler when clicking on a crumb', function() { + var handler = sinon.stub(); + var bc = new BreadCrumb({ + onClick: handler + }); + bc.setDirectory('/one/two/three/four'); + bc.$el.find('.crumb:eq(3)').click(); + expect(handler.calledOnce).toEqual(true); + expect(handler.getCall(0).thisValue).toEqual(bc.$el.find('.crumb').get(3)); + + handler.reset(); + bc.$el.find('.crumb:eq(0) a').click(); + expect(handler.calledOnce).toEqual(true); + expect(handler.getCall(0).thisValue).toEqual(bc.$el.find('.crumb').get(0)); + }); + it('Calls onDrop handler when dropping on a crumb', function() { + var droppableStub = sinon.stub($.fn, 'droppable'); + var handler = sinon.stub(); + var bc = new BreadCrumb({ + onDrop: handler + }); + bc.setDirectory('/one/two/three/four'); + expect(droppableStub.calledOnce).toEqual(true); + + expect(droppableStub.getCall(0).args[0].drop).toBeDefined(); + // simulate drop + droppableStub.getCall(0).args[0].drop({dummy: true}); + + expect(handler.calledOnce).toEqual(true); + expect(handler.getCall(0).args[0]).toEqual({dummy: true}); + + droppableStub.restore(); + }); + }); + describe('Resizing', function() { + var bc, widthStub, dummyDir, + oldUpdateTotalWidth; + + beforeEach(function() { + dummyDir = '/short name/longer name/looooooooooooonger/even longer long long long longer long/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/last one'; + + oldUpdateTotalWidth = BreadCrumb.prototype._updateTotalWidth; + BreadCrumb.prototype._updateTotalWidth = function() { + // need to set display:block for correct offsetWidth (no CSS loaded here) + $('div.crumb').css({ + 'display': 'block', + 'float': 'left' + }); + + return oldUpdateTotalWidth.apply(this, arguments); + }; + + bc = new BreadCrumb(); + widthStub = sinon.stub($.fn, 'width'); + // append dummy navigation and controls + // as they are currently used for measurements + $('#testArea').append( + '', + '
      ' + ); + + // make sure we know the test screen width + $('#testArea').css('width', 1280); + + // use test area as we need it for measurements + $('#controls').append(bc.$el); + $('#controls').append('
      Dummy action with a given width
      '); + }); + afterEach(function() { + BreadCrumb.prototype._updateTotalWidth = oldUpdateTotalWidth; + widthStub.restore(); + bc = null; + }); + it('Hides breadcrumbs to fit window', function() { + var $crumbs; + + widthStub.returns(500); + // triggers resize implicitly + bc.setDirectory(dummyDir); + $crumbs = bc.$el.find('.crumb'); + + // first one is always visible + expect($crumbs.eq(0).hasClass('hidden')).toEqual(false); + // second one has ellipsis + expect($crumbs.eq(1).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(1).find('.ellipsis').length).toEqual(1); + // there is only one ellipsis in total + expect($crumbs.find('.ellipsis').length).toEqual(1); + // subsequent elements are hidden + expect($crumbs.eq(2).hasClass('hidden')).toEqual(true); + expect($crumbs.eq(3).hasClass('hidden')).toEqual(true); + expect($crumbs.eq(4).hasClass('hidden')).toEqual(true); + expect($crumbs.eq(5).hasClass('hidden')).toEqual(true); + expect($crumbs.eq(6).hasClass('hidden')).toEqual(false); + }); + it('Updates ellipsis on window size increase', function() { + var $crumbs; + + widthStub.returns(500); + // triggers resize implicitly + bc.setDirectory(dummyDir); + $crumbs = bc.$el.find('.crumb'); + + // simulate increase + $('#testArea').css('width', 1800); + bc.resize(1800); + + // first one is always visible + expect($crumbs.eq(0).hasClass('hidden')).toEqual(false); + // second one has ellipsis + expect($crumbs.eq(1).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(1).find('.ellipsis').length).toEqual(1); + // there is only one ellipsis in total + expect($crumbs.find('.ellipsis').length).toEqual(1); + // subsequent elements are hidden + expect($crumbs.eq(2).hasClass('hidden')).toEqual(true); + expect($crumbs.eq(3).hasClass('hidden')).toEqual(true); + expect($crumbs.eq(4).hasClass('hidden')).toEqual(true); + // the rest is visible + expect($crumbs.eq(5).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(6).hasClass('hidden')).toEqual(false); + }); + it('Updates ellipsis on window size decrease', function() { + var $crumbs; + + $('#testArea').css('width', 2000); + widthStub.returns(2000); + // triggers resize implicitly + bc.setDirectory(dummyDir); + $crumbs = bc.$el.find('.crumb'); + + // simulate decrease + bc.resize(500); + $('#testArea').css('width', 500); + + // first one is always visible + expect($crumbs.eq(0).hasClass('hidden')).toEqual(false); + // second one has ellipsis + expect($crumbs.eq(1).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(1).find('.ellipsis').length).toEqual(1); + // there is only one ellipsis in total + expect($crumbs.find('.ellipsis').length).toEqual(1); + // subsequent elements are hidden + expect($crumbs.eq(2).hasClass('hidden')).toEqual(true); + expect($crumbs.eq(3).hasClass('hidden')).toEqual(true); + expect($crumbs.eq(4).hasClass('hidden')).toEqual(true); + // the rest is visible + expect($crumbs.eq(5).hasClass('hidden')).toEqual(true); + expect($crumbs.eq(6).hasClass('hidden')).toEqual(false); + }); + }); +}); diff --git a/apps/files/tests/js/fileactionsSpec.js b/apps/files/tests/js/fileactionsSpec.js index 80c04b5b242..3c22c84b866 100644 --- a/apps/files/tests/js/fileactionsSpec.js +++ b/apps/files/tests/js/fileactionsSpec.js @@ -22,6 +22,7 @@ /* global OC, FileActions, FileList */ describe('FileActions tests', function() { var $filesTable; + beforeEach(function() { // init horrible parameters var $body = $('body'); @@ -34,17 +35,20 @@ describe('FileActions tests', function() { $('#dir, #permissions, #filestable').remove(); }); it('calling display() sets file actions', function() { - // note: download_url is actually the link target, not the actual download URL... - var $tr = FileList.addFile('testName.txt', 1234, new Date(), false, false, {download_url: 'test/download/url'}); - - // no actions before call - expect($tr.find('.action.action-download').length).toEqual(0); - expect($tr.find('.action.action-rename').length).toEqual(0); - expect($tr.find('.action.delete').length).toEqual(0); + var fileData = { + id: 18, + type: 'file', + name: 'testName.txt', + mimetype: 'plain/text', + size: '1234', + etag: 'a01234c', + mtime: '123456' + }; - FileActions.display($tr.find('td.filename'), true); + // note: FileActions.display() is called implicitly + var $tr = FileList.add(fileData); - // actions defined after cal + // actions defined after call expect($tr.find('.action.action-download').length).toEqual(1); expect($tr.find('.action.action-download').attr('data-action')).toEqual('Download'); expect($tr.find('.nametext .action.action-rename').length).toEqual(1); @@ -52,7 +56,16 @@ describe('FileActions tests', function() { expect($tr.find('.action.delete').length).toEqual(1); }); it('calling display() twice correctly replaces file actions', function() { - var $tr = FileList.addFile('testName.txt', 1234, new Date(), false, false, {download_url: 'test/download/url'}); + var fileData = { + id: 18, + type: 'file', + name: 'testName.txt', + mimetype: 'plain/text', + size: '1234', + etag: 'a01234c', + mtime: '123456' + }; + var $tr = FileList.add(fileData); FileActions.display($tr.find('td.filename'), true); FileActions.display($tr.find('td.filename'), true); @@ -64,19 +77,36 @@ describe('FileActions tests', function() { }); it('redirects to download URL when clicking download', function() { var redirectStub = sinon.stub(OC, 'redirect'); - // note: download_url is actually the link target, not the actual download URL... - var $tr = FileList.addFile('test download File.txt', 1234, new Date(), false, false, {download_url: 'test/download/url'}); + var fileData = { + id: 18, + type: 'file', + name: 'testName.txt', + mimetype: 'plain/text', + size: '1234', + etag: 'a01234c', + mtime: '123456' + }; + var $tr = FileList.add(fileData); FileActions.display($tr.find('td.filename'), true); $tr.find('.action-download').click(); expect(redirectStub.calledOnce).toEqual(true); - expect(redirectStub.getCall(0).args[0]).toEqual(OC.webroot + '/index.php/apps/files/ajax/download.php?dir=%2Fsubdir&files=test%20download%20File.txt'); + expect(redirectStub.getCall(0).args[0]).toEqual(OC.webroot + '/index.php/apps/files/ajax/download.php?dir=%2Fsubdir&files=testName.txt'); redirectStub.restore(); }); it('deletes file when clicking delete', function() { var deleteStub = sinon.stub(FileList, 'do_delete'); - var $tr = FileList.addFile('test delete File.txt', 1234, new Date()); + var fileData = { + id: 18, + type: 'file', + name: 'testName.txt', + mimetype: 'plain/text', + size: '1234', + etag: 'a01234c', + mtime: '123456' + }; + var $tr = FileList.add(fileData); FileActions.display($tr.find('td.filename'), true); $tr.find('.action.delete').click(); diff --git a/apps/files/tests/js/filelistSpec.js b/apps/files/tests/js/filelistSpec.js index 8f4cb86ab4a..ca85a360cf5 100644 --- a/apps/files/tests/js/filelistSpec.js +++ b/apps/files/tests/js/filelistSpec.js @@ -21,6 +21,9 @@ /* global OC, FileList */ describe('FileList tests', function() { + var testFiles, alertStub, notificationStub, + pushStateStub; + beforeEach(function() { // init horrible parameters var $body = $('body'); @@ -28,45 +31,784 @@ describe('FileList tests', function() { $body.append(''); // dummy files table $body.append('
      '); + + // prevents URL changes during tests + pushStateStub = sinon.stub(window.history, 'pushState'); + + alertStub = sinon.stub(OC.dialogs, 'alert'); + notificationStub = sinon.stub(OC.Notification, 'show'); + + // init parameters and test table elements + $('#testArea').append( + '' + + '' + + // dummy controls + '
      ' + + '
      ' + + '
      ' + + '
      ' + + // dummy table + '' + + '' + + '' + + '
      ' + + '
      Empty content message
      ' + ); + + testFiles = [{ + id: 1, + type: 'file', + name: 'One.txt', + mimetype: 'text/plain', + size: 12 + }, { + id: 2, + type: 'file', + name: 'Two.jpg', + mimetype: 'image/jpeg', + size: 12049 + }, { + id: 3, + type: 'file', + name: 'Three.pdf', + mimetype: 'application/pdf', + size: 58009 + }, { + id: 4, + type: 'dir', + name: 'somedir', + mimetype: 'httpd/unix-directory', + size: 250 + }]; + + FileList.initialize(); }); afterEach(function() { + testFiles = undefined; + FileList.initialized = false; + FileList.isEmpty = true; + delete FileList._reloadCall; + $('#dir, #permissions, #filestable').remove(); + notificationStub.restore(); + alertStub.restore(); + pushStateStub.restore(); + }); + describe('Getters', function() { + it('Returns the current directory', function() { + $('#dir').val('/one/two/three'); + expect(FileList.getCurrentDirectory()).toEqual('/one/two/three'); + }); + it('Returns the directory permissions as int', function() { + $('#permissions').val('23'); + expect(FileList.getDirectoryPermissions()).toEqual(23); + }); + }); + describe('Adding files', function() { + var clock, now; + beforeEach(function() { + // to prevent date comparison issues + clock = sinon.useFakeTimers(); + now = new Date(); + }); + afterEach(function() { + clock.restore(); + }); + it('generates file element with correct attributes when calling add() with file data', function() { + var fileData = { + id: 18, + type: 'file', + name: 'testName.txt', + mimetype: 'plain/text', + size: '1234', + etag: 'a01234c', + mtime: '123456' + }; + var $tr = FileList.add(fileData); + + expect($tr).toBeDefined(); + expect($tr[0].tagName.toLowerCase()).toEqual('tr'); + expect($tr.attr('data-id')).toEqual('18'); + expect($tr.attr('data-type')).toEqual('file'); + expect($tr.attr('data-file')).toEqual('testName.txt'); + expect($tr.attr('data-size')).toEqual('1234'); + expect($tr.attr('data-etag')).toEqual('a01234c'); + expect($tr.attr('data-permissions')).toEqual('31'); + expect($tr.attr('data-mime')).toEqual('plain/text'); + expect($tr.attr('data-mtime')).toEqual('123456'); + expect($tr.find('a.name').attr('href')).toEqual(OC.webroot + '/index.php/apps/files/ajax/download.php?dir=%2Fsubdir&files=testName.txt'); + + expect($tr.find('.filesize').text()).toEqual('1 kB'); + expect(FileList.findFileEl('testName.txt')[0]).toEqual($tr[0]); + }); + it('generates dir element with correct attributes when calling add() with dir data', function() { + var fileData = { + id: 19, + type: 'dir', + name: 'testFolder', + mimetype: 'httpd/unix-directory', + size: '1234', + etag: 'a01234c', + mtime: '123456' + }; + var $tr = FileList.add(fileData); + + expect($tr).toBeDefined(); + expect($tr[0].tagName.toLowerCase()).toEqual('tr'); + expect($tr.attr('data-id')).toEqual('19'); + expect($tr.attr('data-type')).toEqual('dir'); + expect($tr.attr('data-file')).toEqual('testFolder'); + expect($tr.attr('data-size')).toEqual('1234'); + expect($tr.attr('data-etag')).toEqual('a01234c'); + expect($tr.attr('data-permissions')).toEqual('31'); + expect($tr.attr('data-mime')).toEqual('httpd/unix-directory'); + expect($tr.attr('data-mtime')).toEqual('123456'); + + expect($tr.find('.filesize').text()).toEqual('1 kB'); + + expect(FileList.findFileEl('testFolder')[0]).toEqual($tr[0]); + }); + it('generates file element with default attributes when calling add() with minimal data', function() { + var fileData = { + type: 'file', + name: 'testFile.txt' + }; + + clock.tick(123456); + var $tr = FileList.add(fileData); + + expect($tr).toBeDefined(); + expect($tr[0].tagName.toLowerCase()).toEqual('tr'); + expect($tr.attr('data-id')).toEqual(null); + expect($tr.attr('data-type')).toEqual('file'); + expect($tr.attr('data-file')).toEqual('testFile.txt'); + expect($tr.attr('data-size')).toEqual(null); + expect($tr.attr('data-etag')).toEqual(null); + expect($tr.attr('data-permissions')).toEqual('31'); + expect($tr.attr('data-mime')).toEqual(null); + expect($tr.attr('data-mtime')).toEqual('123456'); + + expect($tr.find('.filesize').text()).toEqual('Pending'); + }); + it('generates dir element with default attributes when calling add() with minimal data', function() { + var fileData = { + type: 'dir', + name: 'testFolder' + }; + clock.tick(123456); + var $tr = FileList.add(fileData); + + expect($tr).toBeDefined(); + expect($tr[0].tagName.toLowerCase()).toEqual('tr'); + expect($tr.attr('data-id')).toEqual(null); + expect($tr.attr('data-type')).toEqual('dir'); + expect($tr.attr('data-file')).toEqual('testFolder'); + expect($tr.attr('data-size')).toEqual(null); + expect($tr.attr('data-etag')).toEqual(null); + expect($tr.attr('data-permissions')).toEqual('31'); + expect($tr.attr('data-mime')).toEqual('httpd/unix-directory'); + expect($tr.attr('data-mtime')).toEqual('123456'); + + expect($tr.find('.filesize').text()).toEqual('Pending'); + }); + it('generates file element with zero size when size is explicitly zero', function() { + var fileData = { + type: 'dir', + name: 'testFolder', + size: '0' + }; + var $tr = FileList.add(fileData); + expect($tr.find('.filesize').text()).toEqual('0 B'); + }); + it('adds new file to the end of the list before the summary', function() { + var fileData = { + type: 'file', + name: 'P comes after O.txt' + }; + FileList.setFiles(testFiles); + $tr = FileList.add(fileData); + expect($tr.index()).toEqual(4); + expect($tr.next().hasClass('summary')).toEqual(true); + }); + it('adds new file at correct position in insert mode', function() { + var fileData = { + type: 'file', + name: 'P comes after O.txt' + }; + FileList.setFiles(testFiles); + $tr = FileList.add(fileData, {insert: true}); + // after "One.txt" + expect($tr.index()).toEqual(1); + }); + it('removes empty content message and shows summary when adding first file', function() { + var fileData = { + type: 'file', + name: 'first file.txt', + size: 12 + }; + FileList.setFiles([]); + expect(FileList.isEmpty).toEqual(true); + FileList.add(fileData); + $summary = $('#fileList .summary'); + expect($summary.length).toEqual(1); + // yes, ugly... + expect($summary.find('.info').text()).toEqual('0 folders and 1 file'); + expect($summary.find('.dirinfo').hasClass('hidden')).toEqual(true); + expect($summary.find('.fileinfo').hasClass('hidden')).toEqual(false); + expect($summary.find('.filesize').text()).toEqual('12 B'); + expect($('#filestable thead th').hasClass('hidden')).toEqual(false); + expect($('#emptycontent').hasClass('hidden')).toEqual(true); + expect(FileList.isEmpty).toEqual(false); + }); }); - it('generates file element with correct attributes when calling addFile', function() { - var lastMod = new Date(10000); - // note: download_url is actually the link target, not the actual download URL... - var $tr = FileList.addFile('testName.txt', 1234, lastMod, false, false, {download_url: 'test/download/url'}); - - expect($tr).toBeDefined(); - expect($tr[0].tagName.toLowerCase()).toEqual('tr'); - expect($tr.find('a:first').attr('href')).toEqual('test/download/url'); - expect($tr.attr('data-type')).toEqual('file'); - expect($tr.attr('data-file')).toEqual('testName.txt'); - expect($tr.attr('data-size')).toEqual('1234'); - expect($tr.attr('data-permissions')).toEqual('31'); - //expect($tr.attr('data-mime')).toEqual('plain/text'); + describe('Removing files from the list', function() { + it('Removes file from list when calling remove() and updates summary', function() { + var $removedEl; + FileList.setFiles(testFiles); + $removedEl = FileList.remove('One.txt'); + expect($removedEl).toBeDefined(); + expect($removedEl.attr('data-file')).toEqual('One.txt'); + expect($('#fileList tr:not(.summary)').length).toEqual(3); + expect(FileList.findFileEl('One.txt').length).toEqual(0); + + $summary = $('#fileList .summary'); + expect($summary.length).toEqual(1); + expect($summary.find('.info').text()).toEqual('1 folder and 2 files'); + expect($summary.find('.dirinfo').hasClass('hidden')).toEqual(false); + expect($summary.find('.fileinfo').hasClass('hidden')).toEqual(false); + expect($summary.find('.filesize').text()).toEqual('69 kB'); + expect(FileList.isEmpty).toEqual(false); + }); + it('Shows empty content when removing last file', function() { + FileList.setFiles([testFiles[0]]); + FileList.remove('One.txt'); + expect($('#fileList tr:not(.summary)').length).toEqual(0); + expect(FileList.findFileEl('One.txt').length).toEqual(0); + + $summary = $('#fileList .summary'); + expect($summary.length).toEqual(0); + expect($('#filestable thead th').hasClass('hidden')).toEqual(true); + expect($('#emptycontent').hasClass('hidden')).toEqual(false); + expect(FileList.isEmpty).toEqual(true); + }); }); - it('generates dir element with correct attributes when calling addDir', function() { - var lastMod = new Date(10000); - var $tr = FileList.addDir('testFolder', 1234, lastMod, false); - - expect($tr).toBeDefined(); - expect($tr[0].tagName.toLowerCase()).toEqual('tr'); - expect($tr.attr('data-type')).toEqual('dir'); - expect($tr.attr('data-file')).toEqual('testFolder'); - expect($tr.attr('data-size')).toEqual('1234'); - expect($tr.attr('data-permissions')).toEqual('31'); - //expect($tr.attr('data-mime')).toEqual('httpd/unix-directory'); + describe('Deleting files', function() { + function doDelete() { + var request, query; + // note: normally called from FileActions + FileList.do_delete(['One.txt', 'Two.jpg']); + + expect(fakeServer.requests.length).toEqual(1); + request = fakeServer.requests[0]; + expect(request.url).toEqual(OC.webroot + '/index.php/apps/files/ajax/delete.php'); + + query = fakeServer.requests[0].requestBody; + expect(OC.parseQueryString(query)).toEqual({'dir': '/subdir', files: '["One.txt","Two.jpg"]'}); + } + it('calls delete.php, removes the deleted entries and updates summary', function() { + FileList.setFiles(testFiles); + doDelete(); + + fakeServer.requests[0].respond( + 200, + { 'Content-Type': 'application/json' }, + JSON.stringify({status: 'success'}) + ); + + expect(FileList.findFileEl('One.txt').length).toEqual(0); + expect(FileList.findFileEl('Two.jpg').length).toEqual(0); + expect(FileList.findFileEl('Three.pdf').length).toEqual(1); + expect(FileList.$fileList.find('tr:not(.summary)').length).toEqual(2); + + $summary = $('#fileList .summary'); + expect($summary.length).toEqual(1); + expect($summary.find('.info').text()).toEqual('1 folder and 1 file'); + expect($summary.find('.dirinfo').hasClass('hidden')).toEqual(false); + expect($summary.find('.fileinfo').hasClass('hidden')).toEqual(false); + expect($summary.find('.filesize').text()).toEqual('57 kB'); + expect(FileList.isEmpty).toEqual(false); + expect($('#filestable thead th').hasClass('hidden')).toEqual(false); + expect($('#emptycontent').hasClass('hidden')).toEqual(true); + + expect(notificationStub.notCalled).toEqual(true); + }); + it('updates summary when deleting last file', function() { + FileList.setFiles([testFiles[0], testFiles[1]]); + doDelete(); + + fakeServer.requests[0].respond( + 200, + { 'Content-Type': 'application/json' }, + JSON.stringify({status: 'success'}) + ); + + expect(FileList.$fileList.find('tr:not(.summary)').length).toEqual(0); + + $summary = $('#fileList .summary'); + expect($summary.length).toEqual(0); + expect(FileList.isEmpty).toEqual(true); + expect($('#filestable thead th').hasClass('hidden')).toEqual(true); + expect($('#emptycontent').hasClass('hidden')).toEqual(false); + }); + it('bring back deleted item when delete call failed', function() { + FileList.setFiles(testFiles); + doDelete(); + + fakeServer.requests[0].respond( + 200, + { 'Content-Type': 'application/json' }, + JSON.stringify({status: 'error', data: {message: 'WOOT'}}) + ); + + // files are still in the list + expect(FileList.findFileEl('One.txt').length).toEqual(1); + expect(FileList.findFileEl('Two.jpg').length).toEqual(1); + expect(FileList.$fileList.find('tr:not(.summary)').length).toEqual(4); + + expect(notificationStub.calledOnce).toEqual(true); + }); + }); + describe('Renaming files', function() { + function doRename() { + var $input, request; + + FileList.setFiles(testFiles); + + // trigger rename prompt + FileList.rename('One.txt'); + $input = FileList.$fileList.find('input.filename'); + $input.val('One_renamed.txt').blur(); + + expect(fakeServer.requests.length).toEqual(1); + var request = fakeServer.requests[0]; + expect(request.url.substr(0, request.url.indexOf('?'))).toEqual(OC.webroot + '/index.php/apps/files/ajax/rename.php'); + expect(OC.parseQueryString(request.url)).toEqual({'dir': '/subdir', newname: 'One_renamed.txt', file: 'One.txt'}); + + // element is renamed before the request finishes + expect(FileList.findFileEl('One.txt').length).toEqual(0); + expect(FileList.findFileEl('One_renamed.txt').length).toEqual(1); + // input is gone + expect(FileList.$fileList.find('input.filename').length).toEqual(0); + } + it('Keeps renamed file entry if rename ajax call suceeded', function() { + doRename(); + + fakeServer.requests[0].respond(200, {'Content-Type': 'application/json'}, JSON.stringify({ + status: 'success', + data: { + name: 'One_renamed.txt' + } + })); + + // element stays renamed + expect(FileList.findFileEl('One.txt').length).toEqual(0); + expect(FileList.findFileEl('One_renamed.txt').length).toEqual(1); + + expect(alertStub.notCalled).toEqual(true); + }); + it('Reverts file entry if rename ajax call failed', function() { + doRename(); + + fakeServer.requests[0].respond(200, {'Content-Type': 'application/json'}, JSON.stringify({ + status: 'error', + data: { + message: 'Something went wrong' + } + })); + + // element was reverted + expect(FileList.findFileEl('One.txt').length).toEqual(1); + expect(FileList.findFileEl('One_renamed.txt').length).toEqual(0); + + expect(alertStub.calledOnce).toEqual(true); + }); + it('Correctly updates file link after rename', function() { + var $tr; + doRename(); + + fakeServer.requests[0].respond(200, {'Content-Type': 'application/json'}, JSON.stringify({ + status: 'success', + data: { + name: 'One_renamed.txt' + } + })); + + $tr = FileList.findFileEl('One_renamed.txt'); + expect($tr.find('a.name').attr('href')).toEqual(OC.webroot + '/index.php/apps/files/ajax/download.php?dir=%2Fsubdir&files=One_renamed.txt'); + }); + // FIXME: fix this in the source code! + xit('Correctly updates file link after rename when path has same name', function() { + var $tr; + // evil case: because of buggy code + $('#dir').val('/One.txt/subdir'); + doRename(); + + fakeServer.requests[0].respond(200, {'Content-Type': 'application/json'}, JSON.stringify({ + status: 'success', + data: { + name: 'One_renamed.txt' + } + })); + + $tr = FileList.findFileEl('One_renamed.txt'); + expect($tr.find('a.name').attr('href')).toEqual(OC.webroot + '/index.php/apps/files/ajax/download.php?dir=%2Fsubdir&files=One.txt'); + }); + }); + describe('List rendering', function() { + it('renders a list of files using add()', function() { + var addSpy = sinon.spy(FileList, 'add'); + FileList.setFiles(testFiles); + expect(addSpy.callCount).toEqual(4); + expect($('#fileList tr:not(.summary)').length).toEqual(4); + addSpy.restore(); + }); + it('updates summary using the file sizes', function() { + var $summary; + FileList.setFiles(testFiles); + $summary = $('#fileList .summary'); + expect($summary.length).toEqual(1); + expect($summary.find('.info').text()).toEqual('1 folder and 3 files'); + expect($summary.find('.filesize').text()).toEqual('69 kB'); + }); + it('shows headers, summary and hide empty content message after setting files', function(){ + FileList.setFiles(testFiles); + expect($('#filestable thead th').hasClass('hidden')).toEqual(false); + expect($('#emptycontent').hasClass('hidden')).toEqual(true); + expect(FileList.$fileList.find('.summary').length).toEqual(1); + }); + it('hides headers, summary and show empty content message after setting empty file list', function(){ + FileList.setFiles([]); + expect($('#filestable thead th').hasClass('hidden')).toEqual(true); + expect($('#emptycontent').hasClass('hidden')).toEqual(false); + expect(FileList.$fileList.find('.summary').length).toEqual(0); + }); + it('hides headers, empty content message, and summary when list is empty and user has no creation permission', function(){ + $('#permissions').val(0); + FileList.setFiles([]); + expect($('#filestable thead th').hasClass('hidden')).toEqual(true); + expect($('#emptycontent').hasClass('hidden')).toEqual(true); + expect(FileList.$fileList.find('.summary').length).toEqual(0); + }); + it('calling findFileEl() can find existing file element', function() { + FileList.setFiles(testFiles); + expect(FileList.findFileEl('Two.jpg').length).toEqual(1); + }); + it('calling findFileEl() returns empty when file not found in file', function() { + FileList.setFiles(testFiles); + expect(FileList.findFileEl('unexist.dat').length).toEqual(0); + }); + it('only add file if in same current directory', function() { + $('#dir').val('/current dir'); + var fileData = { + type: 'file', + name: 'testFile.txt', + directory: '/current dir' + }; + var $tr = FileList.add(fileData); + expect(FileList.findFileEl('testFile.txt').length).toEqual(1); + }); + it('triggers "fileActionsReady" event after update', function() { + var handler = sinon.stub(); + FileList.$fileList.on('fileActionsReady', handler); + FileList.setFiles(testFiles); + expect(handler.calledOnce).toEqual(true); + }); + it('triggers "updated" event after update', function() { + var handler = sinon.stub(); + FileList.$fileList.on('updated', handler); + FileList.setFiles(testFiles); + expect(handler.calledOnce).toEqual(true); + }); + }); + describe('file previews', function() { + var previewLoadStub; + + function getImageUrl($el) { + // might be slightly different cross-browser + var url = $el.css('background-image'); + var r = url.match(/url\(['"]?([^'")]*)['"]?\)/); + if (!r) { + return url; + } + return r[1]; + } + + beforeEach(function() { + previewLoadStub = sinon.stub(Files, 'lazyLoadPreview'); + }); + afterEach(function() { + previewLoadStub.restore(); + }); + it('renders default icon for file when none provided and no preview is available', function() { + var fileData = { + type: 'file', + name: 'testFile.txt' + }; + var $tr = FileList.add(fileData); + var $td = $tr.find('td.filename'); + expect(getImageUrl($td)).toEqual(OC.webroot + '/core/img/filetypes/file.svg'); + expect(previewLoadStub.notCalled).toEqual(true); + }); + it('renders default icon for dir when none provided and no preview is available', function() { + var fileData = { + type: 'dir', + name: 'test dir' + }; + var $tr = FileList.add(fileData); + var $td = $tr.find('td.filename'); + expect(getImageUrl($td)).toEqual(OC.webroot + '/core/img/filetypes/folder.svg'); + expect(previewLoadStub.notCalled).toEqual(true); + }); + it('renders provided icon for file when provided', function() { + var fileData = { + type: 'file', + name: 'test dir', + icon: OC.webroot + '/core/img/filetypes/application-pdf.svg' + }; + var $tr = FileList.add(fileData); + var $td = $tr.find('td.filename'); + expect(getImageUrl($td)).toEqual(OC.webroot + '/core/img/filetypes/application-pdf.svg'); + expect(previewLoadStub.notCalled).toEqual(true); + }); + it('renders preview when no icon was provided and preview is available', function() { + var fileData = { + type: 'file', + name: 'test dir', + isPreviewAvailable: true + }; + var $tr = FileList.add(fileData); + var $td = $tr.find('td.filename'); + expect(getImageUrl($td)).toEqual(OC.webroot + '/core/img/filetypes/file.svg'); + expect(previewLoadStub.calledOnce).toEqual(true); + // third argument is callback + previewLoadStub.getCall(0).args[2](OC.webroot + '/somepath.png'); + expect(getImageUrl($td)).toEqual(OC.webroot + '/somepath.png'); + }); + it('renders default file type icon when no icon was provided and no preview is available', function() { + var fileData = { + type: 'file', + name: 'test dir', + isPreviewAvailable: false + }; + var $tr = FileList.add(fileData); + var $td = $tr.find('td.filename'); + expect(getImageUrl($td)).toEqual(OC.webroot + '/core/img/filetypes/file.svg'); + expect(previewLoadStub.notCalled).toEqual(true); + }); + }); + describe('viewer mode', function() { + it('enabling viewer mode hides files table and action buttons', function() { + FileList.setViewerMode(true); + expect($('#filestable').hasClass('hidden')).toEqual(true); + expect($('.actions').hasClass('hidden')).toEqual(true); + expect($('.notCreatable').hasClass('hidden')).toEqual(true); + }); + it('disabling viewer mode restores files table and action buttons', function() { + FileList.setViewerMode(true); + FileList.setViewerMode(false); + expect($('#filestable').hasClass('hidden')).toEqual(false); + expect($('.actions').hasClass('hidden')).toEqual(false); + expect($('.notCreatable').hasClass('hidden')).toEqual(true); + }); + it('disabling viewer mode restores files table and action buttons with correct permissions', function() { + $('#permissions').val(0); + FileList.setViewerMode(true); + FileList.setViewerMode(false); + expect($('#filestable').hasClass('hidden')).toEqual(false); + expect($('.actions').hasClass('hidden')).toEqual(true); + expect($('.notCreatable').hasClass('hidden')).toEqual(false); + }); + }); + describe('loading file list', function() { + beforeEach(function() { + var data = { + status: 'success', + data: { + files: testFiles, + permissions: 31 + } + }; + fakeServer.respondWith(/\/index\.php\/apps\/files\/ajax\/list.php\?dir=%2F(subdir|anothersubdir)/, [ + 200, { + "Content-Type": "application/json" + }, + JSON.stringify(data) + ]); + }); + it('fetches file list from server and renders it when reload() is called', function() { + FileList.reload(); + expect(fakeServer.requests.length).toEqual(1); + var url = fakeServer.requests[0].url; + var query = url.substr(url.indexOf('?') + 1); + expect(OC.parseQueryString(query)).toEqual({'dir': '/subdir'}); + fakeServer.respond(); + expect($('#fileList tr:not(.summary)').length).toEqual(4); + expect(FileList.findFileEl('One.txt').length).toEqual(1); + }); + it('switches dir and fetches file list when calling changeDirectory()', function() { + FileList.changeDirectory('/anothersubdir'); + expect(FileList.getCurrentDirectory()).toEqual('/anothersubdir'); + expect(fakeServer.requests.length).toEqual(1); + var url = fakeServer.requests[0].url; + var query = url.substr(url.indexOf('?') + 1); + expect(OC.parseQueryString(query)).toEqual({'dir': '/anothersubdir'}); + fakeServer.respond(); + }); + it('switches to root dir when current directory does not exist', function() { + fakeServer.respondWith(/\/index\.php\/apps\/files\/ajax\/list.php\?dir=%2funexist/, [ + 404, { + "Content-Type": "application/json" + }, + '' + ]); + FileList.changeDirectory('/unexist'); + fakeServer.respond(); + expect(FileList.getCurrentDirectory()).toEqual('/'); + }); + it('shows mask before loading file list then hides it at the end', function() { + var showMaskStub = sinon.stub(FileList, 'showMask'); + var hideMaskStub = sinon.stub(FileList, 'hideMask'); + FileList.changeDirectory('/anothersubdir'); + expect(showMaskStub.calledOnce).toEqual(true); + expect(hideMaskStub.calledOnce).toEqual(false); + fakeServer.respond(); + expect(showMaskStub.calledOnce).toEqual(true); + expect(hideMaskStub.calledOnce).toEqual(true); + showMaskStub.restore(); + hideMaskStub.restore(); + }); + it('changes URL to target dir', function() { + FileList.changeDirectory('/somedir'); + expect(pushStateStub.calledOnce).toEqual(true); + expect(pushStateStub.getCall(0).args[0]).toEqual({dir: '/somedir'}); + expect(pushStateStub.getCall(0).args[2]).toEqual(OC.webroot + '/index.php/apps/files?dir=/somedir'); + }); + it('refreshes breadcrumb after update', function() { + var setDirSpy = sinon.spy(FileList.breadcrumb, 'setDirectory'); + FileList.changeDirectory('/anothersubdir'); + fakeServer.respond(); + expect(FileList.breadcrumb.setDirectory.calledOnce).toEqual(true); + expect(FileList.breadcrumb.setDirectory.calledWith('/anothersubdir')).toEqual(true); + setDirSpy.restore(); + }); + }); + describe('breadcrumb events', function() { + beforeEach(function() { + var data = { + status: 'success', + data: { + files: testFiles, + permissions: 31 + } + }; + fakeServer.respondWith(/\/index\.php\/apps\/files\/ajax\/list.php\?dir=%2Fsubdir/, [ + 200, { + "Content-Type": "application/json" + }, + JSON.stringify(data) + ]); + }); + it('clicking on root breadcrumb changes directory to root', function() { + FileList.changeDirectory('/subdir/two/three with space/four/five'); + fakeServer.respond(); + var changeDirStub = sinon.stub(FileList, 'changeDirectory'); + FileList.breadcrumb.$el.find('.crumb:eq(0)').click(); + + expect(changeDirStub.calledOnce).toEqual(true); + expect(changeDirStub.getCall(0).args[0]).toEqual('/'); + changeDirStub.restore(); + }); + it('clicking on breadcrumb changes directory', function() { + FileList.changeDirectory('/subdir/two/three with space/four/five'); + fakeServer.respond(); + var changeDirStub = sinon.stub(FileList, 'changeDirectory'); + FileList.breadcrumb.$el.find('.crumb:eq(3)').click(); + + expect(changeDirStub.calledOnce).toEqual(true); + expect(changeDirStub.getCall(0).args[0]).toEqual('/subdir/two/three with space'); + changeDirStub.restore(); + }); + it('dropping files on breadcrumb calls move operation', function() { + var request, query, testDir = '/subdir/two/three with space/four/five'; + FileList.changeDirectory(testDir); + fakeServer.respond(); + var $crumb = FileList.breadcrumb.$el.find('.crumb:eq(3)'); + // no idea what this is but is required by the handler + var ui = { + helper: { + find: sinon.stub() + } + }; + // returns a list of tr that were dragged + // FIXME: why are their attributes different than the + // regular file trs ? + ui.helper.find.returns([ + $(''), + $('') + ]); + // simulate drop event + FileList._onDropOnBreadCrumb.call($crumb, new $.Event('drop'), ui); + + // will trigger two calls to move.php (first one was previous list.php) + expect(fakeServer.requests.length).toEqual(3); + + request = fakeServer.requests[1]; + expect(request.method).toEqual('POST'); + expect(request.url).toEqual(OC.webroot + '/index.php/apps/files/ajax/move.php'); + query = OC.parseQueryString(request.requestBody); + expect(query).toEqual({ + target: '/subdir/two/three with space', + dir: testDir, + file: 'One.txt' + }); + + request = fakeServer.requests[2]; + expect(request.method).toEqual('POST'); + expect(request.url).toEqual(OC.webroot + '/index.php/apps/files/ajax/move.php'); + query = OC.parseQueryString(request.requestBody); + expect(query).toEqual({ + target: '/subdir/two/three with space', + dir: testDir, + file: 'Two.jpg' + }); + }); + it('dropping files on same dir breadcrumb does nothing', function() { + var request, query, testDir = '/subdir/two/three with space/four/five'; + FileList.changeDirectory(testDir); + fakeServer.respond(); + var $crumb = FileList.breadcrumb.$el.find('.crumb:last'); + // no idea what this is but is required by the handler + var ui = { + helper: { + find: sinon.stub() + } + }; + // returns a list of tr that were dragged + // FIXME: why are their attributes different than the + // regular file trs ? + ui.helper.find.returns([ + $(''), + $('') + ]); + // simulate drop event + FileList._onDropOnBreadCrumb.call($crumb, new $.Event('drop'), ui); + + // no extra server request + expect(fakeServer.requests.length).toEqual(1); + }); }); describe('Download Url', function() { it('returns correct download URL for single files', function() { - expect(FileList.getDownloadUrl('some file.txt')).toEqual(OC.webroot + '/index.php/apps/files/ajax/download.php?dir=%2Fsubdir&files=some%20file.txt'); - expect(FileList.getDownloadUrl('some file.txt', '/anotherpath/abc')).toEqual(OC.webroot + '/index.php/apps/files/ajax/download.php?dir=%2Fanotherpath%2Fabc&files=some%20file.txt'); + expect(Files.getDownloadUrl('some file.txt')).toEqual(OC.webroot + '/index.php/apps/files/ajax/download.php?dir=%2Fsubdir&files=some%20file.txt'); + expect(Files.getDownloadUrl('some file.txt', '/anotherpath/abc')).toEqual(OC.webroot + '/index.php/apps/files/ajax/download.php?dir=%2Fanotherpath%2Fabc&files=some%20file.txt'); $('#dir').val('/'); - expect(FileList.getDownloadUrl('some file.txt')).toEqual(OC.webroot + '/index.php/apps/files/ajax/download.php?dir=%2F&files=some%20file.txt'); + expect(Files.getDownloadUrl('some file.txt')).toEqual(OC.webroot + '/index.php/apps/files/ajax/download.php?dir=%2F&files=some%20file.txt'); }); it('returns correct download URL for multiple files', function() { - expect(FileList.getDownloadUrl(['a b c.txt', 'd e f.txt'])).toEqual(OC.webroot + '/index.php/apps/files/ajax/download.php?dir=%2Fsubdir&files=%5B%22a%20b%20c.txt%22%2C%22d%20e%20f.txt%22%5D'); + expect(Files.getDownloadUrl(['a b c.txt', 'd e f.txt'])).toEqual(OC.webroot + '/index.php/apps/files/ajax/download.php?dir=%2Fsubdir&files=%5B%22a%20b%20c.txt%22%2C%22d%20e%20f.txt%22%5D'); + }); + it('returns the correct ajax URL', function() { + expect(Files.getAjaxUrl('test', {a:1, b:'x y'})).toEqual(OC.webroot + '/index.php/apps/files/ajax/test.php?a=1&b=x%20y'); }); }); }); diff --git a/apps/files_sharing/ajax/list.php b/apps/files_sharing/ajax/list.php new file mode 100644 index 00000000000..4b645496253 --- /dev/null +++ b/apps/files_sharing/ajax/list.php @@ -0,0 +1,91 @@ + + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE + * License as published by the Free Software Foundation; either + * version 3 of the License, or any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU Affero General Public + * License along with this library. If not, see . + * + */ + +// only need filesystem apps +$RUNTIME_APPTYPES=array('filesystem'); + +// Init owncloud + +if(!\OC_App::isEnabled('files_sharing')){ + exit; +} + +if(!isset($_GET['t'])){ + \OC_Response::setStatus(400); //400 Bad Request + \OC_Log::write('core-preview', 'No token parameter was passed', \OC_Log::DEBUG); + exit; +} + +$token = $_GET['t']; + +$password = null; +if (isset($_POST['password'])) { + $password = $_POST['password']; +} + +$relativePath = null; +if (isset($_GET['dir'])) { + $relativePath = $_GET['dir']; +} + +$data = \OCA\Files_Sharing\Helper::setupFromToken($token, $relativePath, $password); + +$linkItem = $data['linkItem']; +// Load the files +$dir = $data['realPath']; + +$dir = \OC\Files\Filesystem::normalizePath($dir); +if (!\OC\Files\Filesystem::is_dir($dir . '/')) { + \OC_Response::setStatus(404); + \OCP\JSON::error(array('success' => false)); + exit(); +} + +$data = array(); +$baseUrl = OCP\Util::linkTo('files_sharing', 'index.php') . '?t=' . urlencode($token) . '&dir='; + +// make filelist +$files = \OCA\Files\Helper::getFiles($dir); + +$formattedFiles = array(); +foreach ($files as $file) { + $entry = \OCA\Files\Helper::formatFileInfo($file); + unset($entry['directory']); // for now + $entry['permissions'] = \OCP\PERMISSION_READ; + $formattedFiles[] = $entry; +} + +$data['directory'] = $relativePath; +$data['files'] = $formattedFiles; +$data['dirToken'] = $linkItem['token']; + +$permissions = $linkItem['permissions']; + +// if globally disabled +if (OC_Appconfig::getValue('core', 'shareapi_allow_public_upload', 'yes') === 'no') { + // only allow reading + $permissions = \OCP\PERMISSION_READ; +} + +$data['permissions'] = $permissions; + +OCP\JSON::success(array('data' => $data)); diff --git a/apps/files_sharing/css/public.css b/apps/files_sharing/css/public.css index 5246a4b2fec..f0b9b04491f 100644 --- a/apps/files_sharing/css/public.css +++ b/apps/files_sharing/css/public.css @@ -35,6 +35,11 @@ body { background: #fff; text-align: center; margin: 45px auto 0; + min-height: 150px; +} + +#preview .notCreatable { + display: none; } #noPreview { diff --git a/apps/files_sharing/js/public.js b/apps/files_sharing/js/public.js index 06c168969de..9ce8985f1fd 100644 --- a/apps/files_sharing/js/public.js +++ b/apps/files_sharing/js/public.js @@ -8,16 +8,7 @@ * */ -/* global OC, FileList, FileActions */ - -// Override download path to files_sharing/public.php -function fileDownloadPath(dir, file) { - var url = $('#downloadURL').val(); - if (url.indexOf('&path=') != -1) { - url += '/'+file; - } - return url; -} +/* global OC, FileActions, FileList, Files */ $(document).ready(function() { @@ -31,31 +22,43 @@ $(document).ready(function() { action($('#filename').val()); } } - FileActions.register('dir', 'Open', OC.PERMISSION_READ, '', function(filename) { - var tr = FileList.findFileEl(filename); - if (tr.length > 0) { - window.location = $(tr).find('a.name').attr('href'); - } - }); + } - // override since the format is different - FileList.getDownloadUrl = function(filename, dir) { - if ($.isArray(filename)) { - filename = JSON.stringify(filename); - } - var path = dir || FileList.getCurrentDirectory(); - var params = { - service: 'files', - t: $('#sharingToken').val(), - path: path, - download: null - }; - if (filename) { - params.files = filename; - } - return OC.filePath('', '', 'public.php') + '?' + OC.buildQueryString(params); + // override since the format is different + Files.getDownloadUrl = function(filename, dir) { + if ($.isArray(filename)) { + filename = JSON.stringify(filename); + } + var path = dir || FileList.getCurrentDirectory(); + var params = { + service: 'files', + t: $('#sharingToken').val(), + path: path, + files: filename, + download: null }; - } + return OC.filePath('', '', 'public.php') + '?' + OC.buildQueryString(params); + }; + + Files.getAjaxUrl = function(action, params) { + params = params || {}; + params.t = $('#sharingToken').val(); + return OC.filePath('files_sharing', 'ajax', action + '.php') + '?' + OC.buildQueryString(params); + }; + + FileList.linkTo = function(dir) { + var params = { + service: 'files', + t: $('#sharingToken').val(), + dir: dir + }; + return OC.filePath('', '', 'public.php') + '?' + OC.buildQueryString(params); + }; + + Files.generatePreviewUrl = function(urlSpec) { + urlSpec.t = $('#dirToken').val(); + return OC.generateUrl('/apps/files_sharing/ajax/publicpreview.php?') + $.param(urlSpec); + }; var file_upload_start = $('#file_upload_start'); file_upload_start.on('fileuploadadd', function(e, data) { diff --git a/apps/files_sharing/js/share.js b/apps/files_sharing/js/share.js index 9f0ed12f935..ea518f3b70e 100644 --- a/apps/files_sharing/js/share.js +++ b/apps/files_sharing/js/share.js @@ -1,15 +1,35 @@ +/* + * Copyright (c) 2014 + * + * This file is licensed under the Affero General Public License version 3 + * or later. + * + * See the COPYING-README file. + * + */ + +/* global OC, t, FileList, FileActions */ $(document).ready(function() { var disableSharing = $('#disableSharing').data('status'), sharesLoaded = false; if (typeof OC.Share !== 'undefined' && typeof FileActions !== 'undefined' && !disableSharing) { + var oldCreateRow = FileList._createRow; + FileList._createRow = function(fileData) { + var tr = oldCreateRow.apply(this, arguments); + if (fileData.shareOwner) { + tr.attr('data-share-owner', fileData.shareOwner); + } + return tr; + }; + $('#fileList').on('fileActionsReady',function(){ - var allShared = $('#fileList').find('[data-share-owner]').find('[data-Action="Share"]'); + var allShared = $('#fileList').find('[data-share-owner] [data-Action="Share"]'); allShared.addClass('permanent'); allShared.find('span').text(function(){ - $owner = $(this).closest('tr').attr('data-share-owner'); + var $owner = $(this).closest('tr').attr('data-share-owner'); return ' ' + t('files_sharing', 'Shared by {owner}', {owner: $owner}); }); diff --git a/apps/files_sharing/lib/helper.php b/apps/files_sharing/lib/helper.php new file mode 100644 index 00000000000..b602fe3599d --- /dev/null +++ b/apps/files_sharing/lib/helper.php @@ -0,0 +1,114 @@ + false)); + exit(); + } + + if (!isset($linkItem['item_type'])) { + \OCP\Util::writeLog('share', 'No item type set for share id: ' . $linkItem['id'], \OCP\Util::ERROR); + \OC_Response::setStatus(404); + \OCP\JSON::error(array('success' => false)); + exit(); + } + + if (isset($linkItem['share_with'])) { + if (!self::authenticate($linkItem, $password)) { + \OC_Response::setStatus(403); + \OCP\JSON::error(array('success' => false)); + exit(); + } + } + + $basePath = $path; + $rootName = basename($path); + + if ($relativePath !== null && \OC\Files\Filesystem::isReadable($basePath . $relativePath)) { + $path .= \OC\Files\Filesystem::normalizePath($relativePath); + } + + return array( + 'linkItem' => $linkItem, + 'basePath' => $basePath, + 'realPath' => $path + ); + } + + /** + * Authenticate link item with the given password + * or with the session if no password was given. + * @param array $linkItem link item array + * @param string $password optional password + * + * @return true if authorized, false otherwise + */ + public static function authenticate($linkItem, $password) { + if ($password !== null) { + if ($linkItem['share_type'] == \OCP\Share::SHARE_TYPE_LINK) { + // Check Password + $forcePortable = (CRYPT_BLOWFISH != 1); + $hasher = new PasswordHash(8, $forcePortable); + if (!($hasher->CheckPassword($password.OC_Config::getValue('passwordsalt', ''), + $linkItem['share_with']))) { + return false; + } else { + // Save item id in session for future requests + \OC::$session->set('public_link_authenticated', $linkItem['id']); + } + } else { + \OCP\Util::writeLog('share', 'Unknown share type '.$linkItem['share_type'] + .' for share id '.$linkItem['id'], \OCP\Util::ERROR); + return false; + } + + } + else { + // not authenticated ? + if ( ! \OC::$session->exists('public_link_authenticated') + || \OC::$session->get('public_link_authenticated') !== $linkItem['id']) { + return false; + } + } + return true; + } +} diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php index fe61dd4d5a0..ba2494a7b1a 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -11,31 +11,6 @@ if ($appConfig->getValue('core', 'shareapi_allow_links', 'yes') !== 'yes') { exit(); } -function fileCmp($a, $b) { - if ($a['type'] == 'dir' and $b['type'] != 'dir') { - return -1; - } elseif ($a['type'] != 'dir' and $b['type'] == 'dir') { - return 1; - } else { - return strnatcasecmp($a['name'], $b['name']); - } -} - -function determineIcon($file, $sharingRoot, $sharingToken) { - // for folders we simply reuse the files logic - if($file['type'] == 'dir') { - return \OCA\Files\Helper::determineIcon($file); - } - - $relativePath = substr($file['path'], 6); - $relativePath = substr($relativePath, strlen($sharingRoot)); - if($file['isPreviewAvailable']) { - return OCP\publicPreview_icon($relativePath, $sharingToken) . '&c=' . $file['etag']; - } - $icon = OCP\mimetype_icon($file['mimetype']); - return substr($icon, 0, -3) . 'svg'; -} - if (isset($_GET['t'])) { $token = $_GET['t']; $linkItem = OCP\Share::getShareByToken($token, false); @@ -153,13 +128,10 @@ if (isset($path)) { $tmpl->assign('mimetype', \OC\Files\Filesystem::getMimeType($path)); $tmpl->assign('dirToken', $linkItem['token']); $tmpl->assign('sharingToken', $token); - $allowPublicUploadEnabled = (bool) ($linkItem['permissions'] & OCP\PERMISSION_CREATE); - if ($appConfig->getValue('core', 'shareapi_allow_public_upload', 'yes') === 'no') { - $allowPublicUploadEnabled = false; - } - if ($linkItem['item_type'] !== 'folder') { - $allowPublicUploadEnabled = false; - } + $tmpl->assign('uploadMaxFilesize', $maxUploadFilesize); + $tmpl->assign('uploadMaxHumanFilesize', OCP\Util::humanFileSize($maxUploadFilesize)); + $tmpl->assign('freeSpace', $freeSpace); + $tmpl->assign('uploadLimit', $uploadLimit); // PHP upload limit $urlLinkIdentifiers= (isset($token)?'&t='.$token:'') .(isset($_GET['dir'])?'&dir='.$_GET['dir']:'') @@ -170,64 +142,18 @@ if (isset($path)) { OCP\Util::addStyle('files', 'files'); OCP\Util::addStyle('files', 'upload'); + OCP\Util::addScript('files', 'breadcrumb'); OCP\Util::addScript('files', 'files'); OCP\Util::addScript('files', 'filelist'); OCP\Util::addscript('files', 'keyboardshortcuts'); $files = array(); $rootLength = strlen($basePath) + 1; - $totalSize = 0; - foreach (\OC\Files\Filesystem::getDirectoryContent($path) as $i) { - $totalSize += $i['size']; - $i['date'] = OCP\Util::formatDate($i['mtime']); - if ($i['type'] == 'file') { - $fileinfo = pathinfo($i['name']); - $i['basename'] = $fileinfo['filename']; - if (!empty($fileinfo['extension'])) { - $i['extension'] = '.' . $fileinfo['extension']; - } else { - $i['extension'] = ''; - } - } - $i['isPreviewAvailable'] = \OC::$server->getPreviewManager()->isMimeSupported($i['mimetype']); - $i['directory'] = $getPath; - $i['permissions'] = OCP\PERMISSION_READ; - $i['icon'] = determineIcon($i, $basePath, $token); - $files[] = $i; - } - usort($files, "fileCmp"); - - // Make breadcrumb - $breadcrumb = array(); - $pathtohere = ''; - foreach (explode('/', $getPath) as $i) { - if ($i != '') { - $pathtohere .= '/' . $i; - $breadcrumb[] = array('dir' => $pathtohere, 'name' => $i); - } - } - $list = new OCP\Template('files', 'part.list', ''); - $list->assign('files', $files); - $list->assign('baseURL', OCP\Util::linkToPublic('files') . $urlLinkIdentifiers . '&path='); - $list->assign('downloadURL', - OCP\Util::linkToPublic('files') . $urlLinkIdentifiers . '&download&path='); - $list->assign('isPublic', true); - $list->assign('sharingtoken', $token); - $list->assign('sharingroot', $basePath); - $breadcrumbNav = new OCP\Template('files', 'part.breadcrumb', ''); - $breadcrumbNav->assign('breadcrumb', $breadcrumb); - $breadcrumbNav->assign('rootBreadCrumb', $rootName); - $breadcrumbNav->assign('baseURL', OCP\Util::linkToPublic('files') . $urlLinkIdentifiers . '&path='); $maxUploadFilesize=OCP\Util::maxUploadFilesize($path); - $fileHeader = (!isset($files) or count($files) > 0); - $emptyContent = ($allowPublicUploadEnabled and !$fileHeader); $freeSpace=OCP\Util::freeSpace($path); $uploadLimit=OCP\Util::uploadLimit(); $folder = new OCP\Template('files', 'index', ''); - $folder->assign('fileList', $list->fetchPage()); - $folder->assign('breadcrumb', $breadcrumbNav->fetchPage()); $folder->assign('dir', $getPath); - $folder->assign('isCreatable', $allowPublicUploadEnabled); $folder->assign('dirToken', $linkItem['token']); $folder->assign('permissions', OCP\PERMISSION_READ); $folder->assign('isPublic',true); @@ -239,15 +165,11 @@ if (isset($path)) { $folder->assign('uploadLimit', $uploadLimit); // PHP upload limit $folder->assign('allowZipDownload', intval(OCP\Config::getSystemValue('allowZipDownload', true))); $folder->assign('usedSpacePercent', 0); - $folder->assign('fileHeader', $fileHeader); $folder->assign('disableSharing', true); $folder->assign('trash', false); - $folder->assign('emptyContent', $emptyContent); - $folder->assign('ajaxLoad', false); $tmpl->assign('folder', $folder->fetchPage()); $maxInputFileSize = OCP\Config::getSystemValue('maxZipInputSize', OCP\Util::computerFileSize('800 MB')); - $allowZip = OCP\Config::getSystemValue('allowZipDownload', true) - && ( $maxInputFileSize === 0 || $totalSize <= $maxInputFileSize); + $allowZip = OCP\Config::getSystemValue('allowZipDownload', true); $tmpl->assign('allowZipDownload', intval($allowZip)); $tmpl->assign('downloadURL', OCP\Util::linkToPublic('files') . $urlLinkIdentifiers . '&download&path=' . urlencode($getPath)); diff --git a/apps/files_trashbin/ajax/list.php b/apps/files_trashbin/ajax/list.php index cec18c46525..89a55114524 100644 --- a/apps/files_trashbin/ajax/list.php +++ b/apps/files_trashbin/ajax/list.php @@ -4,21 +4,8 @@ OCP\JSON::checkLoggedIn(); // Load the files $dir = isset( $_GET['dir'] ) ? $_GET['dir'] : ''; -$doBreadcrumb = isset( $_GET['breadcrumb'] ) ? true : false; $data = array(); -// Make breadcrumb -if($doBreadcrumb) { - $breadcrumb = \OCA\Files_Trashbin\Helper::makeBreadcrumb($dir); - - $breadcrumbNav = new OCP\Template('files_trashbin', 'part.breadcrumb', ''); - $breadcrumbNav->assign('breadcrumb', $breadcrumb, false); - $breadcrumbNav->assign('baseURL', OCP\Util::linkTo('files_trashbin', 'index.php') . '?dir='); - $breadcrumbNav->assign('home', OCP\Util::linkTo('files', 'index.php')); - - $data['breadcrumb'] = $breadcrumbNav->fetchPage(); -} - // make filelist try { $files = \OCA\Files_Trashbin\Helper::getTrashFiles($dir); @@ -27,19 +14,11 @@ try { exit(); } -$dirlisting = false; -if ($dir && $dir !== '/') { - $dirlisting = true; -} - $encodedDir = \OCP\Util::encodePath($dir); -$list = new OCP\Template('files_trashbin', 'part.list', ''); -$list->assign('files', $files, false); -$list->assign('baseURL', OCP\Util::linkTo('files_trashbin', 'index.php'). '?dir='.$encodedDir); -$list->assign('downloadURL', OCP\Util::linkToRoute('download', array('file' => '/'))); -$list->assign('dirlisting', $dirlisting); -$list->assign('disableDownloadActions', true); -$data['files'] = $list->fetchPage(); + +$data['permissions'] = 0; +$data['directory'] = $dir; +$data['files'] = \OCA\Files_Trashbin\Helper::formatFileInfos($files); OCP\JSON::success(array('data' => $data)); diff --git a/apps/files_trashbin/ajax/preview.php b/apps/files_trashbin/ajax/preview.php index ce64d9ecc9f..32905b2a71c 100644 --- a/apps/files_trashbin/ajax/preview.php +++ b/apps/files_trashbin/ajax/preview.php @@ -34,7 +34,7 @@ try{ if ($view->is_dir($file)) { $mimetype = 'httpd/unix-directory'; } else { - $pathInfo = pathinfo($file); + $pathInfo = pathinfo(ltrim($file, '/')); $fileName = $pathInfo['basename']; // if in root dir if ($pathInfo['dirname'] === '.') { diff --git a/apps/files_trashbin/ajax/undelete.php b/apps/files_trashbin/ajax/undelete.php index 9c3ccba7ed8..2b00078669e 100644 --- a/apps/files_trashbin/ajax/undelete.php +++ b/apps/files_trashbin/ajax/undelete.php @@ -19,7 +19,7 @@ if (isset($_POST['allfiles']) and $_POST['allfiles'] === 'true') { foreach (OCA\Files_Trashbin\Helper::getTrashFiles($dir) as $file) { $fileName = $file['name']; if (!$dirListing) { - $fileName .= '.d' . $file['timestamp']; + $fileName .= '.d' . $file['mtime']; } $list[] = $fileName; } diff --git a/apps/files_trashbin/css/trash.css b/apps/files_trashbin/css/trash.css index 97819f4e80b..7ca3e355fc2 100644 --- a/apps/files_trashbin/css/trash.css +++ b/apps/files_trashbin/css/trash.css @@ -1,3 +1,4 @@ -#fileList td a.file, #fileList td a.file span { +#fileList tr[data-type="file"] td a.name, +#fileList tr[data-type="file"] td a.name span { cursor: default; } diff --git a/apps/files_trashbin/index.php b/apps/files_trashbin/index.php index f0c5b0508b8..e63fe1e4188 100644 --- a/apps/files_trashbin/index.php +++ b/apps/files_trashbin/index.php @@ -11,6 +11,7 @@ $tmpl = new OCP\Template('files_trashbin', 'index', 'user'); OCP\Util::addStyle('files', 'files'); OCP\Util::addStyle('files_trashbin', 'trash'); +OCP\Util::addScript('files', 'breadcrumb'); OCP\Util::addScript('files', 'filelist'); // filelist overrides OCP\Util::addScript('files_trashbin', 'filelist'); @@ -34,48 +35,7 @@ if ($isIE8 && isset($_GET['dir'])){ exit(); } -$ajaxLoad = false; - -if (!$isIE8){ - try { - $files = \OCA\Files_Trashbin\Helper::getTrashFiles($dir); - } catch (Exception $e) { - header('Location: ' . OCP\Util::linkTo('files_trashbin', 'index.php')); - exit(); - } -} -else{ - $files = array(); - $ajaxLoad = true; -} - -$dirlisting = false; -if ($dir && $dir !== '/') { - $dirlisting = true; -} - -$breadcrumb = \OCA\Files_Trashbin\Helper::makeBreadcrumb($dir); - -$breadcrumbNav = new OCP\Template('files_trashbin', 'part.breadcrumb', ''); -$breadcrumbNav->assign('breadcrumb', $breadcrumb); -$breadcrumbNav->assign('baseURL', OCP\Util::linkTo('files_trashbin', 'index.php') . '?dir='); -$breadcrumbNav->assign('home', OCP\Util::linkTo('files', 'index.php')); - -$list = new OCP\Template('files_trashbin', 'part.list', ''); -$list->assign('files', $files); - -$encodedDir = \OCP\Util::encodePath($dir); -$list->assign('baseURL', OCP\Util::linkTo('files_trashbin', 'index.php'). '?dir='.$encodedDir); -$list->assign('downloadURL', OCP\Util::linkTo('files_trashbin', 'download.php') . '?file='.$encodedDir); -$list->assign('dirlisting', $dirlisting); -$list->assign('disableDownloadActions', true); - -$tmpl->assign('dirlisting', $dirlisting); -$tmpl->assign('breadcrumb', $breadcrumbNav->fetchPage()); -$tmpl->assign('fileList', $list->fetchPage()); -$tmpl->assign('files', $files); $tmpl->assign('dir', $dir); $tmpl->assign('disableSharing', true); -$tmpl->assign('ajaxLoad', true); $tmpl->printPage(); diff --git a/apps/files_trashbin/js/disableDefaultActions.js b/apps/files_trashbin/js/disableDefaultActions.js index afa80cacd6b..50ceaf4696f 100644 --- a/apps/files_trashbin/js/disableDefaultActions.js +++ b/apps/files_trashbin/js/disableDefaultActions.js @@ -1,4 +1,3 @@ /* disable download and sharing actions */ var disableDownloadActions = true; -var disableSharing = true; var trashBinApp = true; diff --git a/apps/files_trashbin/js/filelist.js b/apps/files_trashbin/js/filelist.js index a88459b0a9a..7795daf2775 100644 --- a/apps/files_trashbin/js/filelist.js +++ b/apps/files_trashbin/js/filelist.js @@ -1,61 +1,78 @@ -/* globals OC, FileList, t */ -// override reload with own ajax call -FileList.reload = function(){ - FileList.showMask(); - if (FileList._reloadCall){ - FileList._reloadCall.abort(); - } - $.ajax({ - url: OC.filePath('files_trashbin','ajax','list.php'), - data: { - dir : $('#dir').val(), - breadcrumb: true - }, - error: function(result) { - FileList.reloadCallback(result); - }, - success: function(result) { - FileList.reloadCallback(result); +/* global OC, t, FileList */ +(function() { + FileList.appName = t('files_trashbin', 'Deleted files'); + + FileList._deletedRegExp = new RegExp(/^(.+)\.d[0-9]+$/); + + /** + * Convert a file name in the format filename.d12345 to the real file name. + * This will use basename. + * The name will not be changed if it has no ".d12345" suffix. + * @param name file name + * @return converted file name + */ + FileList.getDeletedFileName = function(name) { + name = OC.basename(name); + var match = FileList._deletedRegExp.exec(name); + if (match && match.length > 1) { + name = match[1]; } - }); -}; - -FileList.appName = t('files_trashbin', 'Deleted files'); - -FileList._deletedRegExp = new RegExp(/^(.+)\.d[0-9]+$/); - -/** - * Convert a file name in the format filename.d12345 to the real file name. - * This will use basename. - * The name will not be changed if it has no ".d12345" suffix. - * @param name file name - * @return converted file name - */ -FileList.getDeletedFileName = function(name) { - name = OC.basename(name); - var match = FileList._deletedRegExp.exec(name); - if (match && match.length > 1) { - name = match[1]; - } - return name; -}; -var oldSetCurrentDir = FileList.setCurrentDir; -FileList.setCurrentDir = function(targetDir) { - oldSetCurrentDir.apply(this, arguments); - - var baseDir = OC.basename(targetDir); - if (baseDir !== '') { - FileList.setPageTitle(FileList.getDeletedFileName(baseDir)); - } -}; - -FileList.linkTo = function(dir){ - return OC.linkTo('files_trashbin', 'index.php')+"?dir="+ encodeURIComponent(dir).replace(/%2F/g, '/'); -} - -FileList.updateEmptyContent = function(){ - var $fileList = $('#fileList'); - var exists = $fileList.find('tr:first').exists(); - $('#emptycontent').toggleClass('hidden', exists); - $('#filestable th').toggleClass('hidden', !exists); -} + return name; + }; + + var oldSetCurrentDir = FileList._setCurrentDir; + FileList._setCurrentDir = function(targetDir) { + oldSetCurrentDir.apply(this, arguments); + + var baseDir = OC.basename(targetDir); + if (baseDir !== '') { + FileList.setPageTitle(FileList.getDeletedFileName(baseDir)); + } + }; + + var oldCreateRow = FileList._createRow; + FileList._createRow = function() { + // FIXME: MEGAHACK until we find a better solution + var tr = oldCreateRow.apply(this, arguments); + tr.find('td.filesize').remove(); + return tr; + }; + + FileList._onClickBreadCrumb = function(e) { + var $el = $(e.target).closest('.crumb'), + index = $el.index(), + $targetDir = $el.data('dir'); + // first one is home, let the link makes it default action + if (index !== 0) { + e.preventDefault(); + FileList.changeDirectory($targetDir); + } + }; + + var oldAdd = FileList.add; + FileList.add = function(fileData, options) { + options = options || {}; + var dir = FileList.getCurrentDirectory(); + var dirListing = dir !== '' && dir !== '/'; + // show deleted time as mtime + if (fileData.mtime) { + fileData.mtime = parseInt(fileData.mtime, 10); + } + if (!dirListing) { + fileData.displayName = fileData.name; + fileData.name = fileData.name + '.d' + Math.floor(fileData.mtime / 1000); + } + return oldAdd.call(this, fileData, options); + }; + + FileList.linkTo = function(dir){ + return OC.linkTo('files_trashbin', 'index.php')+"?dir="+ encodeURIComponent(dir).replace(/%2F/g, '/'); + }; + + FileList.updateEmptyContent = function(){ + var $fileList = $('#fileList'); + var exists = $fileList.find('tr:first').exists(); + $('#emptycontent').toggleClass('hidden', exists); + $('#filestable th').toggleClass('hidden', !exists); + }; +})(); diff --git a/apps/files_trashbin/js/trash.js b/apps/files_trashbin/js/trash.js index efe1e89f0bf..5cd49e19aaa 100644 --- a/apps/files_trashbin/js/trash.js +++ b/apps/files_trashbin/js/trash.js @@ -8,9 +8,26 @@ * */ -/* global OC, t, FileList, FileActions */ - +/* global OC, t, BreadCrumb, FileActions, FileList, Files */ $(document).ready(function() { + var deletedRegExp = new RegExp(/^(.+)\.d[0-9]+$/); + + /** + * Convert a file name in the format filename.d12345 to the real file name. + * This will use basename. + * The name will not be changed if it has no ".d12345" suffix. + * @param name file name + * @return converted file name + */ + function getDeletedFileName(name) { + name = OC.basename(name); + var match = deletedRegExp.exec(name); + if (match && match.length > 1) { + name = match[1]; + } + return name; + } + function removeCallback(result) { if (result.status !== 'success') { OC.dialogs.alert(result.data.message, t('core', 'Error')); @@ -18,7 +35,7 @@ $(document).ready(function() { var files = result.data.success; for (var i = 0; i < files.length; i++) { - FileList.findFileEl(OC.basename(files[i].filename)).remove(); + FileList.remove(OC.basename(files[i].filename), {updateSummary: false}); } FileList.updateFileSummary(); FileList.updateEmptyContent(); @@ -74,7 +91,6 @@ $(document).ready(function() { } procesSelection(); }); - $('.undelete').click('click', function(event) { event.preventDefault(); var allFiles = $('#select_all').is(':checked'); @@ -89,7 +105,7 @@ $(document).ready(function() { }; } else { - files = getSelectedFiles('name'); + files = Files.getSelectedFiles('name'); for (var i = 0; i < files.length; i++) { var deleteAction = FileList.findFileEl(files[i]).children("td.date").children(".action.delete"); deleteAction.removeClass('delete-icon').addClass('progress-icon'); @@ -131,7 +147,7 @@ $(document).ready(function() { }; } else { - files = getSelectedFiles('name'); + files = Files.getSelectedFiles('name'); params = { files: JSON.stringify(files), dir: FileList.getCurrentDirectory() @@ -158,7 +174,7 @@ $(document).ready(function() { } FileList.hideMask(); // simply remove all files - FileList.update(''); + FileList.setFiles([]); enableActions(); } else { @@ -191,7 +207,7 @@ $(document).ready(function() { var filename = $(this).parent().parent().attr('data-file'); var tr = FileList.findFileEl(filename); var renaming = tr.data('renaming'); - if(!renaming && !FileList.isLoading(filename)){ + if(!renaming){ if(mime.substr(0, 5) === 'text/'){ //no texteditor for now return; } @@ -203,47 +219,61 @@ $(document).ready(function() { action(filename); } } - - // event handlers for breadcrumb items - $('#controls').delegate('.crumb:not(.home) a', 'click', onClickBreadcrumb); }); - FileActions.actions.dir = { - // only keep 'Open' action for navigation - 'Open': FileActions.actions.dir.Open + /** + * Override crumb URL maker (hacky!) + */ + FileList.breadcrumb.getCrumbUrl = function(part, index) { + if (index === 0) { + return OC.linkTo('files', 'index.php'); + } + return OC.linkTo('files_trashbin', 'index.php')+"?dir=" + encodeURIComponent(part.dir); }; -}); -/** - * @brief get a list of selected files - * @param string property (option) the property of the file requested - * @return array - * - * possible values for property: name, mime, size and type - * if property is set, an array with that property for each file is returnd - * if it's ommited an array of objects with all properties is returned - */ -function getSelectedFiles(property){ - var elements=$('td.filename input:checkbox:checked').parent().parent(); - var files=[]; - elements.each(function(i,element){ - var file={ - name:$(element).attr('data-file'), - timestamp:$(element).attr('data-timestamp'), - type:$(element).attr('data-type') + Files.generatePreviewUrl = function(urlSpec) { + return OC.generateUrl('/apps/files_trashbin/ajax/preview.php?') + $.param(urlSpec); + }; + + Files.getDownloadUrl = function(action, params) { + // no downloads + return '#'; + }; + + Files.getAjaxUrl = function(action, params) { + var q = ''; + if (params) { + q = '?' + OC.buildQueryString(params); + } + return OC.filePath('files_trashbin', 'ajax', action + '.php') + q; + }; + + + /** + * Override crumb making to add "Deleted Files" entry + * and convert files with ".d" extensions to a more + * user friendly name. + */ + var oldMakeCrumbs = BreadCrumb.prototype._makeCrumbs; + BreadCrumb.prototype._makeCrumbs = function() { + var parts = oldMakeCrumbs.apply(this, arguments); + // duplicate first part + parts.unshift(parts[0]); + parts[1] = { + dir: '/', + name: t('files_trashbin', 'Deleted Files') }; - if(property){ - files.push(file[property]); - }else{ - files.push(file); + for (var i = 2; i < parts.length; i++) { + parts[i].name = getDeletedFileName(parts[i].name); } - }); - return files; -} + return parts; + }; -function fileDownloadPath(dir, file) { - return OC.filePath('files_trashbin', '', 'download.php') + '?file='+encodeURIComponent(file); -} + FileActions.actions.dir = { + // only keep 'Open' action for navigation + 'Open': FileActions.actions.dir.Open + }; +}); function enableActions() { $(".action").css("display", "inline"); diff --git a/apps/files_trashbin/lib/helper.php b/apps/files_trashbin/lib/helper.php index 9c24332a964..e6ca73520a6 100644 --- a/apps/files_trashbin/lib/helper.php +++ b/apps/files_trashbin/lib/helper.php @@ -27,6 +27,10 @@ class Helper if ($dirContent === false) { return $result; } + + list($storage, $internalPath) = $view->resolvePath($dir); + $absoluteDir = $view->getAbsolutePath($dir); + if (is_resource($dirContent)) { while (($entryName = readdir($dirContent)) !== false) { if (!\OC\Files\Filesystem::isIgnoredDir($entryName)) { @@ -40,76 +44,41 @@ class Helper $parts = explode('/', ltrim($dir, '/')); $timestamp = substr(pathinfo($parts[0], PATHINFO_EXTENSION), 1); } - $result[] = array( - 'id' => $id, - 'timestamp' => $timestamp, - 'mime' => \OC_Helper::getFileNameMimeType($id), + $i = array( + 'name' => $id, + 'mtime' => $timestamp, + 'mimetype' => \OC_Helper::getFileNameMimeType($id), 'type' => $view->is_dir($dir . '/' . $entryName) ? 'dir' : 'file', - 'location' => $dir, + 'directory' => ($dir === '/') ? '' : $dir, ); + $result[] = new FileInfo($absoluteDir . '/' . $i['name'], $storage, $internalPath . '/' . $i['name'], $i); } } closedir($dirContent); } - $files = array(); - $id = 0; - list($storage, $internalPath) = $view->resolvePath($dir); - $absoluteDir = $view->getAbsolutePath($dir); - foreach ($result as $r) { - $i = array(); - $i['id'] = $id++; - $i['name'] = $r['id']; - $i['date'] = \OCP\Util::formatDate($r['timestamp']); - $i['timestamp'] = $r['timestamp']; - $i['etag'] = $r['timestamp']; // add fake etag, it is only needed to identify the preview image - $i['mimetype'] = $r['mime']; - $i['type'] = $r['type']; - if ($i['type'] === 'file') { - $fileinfo = pathinfo($r['id']); - $i['basename'] = $fileinfo['filename']; - $i['extension'] = isset($fileinfo['extension']) ? ('.'.$fileinfo['extension']) : ''; - } - $i['directory'] = $r['location']; - if ($i['directory'] === '/') { - $i['directory'] = ''; - } - $i['permissions'] = \OCP\PERMISSION_READ; - if (\OCP\App::isEnabled('files_encryption')) { - $i['isPreviewAvailable'] = false; - } else { - $i['isPreviewAvailable'] = \OC::$server->getPreviewManager()->isMimeSupported($r['mime']); - } - $i['icon'] = \OCA\Files\Helper::determineIcon($i); - $files[] = new FileInfo($absoluteDir . '/' . $i['name'], $storage, $internalPath . '/' . $i['name'], $i); - } - - usort($files, array('\OCA\Files\Helper', 'fileCmp')); + usort($result, array('\OCA\Files\Helper', 'fileCmp')); - return $files; + return $result; } /** - * Splits the given path into a breadcrumb structure. - * @param string $dir path to process - * @return array where each entry is a hash of the absolute - * directory path and its name + * Format file infos for JSON + * @param \OCP\Files\FileInfo[] $fileInfos file infos */ - public static function makeBreadcrumb($dir){ - // Make breadcrumb - $pathtohere = ''; - $breadcrumb = array(); - foreach (explode('/', $dir) as $i) { - if ($i !== '') { - if ( preg_match('/^(.+)\.d[0-9]+$/', $i, $match) ) { - $name = $match[1]; - } else { - $name = $i; - } - $pathtohere .= '/' . $i; - $breadcrumb[] = array('dir' => $pathtohere, 'name' => $name); + public static function formatFileInfos($fileInfos) { + $files = array(); + $id = 0; + foreach ($fileInfos as $i) { + $entry = \OCA\Files\Helper::formatFileInfo($i); + $entry['id'] = $id++; + $entry['etag'] = $entry['mtime']; // add fake etag, it is only needed to identify the preview image + $entry['permissions'] = \OCP\PERMISSION_READ; + if (\OCP\App::isEnabled('files_encryption')) { + $entry['isPreviewAvailable'] = false; } + $files[] = $entry; } - return $breadcrumb; + return $files; } } diff --git a/apps/files_trashbin/templates/index.php b/apps/files_trashbin/templates/index.php index f9264d4352c..615cf8bdd00 100644 --- a/apps/files_trashbin/templates/index.php +++ b/apps/files_trashbin/templates/index.php @@ -1,13 +1,11 @@
      - -
      +
      -
      class="hidden">t('Nothing in here. Your trash bin is empty!'))?>
      + - - + @@ -40,6 +38,5 @@ -
      diff --git a/apps/files_trashbin/templates/part.breadcrumb.php b/apps/files_trashbin/templates/part.breadcrumb.php deleted file mode 100644 index fdf78c190d0..00000000000 --- a/apps/files_trashbin/templates/part.breadcrumb.php +++ /dev/null @@ -1,19 +0,0 @@ - - - - - -
      svg" - data-dir=''> - -
      -200) $relative_date_color = 200; - $name = \OCP\Util::encodePath($file['name']); - $directory = \OCP\Util::encodePath($file['directory']); ?> - ' - - id="" - data-file="" - data-timestamp='' - data-dirlisting=1 - - id="" - data-file="" - data-timestamp='' - data-dirlisting=0 - > - - - - - style="background-image:url()" - - - style="background-image:url()" - - style="background-image:url()" - - - > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Date: Wed, 2 Apr 2014 16:53:45 +0200 Subject: [PATCH 184/296] Reuse known free space in the files app --- apps/files/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/index.php b/apps/files/index.php index 4d765b69e41..cd9341d3b1d 100644 --- a/apps/files/index.php +++ b/apps/files/index.php @@ -97,7 +97,7 @@ $permissions = $dirInfo->getPermissions(); $storageInfo=OC_Helper::getStorageInfo($dir); $freeSpace=$storageInfo['free']; $uploadLimit=OCP\Util::uploadLimit(); -$maxUploadFilesize=OCP\Util::maxUploadFilesize($dir); +$maxUploadFilesize=OCP\Util::maxUploadFilesize($dir, $freeSpace); $publicUploadEnabled = $config->getAppValue('core', 'shareapi_allow_public_upload', 'yes'); // if the encryption app is disabled, than everything is fine (INIT_SUCCESSFUL status code) $encryptionInitStatus = 2; -- GitLab From da5541ac025e5f5f9dbd7318b903266eedbed263 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 2 Apr 2014 17:10:57 +0200 Subject: [PATCH 185/296] Allow reusing FileInfo for getStorageInfo --- apps/files/index.php | 4 ++-- lib/private/helper.php | 9 ++++++--- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/apps/files/index.php b/apps/files/index.php index 4d765b69e41..f2c5bd13359 100644 --- a/apps/files/index.php +++ b/apps/files/index.php @@ -38,7 +38,7 @@ OCP\App::setActiveNavigationEntry('files_index'); // Load the files $dir = isset($_GET['dir']) ? stripslashes($_GET['dir']) : ''; $dir = \OC\Files\Filesystem::normalizePath($dir); -$dirInfo = \OC\Files\Filesystem::getFileInfo($dir); +$dirInfo = \OC\Files\Filesystem::getFileInfo($dir, false); // Redirect if directory does not exist if (!$dirInfo || !$dirInfo->getType() === 'dir') { header('Location: ' . OCP\Util::getScriptName() . ''); @@ -94,7 +94,7 @@ $breadcrumbNav->assign('baseURL', OCP\Util::linkTo('files', 'index.php') . '?dir $permissions = $dirInfo->getPermissions(); // information about storage capacities -$storageInfo=OC_Helper::getStorageInfo($dir); +$storageInfo=OC_Helper::getStorageInfo($dir, $dirInfo); $freeSpace=$storageInfo['free']; $uploadLimit=OCP\Util::uploadLimit(); $maxUploadFilesize=OCP\Util::maxUploadFilesize($dir); diff --git a/lib/private/helper.php b/lib/private/helper.php index d7ac0b5f4fa..da3d3cd1c6e 100644 --- a/lib/private/helper.php +++ b/lib/private/helper.php @@ -875,12 +875,15 @@ class OC_Helper { * Calculate the disc space for the given path * * @param string $path + * @param \OCP\Files\FileInfo $rootInfo (optional) * @return array */ - public static function getStorageInfo($path) { + public static function getStorageInfo($path, $rootInfo = null) { // return storage info without adding mount points - $rootInfo = \OC\Files\Filesystem::getFileInfo($path, false); - $used = $rootInfo['size']; + if (is_null($rootInfo)) { + $rootInfo = \OC\Files\Filesystem::getFileInfo($path, false); + } + $used = $rootInfo->getSize(); if ($used < 0) { $used = 0; } -- GitLab From b8248f4a0acf0de228774aec0f7150a538ed09e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Wed, 2 Apr 2014 17:32:27 +0200 Subject: [PATCH 186/296] compare floats with epsilon --- lib/private/preview.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/private/preview.php b/lib/private/preview.php index 0c1af3c9588..963cda66992 100755 --- a/lib/private/preview.php +++ b/lib/private/preview.php @@ -355,7 +355,8 @@ class Preview { $y = (int)$size[1]; $aspectRatio = (float)($x / $y); - if ($aspectRatio !== $wantedAspectRatio) { + $epsilon = 0.000001; + if (($aspectRatio - $wantedAspectRatio) >= $epsilon) { continue; } -- GitLab From bca6cc6f741ae957a345ca21d689a5f23d964d9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Wed, 2 Apr 2014 17:34:48 +0200 Subject: [PATCH 187/296] remove unnecessary code --- lib/private/preview.php | 18 ++---------------- 1 file changed, 2 insertions(+), 16 deletions(-) diff --git a/lib/private/preview.php b/lib/private/preview.php index 963cda66992..493ed90f770 100755 --- a/lib/private/preview.php +++ b/lib/private/preview.php @@ -373,24 +373,8 @@ class Preview { $possibleThumbnails[$x] = $thumbnail['path']; } - if (count($possibleThumbnails) === 0) { - return false; - } - - if (count($possibleThumbnails) === 1) { - return current($possibleThumbnails); - } - ksort($possibleThumbnails); - if (key(reset($possibleThumbnails)) > $maxX) { - return current(reset($possibleThumbnails)); - } - - if (key(end($possibleThumbnails)) < $maxX) { - return current(end($possibleThumbnails)); - } - foreach ($possibleThumbnails as $width => $path) { if ($width < $maxX) { continue; @@ -398,6 +382,8 @@ class Preview { return $path; } } + + return false; } /** -- GitLab From 6b017201b8753206236bf96b61c87224c6e41f41 Mon Sep 17 00:00:00 2001 From: tomneedham Date: Wed, 2 Apr 2014 15:50:51 +0000 Subject: [PATCH 188/296] Only accept success as 100 like the OCS spec does --- lib/private/ocs/result.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/ocs/result.php b/lib/private/ocs/result.php index 9f14e8da7e8..0e3b85d5905 100644 --- a/lib/private/ocs/result.php +++ b/lib/private/ocs/result.php @@ -96,7 +96,7 @@ class OC_OCS_Result{ * @return bool */ public function succeeded() { - return (substr($this->statusCode, 0, 1) === '1'); + return ($this->statusCode == 100); } -- GitLab From 5f3b8c45d73451d511242a3aabc768520273c40c Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Wed, 2 Apr 2014 17:54:33 +0200 Subject: [PATCH 189/296] Remove dependency on container, removing service locator antipattern --- lib/public/appframework/controller.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/public/appframework/controller.php b/lib/public/appframework/controller.php index 7c2219bd046..758f0a80083 100644 --- a/lib/public/appframework/controller.php +++ b/lib/public/appframework/controller.php @@ -38,10 +38,10 @@ use OCP\IRequest; abstract class Controller { /** - * app container for dependency injection - * @var \OCP\AppFramework\IAppContainer + * app name + * @var string */ - protected $app; + protected $appName; /** * current request @@ -51,11 +51,11 @@ abstract class Controller { /** * constructor of the controller - * @param IAppContainer $app interface to the app + * @param string $appName the name of the app * @param IRequest $request an instance of the request */ - public function __construct(IAppContainer $app, IRequest $request){ - $this->app = $app; + public function __construct($appName, IRequest $request){ + $this->appName = $appName; $this->request = $request; } @@ -136,7 +136,7 @@ abstract class Controller { */ public function render($templateName, array $params=array(), $renderAs='user', array $headers=array()){ - $response = new TemplateResponse($this->app->getAppName(), $templateName); + $response = new TemplateResponse($this->appName, $templateName); $response->setParams($params); $response->renderAs($renderAs); -- GitLab From 436a78db448d4263f90de0490202b8d7a936d3a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Wed, 2 Apr 2014 17:59:39 +0200 Subject: [PATCH 190/296] extract method isCachedBigger --- lib/private/preview.php | 47 +++++++++++++++++++++++++++++------------ 1 file changed, 33 insertions(+), 14 deletions(-) diff --git a/lib/private/preview.php b/lib/private/preview.php index 493ed90f770..7be392a50d9 100755 --- a/lib/private/preview.php +++ b/lib/private/preview.php @@ -314,16 +314,12 @@ class Preview { /** * @brief check if thumbnail or bigger version of thumbnail of file is cached - * @return mixed (bool / string) - * false if thumbnail does not exist - * path to thumbnail if thumbnail exists + * @return string|false path to thumbnail if it exists or false */ private function isCached() { $file = $this->getFile(); $maxX = $this->getMaxX(); $maxY = $this->getMaxY(); - $scalingUp = $this->getScalingUp(); - $maxScaleFactor = $this->getMaxScaleFactor(); $fileInfo = $this->getFileInfo($file); $fileId = $fileInfo->getId(); @@ -333,16 +329,40 @@ class Preview { } $previewPath = $this->getThumbnailsFolder() . '/' . $fileId . '/'; - if (!$this->userView->is_dir($previewPath)) { - return false; - } //does a preview with the wanted height and width already exist? if ($this->userView->file_exists($previewPath . $maxX . '-' . $maxY . '.png')) { return $previewPath . $maxX . '-' . $maxY . '.png'; } - $wantedAspectRatio = (float)($maxX / $maxY); + return $this->isCachedBigger(); + } + + /** + * @brief check if a bigger version of thumbnail of file is cached + * @return string|false path to bigger thumbnail if it exists or false + */ + private function isCachedBigger() { + + $file = $this->getFile(); + $maxX = $this->getMaxX(); + $maxY = $this->getMaxY(); + $scalingUp = $this->getScalingUp(); + $maxScaleFactor = $this->getMaxScaleFactor(); + + $fileInfo = $this->fileView->getFileInfo($file); + $fileId = $fileInfo['fileid']; + + if (is_null($fileId)) { + return false; + } + + $previewPath = $this->getThumbnailsFolder() . '/' . $fileId . '/'; + if (!$this->userView->is_dir($previewPath)) { + return false; + } + + $wantedAspectRatio = (float) ($maxX / $maxY); //array for usable cached thumbnails $possibleThumbnails = array(); @@ -351,10 +371,10 @@ class Preview { foreach ($allThumbnails as $thumbnail) { $name = rtrim($thumbnail['name'], '.png'); $size = explode('-', $name); - $x = (int)$size[0]; - $y = (int)$size[1]; + $x = (int) $size[0]; + $y = (int) $size[1]; - $aspectRatio = (float)($x / $y); + $aspectRatio = (float) ($x / $y); $epsilon = 0.000001; if (($aspectRatio - $wantedAspectRatio) >= $epsilon) { continue; @@ -382,10 +402,9 @@ class Preview { return $path; } } - + return false; } - /** * @brief return a preview of a file * @return \OC_Image -- GitLab From b9a8bd7e1f6f99fe5d26e1693d13ebc6ddf81777 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Wed, 2 Apr 2014 18:32:32 +0200 Subject: [PATCH 191/296] extract more methods --- lib/private/preview.php | 109 +++++++++++++++++++++++----------------- 1 file changed, 63 insertions(+), 46 deletions(-) diff --git a/lib/private/preview.php b/lib/private/preview.php index 7be392a50d9..36cc5d9a2e0 100755 --- a/lib/private/preview.php +++ b/lib/private/preview.php @@ -314,19 +314,16 @@ class Preview { /** * @brief check if thumbnail or bigger version of thumbnail of file is cached + * @param int $fileId fileId of the original image * @return string|false path to thumbnail if it exists or false */ - private function isCached() { - $file = $this->getFile(); - $maxX = $this->getMaxX(); - $maxY = $this->getMaxY(); - - $fileInfo = $this->getFileInfo($file); - $fileId = $fileInfo->getId(); - + private function isCached($fileId) { if (is_null($fileId)) { return false; } + + $maxX = $this->getMaxX(); + $maxY = $this->getMaxY(); $previewPath = $this->getThumbnailsFolder() . '/' . $fileId . '/'; @@ -335,34 +332,49 @@ class Preview { return $previewPath . $maxX . '-' . $maxY . '.png'; } - return $this->isCachedBigger(); + return $this->isCachedBigger($fileId); } /** * @brief check if a bigger version of thumbnail of file is cached + * @param int $fileId fileId of the original image * @return string|false path to bigger thumbnail if it exists or false */ - private function isCachedBigger() { - - $file = $this->getFile(); + private function isCachedBigger($fileId) { + + if (is_null($fileId)) { + return false; + } + $maxX = $this->getMaxX(); - $maxY = $this->getMaxY(); - $scalingUp = $this->getScalingUp(); - $maxScaleFactor = $this->getMaxScaleFactor(); - $fileInfo = $this->fileView->getFileInfo($file); - $fileId = $fileInfo['fileid']; + //array for usable cached thumbnails + $possibleThumbnails = $this->getPossibleThumbnails($fileId); + + foreach ($possibleThumbnails as $width => $path) { + if ($width < $maxX) { + continue; + } else { + return $path; + } + } + + return false; + } + /** + * @brief get possible bigger thumbnails of the given image + * @param int $fileId fileId of the original image + * @return array of paths to bigger thumbnails + */ + private function getPossibleThumbnails($fileId) { if (is_null($fileId)) { - return false; + return array(); } $previewPath = $this->getThumbnailsFolder() . '/' . $fileId . '/'; - if (!$this->userView->is_dir($previewPath)) { - return false; - } - - $wantedAspectRatio = (float) ($maxX / $maxY); + + $wantedAspectRatio = (float) ($this->getMaxX() / $this->getMaxY()); //array for usable cached thumbnails $possibleThumbnails = array(); @@ -370,39 +382,44 @@ class Preview { $allThumbnails = $this->userView->getDirectoryContent($previewPath); foreach ($allThumbnails as $thumbnail) { $name = rtrim($thumbnail['name'], '.png'); - $size = explode('-', $name); - $x = (int) $size[0]; - $y = (int) $size[1]; + list($x, $y, $aspectRatio) = $this->getDimensionsFromFilename($name); - $aspectRatio = (float) ($x / $y); - $epsilon = 0.000001; - if (($aspectRatio - $wantedAspectRatio) >= $epsilon) { + if (($aspectRatio - $wantedAspectRatio) >= 0.000001 + || $this->unscalable($x, $y) + ) { continue; } - - if ($x < $maxX || $y < $maxY) { - if ($scalingUp) { - $scalefactor = $maxX / $x; - if ($scalefactor > $maxScaleFactor) { - continue; - } - } else { - continue; - } - } $possibleThumbnails[$x] = $thumbnail['path']; } ksort($possibleThumbnails); - foreach ($possibleThumbnails as $width => $path) { - if ($width < $maxX) { - continue; + return $possibleThumbnails; + } + private function getDimensionsFromFilename($name) { + $size = explode('-', $name); + $x = (int) $size[0]; + $y = (int) $size[1]; + $aspectRatio = (float) ($x / $y); + return array('x' => $x,'y' => $y,'aspectRatio' => $aspectRatio); + } + private function unscalable($x, $y) { + + $maxX = $this->getMaxX(); + $maxY = $this->getMaxY(); + $scalingUp = $this->getScalingUp(); + $maxScaleFactor = $this->getMaxScaleFactor(); + + if ($x < $maxX || $y < $maxY) { + if ($scalingUp) { + $scalefactor = $maxX / $x; + if ($scalefactor > $maxScaleFactor) { + return true; + } } else { - return $path; + return true; } } - return false; } /** @@ -426,7 +443,7 @@ class Preview { } $fileId = $fileInfo->getId(); - $cached = $this->isCached(); + $cached = $this->isCached($fileId); if ($cached) { $stream = $this->userView->fopen($cached, 'r'); -- GitLab From 54783550e8736e0507be05fdc8711d8b30218d72 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Thu, 3 Apr 2014 01:56:12 -0400 Subject: [PATCH 192/296] [tx-robot] updated from transifex --- apps/files/l10n/tr.php | 2 +- apps/files_encryption/l10n/hu_HU.php | 1 + apps/files_external/l10n/de.php | 2 ++ apps/files_external/l10n/de_DE.php | 2 ++ apps/files_external/l10n/en_GB.php | 2 ++ apps/files_external/l10n/es.php | 1 + apps/files_external/l10n/fi_FI.php | 2 ++ apps/files_external/l10n/gl.php | 2 ++ apps/files_external/l10n/it.php | 2 ++ apps/files_external/l10n/nl.php | 2 ++ apps/files_external/l10n/pl.php | 2 ++ apps/files_external/l10n/pt_BR.php | 2 ++ apps/files_external/l10n/tr.php | 2 ++ core/l10n/tr.php | 2 +- l10n/de/files_external.po | 11 +++--- l10n/de_DE/files_external.po | 11 +++--- l10n/en_GB/files_external.po | 10 +++--- l10n/es/files_external.po | 8 ++--- l10n/fi_FI/files_external.po | 10 +++--- l10n/gl/files_external.po | 10 +++--- l10n/hu_HU/files_encryption.po | 51 ++++++++++++++-------------- l10n/it/files_external.po | 11 +++--- l10n/nl/files_external.po | 10 +++--- l10n/pl/files_external.po | 10 +++--- l10n/pt_BR/files_external.po | 10 +++--- l10n/templates/core.pot | 2 +- 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/tr/core.po | 6 ++-- l10n/tr/files.po | 46 ++++++++++++------------- l10n/tr/files_external.po | 10 +++--- 40 files changed, 145 insertions(+), 119 deletions(-) diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index a2570e002ac..095578ce65b 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -29,7 +29,7 @@ $TRANSLATIONS = array( "Invalid directory." => "Geçersiz dizin.", "Files" => "Dosyalar", "Unable to upload {filename} as it is a directory or has 0 bytes" => "Bir dizin veya 0 bayt olduğundan {filename} yüklenemedi", -"Total file size {size1} exceeds upload limit {size2}" => "Toplam dosya boyutu {size1} gönderme sınırını {size2} aşıyor", +"Total file size {size1} exceeds upload limit {size2}" => "Toplam dosya boyutu {size1}, {size2} gönderme sınırını aşıyor", "Not enough free space, you are uploading {size1} but only {size2} is left" => "Yeterince boş alan yok. Gönderdiğiniz boyut {size1} ancak {size2} alan mevcut", "Upload cancelled." => "Yükleme iptal edildi.", "Could not get result from server." => "Sunucudan sonuç alınamadı.", diff --git a/apps/files_encryption/l10n/hu_HU.php b/apps/files_encryption/l10n/hu_HU.php index a80c8d6f36d..22c1fa989bd 100644 --- a/apps/files_encryption/l10n/hu_HU.php +++ b/apps/files_encryption/l10n/hu_HU.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "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." => "Kérem gondoskodjon arról, hogy PHP 5.3.3 vagy annál frissebb legyen telepítve, továbbá az OpenSSL a megfelelő PHP-bővítménnyel együtt rendelkezésre álljon és helyesen legyen konfigurálva! A titkosító modul egyelőre kikapcsolásra került.", "Following users are not set up for encryption:" => "A következő felhasználók nem állították be a titkosítást:", "Initial encryption started... This can take some time. Please wait." => "A titkosítási folyamat megkezdődött... Ez hosszabb ideig is eltarthat. Kérem várjon.", +"Initial encryption running... Please try again later." => "Kezedeti titkosítás fut... Próbálja később.", "Go directly to your " => "Ugrás ide:", "personal settings" => "személyes beállítások", "Encryption" => "Titkosítás", diff --git a/apps/files_external/l10n/de.php b/apps/files_external/l10n/de.php index 9a885c69e47..4c3f5639656 100644 --- a/apps/files_external/l10n/de.php +++ b/apps/files_external/l10n/de.php @@ -14,7 +14,9 @@ $TRANSLATIONS = array( "External storage" => "Externer Speicher", "Configuration" => "Konfiguration", "Options" => "Optionen", +"Available for" => "Verfügbar für", "Add storage" => "Speicher hinzufügen", +"No user or group" => "Kein Nutzer oder Gruppe", "All Users" => "Alle Benutzer", "Groups" => "Gruppen", "Users" => "Benutzer", diff --git a/apps/files_external/l10n/de_DE.php b/apps/files_external/l10n/de_DE.php index 088dfd75b44..63198c98176 100644 --- a/apps/files_external/l10n/de_DE.php +++ b/apps/files_external/l10n/de_DE.php @@ -14,7 +14,9 @@ $TRANSLATIONS = array( "External storage" => "Externer Speicher", "Configuration" => "Konfiguration", "Options" => "Optionen", +"Available for" => "Verfügbar für", "Add storage" => "Speicher hinzufügen", +"No user or group" => "Kein Nutzer oder Gruppe", "All Users" => "Alle Benutzer", "Groups" => "Gruppen", "Users" => "Benutzer", diff --git a/apps/files_external/l10n/en_GB.php b/apps/files_external/l10n/en_GB.php index 9901d49bb79..f0ebb629de9 100644 --- a/apps/files_external/l10n/en_GB.php +++ b/apps/files_external/l10n/en_GB.php @@ -14,7 +14,9 @@ $TRANSLATIONS = array( "External storage" => "External storage", "Configuration" => "Configuration", "Options" => "Options", +"Available for" => "Available for", "Add storage" => "Add storage", +"No user or group" => "No user or group", "All Users" => "All Users", "Groups" => "Groups", "Users" => "Users", diff --git a/apps/files_external/l10n/es.php b/apps/files_external/l10n/es.php index 46d93cbd7f1..04537ecf56f 100644 --- a/apps/files_external/l10n/es.php +++ b/apps/files_external/l10n/es.php @@ -15,6 +15,7 @@ $TRANSLATIONS = array( "Configuration" => "Configuración", "Options" => "Opciones", "Add storage" => "Añadir almacenamiento", +"No user or group" => "Ningún usuario o grupo", "All Users" => "Todos los usuarios", "Groups" => "Grupos", "Users" => "Usuarios", diff --git a/apps/files_external/l10n/fi_FI.php b/apps/files_external/l10n/fi_FI.php index 289bbdd3ad5..9f8dbd414fd 100644 --- a/apps/files_external/l10n/fi_FI.php +++ b/apps/files_external/l10n/fi_FI.php @@ -14,7 +14,9 @@ $TRANSLATIONS = array( "External storage" => "Ulkoinen tallennustila", "Configuration" => "Asetukset", "Options" => "Valinnat", +"Available for" => "Saatavuus", "Add storage" => "Lisää tallennustila", +"No user or group" => "Ei käyttäjää tai ryhmää", "All Users" => "Kaikki käyttäjät", "Groups" => "Ryhmät", "Users" => "Käyttäjät", diff --git a/apps/files_external/l10n/gl.php b/apps/files_external/l10n/gl.php index 1510df381b6..3b5aaa53de0 100644 --- a/apps/files_external/l10n/gl.php +++ b/apps/files_external/l10n/gl.php @@ -14,7 +14,9 @@ $TRANSLATIONS = array( "External storage" => "Almacenamento externo", "Configuration" => "Configuración", "Options" => "Opcións", +"Available for" => "Dispoñíbel para", "Add storage" => "Engadir almacenamento", +"No user or group" => "Non hai usuario ou grupo", "All Users" => "Todos os usuarios", "Groups" => "Grupos", "Users" => "Usuarios", diff --git a/apps/files_external/l10n/it.php b/apps/files_external/l10n/it.php index 75f60268c36..ea3e5738189 100644 --- a/apps/files_external/l10n/it.php +++ b/apps/files_external/l10n/it.php @@ -14,7 +14,9 @@ $TRANSLATIONS = array( "External storage" => "Archiviazione esterna", "Configuration" => "Configurazione", "Options" => "Opzioni", +"Available for" => "Disponibile per", "Add storage" => "Aggiungi archiviazione", +"No user or group" => "Nessun utente o gruppo", "All Users" => "Tutti gli utenti", "Groups" => "Gruppi", "Users" => "Utenti", diff --git a/apps/files_external/l10n/nl.php b/apps/files_external/l10n/nl.php index 74bc7de4d8a..dceccc7ee53 100644 --- a/apps/files_external/l10n/nl.php +++ b/apps/files_external/l10n/nl.php @@ -14,7 +14,9 @@ $TRANSLATIONS = array( "External storage" => "Externe opslag", "Configuration" => "Configuratie", "Options" => "Opties", +"Available for" => "Beschikbaar voor", "Add storage" => "Toevoegen opslag", +"No user or group" => "Geen gebruiker of groep", "All Users" => "Alle gebruikers", "Groups" => "Groepen", "Users" => "Gebruikers", diff --git a/apps/files_external/l10n/pl.php b/apps/files_external/l10n/pl.php index d64292e0be2..4a3dbaf206a 100644 --- a/apps/files_external/l10n/pl.php +++ b/apps/files_external/l10n/pl.php @@ -14,7 +14,9 @@ $TRANSLATIONS = array( "External storage" => "Zewnętrzne zasoby dyskowe", "Configuration" => "Konfiguracja", "Options" => "Opcje", +"Available for" => "Dostępne przez", "Add storage" => "Dodaj zasoby dyskowe", +"No user or group" => "Brak użytkownika lub grupy", "All Users" => "Wszyscy uzytkownicy", "Groups" => "Grupy", "Users" => "Użytkownicy", diff --git a/apps/files_external/l10n/pt_BR.php b/apps/files_external/l10n/pt_BR.php index 1d074a575ae..5638fd1d703 100644 --- a/apps/files_external/l10n/pt_BR.php +++ b/apps/files_external/l10n/pt_BR.php @@ -14,7 +14,9 @@ $TRANSLATIONS = array( "External storage" => "Armazenamento Externo", "Configuration" => "Configuração", "Options" => "Opções", +"Available for" => "Disponível para", "Add storage" => "Adicionar Armazenamento", +"No user or group" => "Nenhum usuário ou grupo", "All Users" => "Todos os Usuários", "Groups" => "Grupos", "Users" => "Usuários", diff --git a/apps/files_external/l10n/tr.php b/apps/files_external/l10n/tr.php index 98331d39e3d..e9e5556a9f3 100644 --- a/apps/files_external/l10n/tr.php +++ b/apps/files_external/l10n/tr.php @@ -14,7 +14,9 @@ $TRANSLATIONS = array( "External storage" => "Harici depolama", "Configuration" => "Yapılandırma", "Options" => "Seçenekler", +"Available for" => "Kullanabilenler", "Add storage" => "Depo ekle", +"No user or group" => "Kullanıcı veya grup yok", "All Users" => "Tüm Kullanıcılar", "Groups" => "Gruplar", "Users" => "Kullanıcılar", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index a0c2c7154f0..cb9a98a8faa 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -65,7 +65,7 @@ $TRANSLATIONS = array( "Shared" => "Paylaşılan", "Share" => "Paylaş", "Error" => "Hata", -"Error while sharing" => "Paylaşım sırasında hata ", +"Error while sharing" => "Paylaşım sırasında hata", "Error while unsharing" => "Paylaşım iptal edilirken hata", "Error while changing permissions" => "İzinleri değiştirirken hata oluştu", "Shared with you and the group {group} by {owner}" => "{owner} tarafından sizinle ve {group} ile paylaştırılmış", diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index 45d63ba0052..29cb88a8322 100644 --- a/l10n/de/files_external.po +++ b/l10n/de/files_external.po @@ -4,14 +4,15 @@ # # Translators: # arkascha , 2013 +# Mario Siegmann , 2014 # stefanniedermann , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-03 01:55-0400\n" +"PO-Revision-Date: 2014-04-02 06: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" @@ -85,7 +86,7 @@ msgstr "Optionen" #: templates/settings.php:12 msgid "Available for" -msgstr "" +msgstr "Verfügbar für" #: templates/settings.php:32 msgid "Add storage" @@ -93,7 +94,7 @@ msgstr "Speicher hinzufügen" #: templates/settings.php:92 msgid "No user or group" -msgstr "" +msgstr "Kein Nutzer oder Gruppe" #: templates/settings.php:95 msgid "All Users" diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index dc3a439caae..f00b82bc67e 100644 --- a/l10n/de_DE/files_external.po +++ b/l10n/de_DE/files_external.po @@ -4,15 +4,16 @@ # # Translators: # arkascha , 2013 +# Mario Siegmann , 2014 # stefanniedermann , 2014 # Mirodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-03 01:55-0400\n" +"PO-Revision-Date: 2014-04-02 06: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" @@ -86,7 +87,7 @@ msgstr "Optionen" #: templates/settings.php:12 msgid "Available for" -msgstr "" +msgstr "Verfügbar für" #: templates/settings.php:32 msgid "Add storage" @@ -94,7 +95,7 @@ msgstr "Speicher hinzufügen" #: templates/settings.php:92 msgid "No user or group" -msgstr "" +msgstr "Kein Nutzer oder Gruppe" #: templates/settings.php:95 msgid "All Users" diff --git a/l10n/en_GB/files_external.po b/l10n/en_GB/files_external.po index b8fc186e42a..f7499ea07dd 100644 --- a/l10n/en_GB/files_external.po +++ b/l10n/en_GB/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-03 01:55-0400\n" +"PO-Revision-Date: 2014-04-02 11: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" @@ -84,7 +84,7 @@ msgstr "Options" #: templates/settings.php:12 msgid "Available for" -msgstr "" +msgstr "Available for" #: templates/settings.php:32 msgid "Add storage" @@ -92,7 +92,7 @@ msgstr "Add storage" #: templates/settings.php:92 msgid "No user or group" -msgstr "" +msgstr "No user or group" #: templates/settings.php:95 msgid "All Users" diff --git a/l10n/es/files_external.po b/l10n/es/files_external.po index 987cddc27f1..cb1fbff0c3b 100644 --- a/l10n/es/files_external.po +++ b/l10n/es/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-03 01:55-0400\n" +"PO-Revision-Date: 2014-04-02 15:20+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" @@ -93,7 +93,7 @@ msgstr "Añadir almacenamiento" #: templates/settings.php:92 msgid "No user or group" -msgstr "" +msgstr "Ningún usuario o grupo" #: templates/settings.php:95 msgid "All Users" diff --git a/l10n/fi_FI/files_external.po b/l10n/fi_FI/files_external.po index 1ef911539e5..d6334ce805a 100644 --- a/l10n/fi_FI/files_external.po +++ b/l10n/fi_FI/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-03 01:55-0400\n" +"PO-Revision-Date: 2014-04-02 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" @@ -84,7 +84,7 @@ msgstr "Valinnat" #: templates/settings.php:12 msgid "Available for" -msgstr "" +msgstr "Saatavuus" #: templates/settings.php:32 msgid "Add storage" @@ -92,7 +92,7 @@ msgstr "Lisää tallennustila" #: templates/settings.php:92 msgid "No user or group" -msgstr "" +msgstr "Ei käyttäjää tai ryhmää" #: templates/settings.php:95 msgid "All Users" diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index b4288acb57e..9d0df03eca6 100644 --- a/l10n/gl/files_external.po +++ b/l10n/gl/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-03 01:55-0400\n" +"PO-Revision-Date: 2014-04-02 11:07+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" @@ -84,7 +84,7 @@ msgstr "Opcións" #: templates/settings.php:12 msgid "Available for" -msgstr "" +msgstr "Dispoñíbel para" #: templates/settings.php:32 msgid "Add storage" @@ -92,7 +92,7 @@ msgstr "Engadir almacenamento" #: templates/settings.php:92 msgid "No user or group" -msgstr "" +msgstr "Non hai usuario ou grupo" #: templates/settings.php:95 msgid "All Users" diff --git a/l10n/hu_HU/files_encryption.po b/l10n/hu_HU/files_encryption.po index 99e10dc725a..1623bca0543 100644 --- a/l10n/hu_HU/files_encryption.po +++ b/l10n/hu_HU/files_encryption.po @@ -6,13 +6,14 @@ # blackc0de , 2013 # ebela , 2013 # Laszlo Tornoci , 2013 +# osztraksajt , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-03 01:55-0400\n" +"PO-Revision-Date: 2014-04-02 20:30+0000\n" +"Last-Translator: osztraksajt \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -104,7 +105,7 @@ msgstr "A titkosítási folyamat megkezdődött... Ez hosszabb ideig is eltartha #: js/detect-migration.js:25 msgid "Initial encryption running... Please try again later." -msgstr "" +msgstr "Kezedeti titkosítás fut... Próbálja később." #: templates/invalid_private_key.php:8 msgid "Go directly to your " @@ -114,91 +115,91 @@ msgstr "Ugrás ide:" msgid "personal settings" msgstr "személyes beállítások" -#: templates/settings-admin.php:4 templates/settings-personal.php:3 +#: templates/settings-admin.php:2 templates/settings-personal.php:2 msgid "Encryption" msgstr "Titkosítás" -#: templates/settings-admin.php:7 +#: templates/settings-admin.php:5 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "A helyreállítási kulcs beállítása (lehetővé teszi a felhasználók állományainak visszaállítását, ha elfelejtik a jelszavukat):" -#: templates/settings-admin.php:11 +#: templates/settings-admin.php:9 msgid "Recovery key password" msgstr "A helyreállítási kulcs jelszava" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:12 msgid "Repeat Recovery key password" msgstr "Ismételje meg a helyreállítási kulcs jelszavát" -#: templates/settings-admin.php:21 templates/settings-personal.php:51 +#: templates/settings-admin.php:19 templates/settings-personal.php:50 msgid "Enabled" msgstr "Bekapcsolva" -#: templates/settings-admin.php:29 templates/settings-personal.php:59 +#: templates/settings-admin.php:27 templates/settings-personal.php:58 msgid "Disabled" msgstr "Kikapcsolva" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:32 msgid "Change recovery key password:" msgstr "A helyreállítási kulcs jelszavának módosítása:" -#: templates/settings-admin.php:40 +#: templates/settings-admin.php:38 msgid "Old Recovery key password" msgstr "Régi Helyreállítási Kulcs Jelszava" -#: templates/settings-admin.php:47 +#: templates/settings-admin.php:45 msgid "New Recovery key password" msgstr "Új Helyreállítási kulcs jelszava" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:51 msgid "Repeat New Recovery key password" msgstr "Ismételje meg az új helyreállítási kulcs jelszavát" -#: templates/settings-admin.php:58 +#: templates/settings-admin.php:56 msgid "Change Password" msgstr "Jelszó megváltoztatása" -#: templates/settings-personal.php:9 +#: templates/settings-personal.php:8 msgid "Your private key password no longer match your log-in password:" msgstr "A személyes kulcs jelszava mostantól nem azonos a belépési jelszavával:" -#: templates/settings-personal.php:12 +#: templates/settings-personal.php:11 msgid "Set your old private key password to your current log-in password." msgstr "Állítsuk be a személyes kulcs jelszavát a jelenlegi bejelentkezési jelszavunkra." -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:13 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "Ha nem emlékszik a régi jelszavára akkor megkérheti a rendszergazdát, hogy állítsa vissza az állományait." -#: templates/settings-personal.php:22 +#: templates/settings-personal.php:21 msgid "Old log-in password" msgstr "Régi bejelentkezési jelszó" -#: templates/settings-personal.php:28 +#: templates/settings-personal.php:27 msgid "Current log-in password" msgstr "Jelenlegi bejelentkezési jelszó" -#: templates/settings-personal.php:33 +#: templates/settings-personal.php:32 msgid "Update Private Key Password" msgstr "A személyest kulcs jelszó frissítése" -#: templates/settings-personal.php:42 +#: templates/settings-personal.php:41 msgid "Enable password recovery:" msgstr "Jelszó-visszaállítás bekapcsolása" -#: templates/settings-personal.php:44 +#: templates/settings-personal.php:43 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "Ez az opció lehetővé teszi, hogy a titkosított állományok tartalmát visszanyerjük abban az esetben, ha elfelejti a jelszavát" -#: templates/settings-personal.php:60 +#: templates/settings-personal.php:59 msgid "File recovery settings updated" msgstr "A fájlhelyreállítási beállítások frissültek" -#: templates/settings-personal.php:61 +#: templates/settings-personal.php:60 msgid "Could not update file recovery" msgstr "A fájlhelyreállítás nem frissíthető" diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index 648f9d088b7..fc9d04fac63 100644 --- a/l10n/it/files_external.po +++ b/l10n/it/files_external.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Jessica Di Maria , 2014 # Paolo Velati , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-03 01:55-0400\n" +"PO-Revision-Date: 2014-04-02 17:41+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" @@ -84,7 +85,7 @@ msgstr "Opzioni" #: templates/settings.php:12 msgid "Available for" -msgstr "" +msgstr "Disponibile per" #: templates/settings.php:32 msgid "Add storage" @@ -92,7 +93,7 @@ msgstr "Aggiungi archiviazione" #: templates/settings.php:92 msgid "No user or group" -msgstr "" +msgstr "Nessun utente o gruppo" #: templates/settings.php:95 msgid "All Users" diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index 59d36a61787..af9d2bb2e2d 100644 --- a/l10n/nl/files_external.po +++ b/l10n/nl/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-03 01:55-0400\n" +"PO-Revision-Date: 2014-04-02 07:50+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -84,7 +84,7 @@ msgstr "Opties" #: templates/settings.php:12 msgid "Available for" -msgstr "" +msgstr "Beschikbaar voor" #: templates/settings.php:32 msgid "Add storage" @@ -92,7 +92,7 @@ msgstr "Toevoegen opslag" #: templates/settings.php:92 msgid "No user or group" -msgstr "" +msgstr "Geen gebruiker of groep" #: templates/settings.php:95 msgid "All Users" diff --git a/l10n/pl/files_external.po b/l10n/pl/files_external.po index dc44ab17024..73749054af3 100644 --- a/l10n/pl/files_external.po +++ b/l10n/pl/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-03 01:55-0400\n" +"PO-Revision-Date: 2014-04-02 11:10+0000\n" +"Last-Translator: bobie \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -85,7 +85,7 @@ msgstr "Opcje" #: templates/settings.php:12 msgid "Available for" -msgstr "" +msgstr "Dostępne przez" #: templates/settings.php:32 msgid "Add storage" @@ -93,7 +93,7 @@ msgstr "Dodaj zasoby dyskowe" #: templates/settings.php:92 msgid "No user or group" -msgstr "" +msgstr "Brak użytkownika lub grupy" #: templates/settings.php:95 msgid "All Users" diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index 75e0130978f..5e3198d3c4b 100644 --- a/l10n/pt_BR/files_external.po +++ b/l10n/pt_BR/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-03 01:55-0400\n" +"PO-Revision-Date: 2014-04-02 11: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" @@ -84,7 +84,7 @@ msgstr "Opções" #: templates/settings.php:12 msgid "Available for" -msgstr "" +msgstr "Disponível para" #: templates/settings.php:32 msgid "Add storage" @@ -92,7 +92,7 @@ msgstr "Adicionar Armazenamento" #: templates/settings.php:92 msgid "No user or group" -msgstr "" +msgstr "Nenhum usuário ou grupo" #: templates/settings.php:95 msgid "All Users" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index f1fb20c9ac2..e57534fed5b 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: 2014-04-02 01:55-0400\n" +"POT-Creation-Date: 2014-04-03 01:55-0400\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.pot b/l10n/templates/files.pot index 0a6ef078e49..32001038044 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: 2014-04-02 01:55-0400\n" +"POT-Creation-Date: 2014-04-03 01:55-0400\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 d82167f21fc..547d55849db 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: 2014-04-02 01:55-0400\n" +"POT-Creation-Date: 2014-04-03 01:55-0400\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 b28dbca00dd..f5f737dac80 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: 2014-04-02 01:55-0400\n" +"POT-Creation-Date: 2014-04-03 01:55-0400\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 2be87945adb..fe8bbde326b 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: 2014-04-02 01:55-0400\n" +"POT-Creation-Date: 2014-04-03 01:55-0400\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 9ffd8861019..cc837ef6d36 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: 2014-04-02 01:55-0400\n" +"POT-Creation-Date: 2014-04-03 01:55-0400\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 ed9c31f9419..10bf11cd4b9 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: 2014-04-02 01:55-0400\n" +"POT-Creation-Date: 2014-04-03 01:55-0400\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 283116e4366..8f7656f4f22 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: 2014-04-02 01:55-0400\n" +"POT-Creation-Date: 2014-04-03 01:55-0400\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 546a7940ee0..f50460d212d 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: 2014-04-02 01:55-0400\n" +"POT-Creation-Date: 2014-04-03 01:55-0400\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 8e54139951c..21bb0d4c5e2 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: 2014-04-02 01:55-0400\n" +"POT-Creation-Date: 2014-04-03 01:55-0400\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 aa690d0e138..cf61da7c93f 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: 2014-04-02 01:55-0400\n" +"POT-Creation-Date: 2014-04-03 01:55-0400\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 020d1a59e0e..669ce82b01d 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: 2014-04-02 01:55-0400\n" +"POT-Creation-Date: 2014-04-03 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 43d667e8d08..3257ce60c17 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-01 17:50+0000\n" +"POT-Creation-Date: 2014-04-03 01:55-0400\n" +"PO-Revision-Date: 2014-04-02 13:00+0000\n" "Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -297,7 +297,7 @@ msgstr "Hata" #: js/share.js:160 js/share.js:767 msgid "Error while sharing" -msgstr "Paylaşım sırasında hata " +msgstr "Paylaşım sırasında hata" #: js/share.js:171 msgid "Error while unsharing" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 3894fb0ad4d..cc0a8208714 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-03 01:55-0400\n" +"PO-Revision-Date: 2014-04-02 12:00+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" @@ -153,7 +153,7 @@ msgstr "Bir dizin veya 0 bayt olduğundan {filename} yüklenemedi" #: js/file-upload.js:258 msgid "Total file size {size1} exceeds upload limit {size2}" -msgstr "Toplam dosya boyutu {size1} gönderme sınırını {size2} aşıyor" +msgstr "Toplam dosya boyutu {size1}, {size2} gönderme sınırını aşıyor" #: js/file-upload.js:268 msgid "" @@ -197,15 +197,15 @@ msgstr "Klasör oluşturulamadı" msgid "Error fetching URL" msgstr "Adres getirilirken hata" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Paylaş" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "Kalıcı olarak sil" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "İsim değiştir." @@ -229,13 +229,13 @@ msgstr "geri al" msgid "Error deleting file." msgstr "Dosya silinirken hata." -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:694 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n dizin" msgstr[1] "%n dizin" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:700 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n dosya" @@ -282,29 +282,29 @@ msgid "" "your personal settings to decrypt your files." msgstr "Şifreleme işlemi durduruldu ancak dosyalarınız şifreli. Dosyalarınızın şifresini kaldırmak için lütfen kişisel ayarlar kısmına geçin." -#: js/files.js:379 +#: js/files.js:382 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "İndirmeniz hazırlanıyor. Dosya büyük ise biraz zaman alabilir." -#: js/files.js:610 js/files.js:654 +#: js/files.js:613 js/files.js:657 msgid "Error moving file" msgstr "Dosya taşıma hatası" -#: js/files.js:610 js/files.js:654 +#: js/files.js:613 js/files.js:657 msgid "Error" msgstr "Hata" -#: js/files.js:672 templates/index.php:68 +#: js/files.js:675 templates/index.php:68 msgid "Name" msgstr "İsim" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:676 templates/index.php:80 msgid "Size" msgstr "Boyut" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:677 templates/index.php:82 msgid "Modified" msgstr "Değiştirilme" @@ -321,35 +321,35 @@ msgstr "%s yeniden adlandırılamadı" msgid "Upload" msgstr "Yükle" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "Dosya işlemleri" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "Maksimum yükleme boyutu" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "mümkün olan en fazla: " -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "Çoklu dosya ve dizin indirmesi için gerekli." -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "ZIP indirmeyi etkinleştir" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 limitsiz demektir" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "ZIP dosyaları için en fazla girdi boyutu" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Kaydet" diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index 11137b1ac53..2076251ca04 100644 --- a/l10n/tr/files_external.po +++ b/l10n/tr/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-03 01:55-0400\n" +"PO-Revision-Date: 2014-04-02 11:07+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" @@ -84,7 +84,7 @@ msgstr "Seçenekler" #: templates/settings.php:12 msgid "Available for" -msgstr "" +msgstr "Kullanabilenler" #: templates/settings.php:32 msgid "Add storage" @@ -92,7 +92,7 @@ msgstr "Depo ekle" #: templates/settings.php:92 msgid "No user or group" -msgstr "" +msgstr "Kullanıcı veya grup yok" #: templates/settings.php:95 msgid "All Users" -- GitLab From c7324f7e44d1d1bd5c39a9b967dff76b274b9048 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Thu, 3 Apr 2014 12:00:53 +0200 Subject: [PATCH 193/296] fix float comparison for negative results --- lib/private/preview.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/private/preview.php b/lib/private/preview.php index 36cc5d9a2e0..71c16687fb9 100755 --- a/lib/private/preview.php +++ b/lib/private/preview.php @@ -109,7 +109,7 @@ class Preview { * @brief returns the path of the file you want a thumbnail from * @return string */ - public function getFile() { + public function getFile() { return $this->file; } @@ -384,7 +384,7 @@ class Preview { $name = rtrim($thumbnail['name'], '.png'); list($x, $y, $aspectRatio) = $this->getDimensionsFromFilename($name); - if (($aspectRatio - $wantedAspectRatio) >= 0.000001 + if (abs($aspectRatio - $wantedAspectRatio) >= 0.000001 || $this->unscalable($x, $y) ) { continue; -- GitLab From db95f49b7e454a5168d502977488bf7cd29f7e65 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 3 Apr 2014 13:01:20 +0200 Subject: [PATCH 194/296] Load all routes when matching an ocs route --- lib/private/route/router.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/route/router.php b/lib/private/route/router.php index 1f0a23ee124..6ad016b2a31 100644 --- a/lib/private/route/router.php +++ b/lib/private/route/router.php @@ -183,7 +183,7 @@ class Router implements IRouter { // empty string / 'apps' / $app / rest of the route list(, , $app,) = explode('/', $url, 4); $this->loadRoutes($app); - } else if (substr($url, 0, 6) === '/core/' or substr($url, 0, 5) === '/ocs/' or substr($url, 0, 10) === '/settings/') { + } else if (substr($url, 0, 6) === '/core/' or substr($url, 0, 10) === '/settings/') { $this->loadRoutes('core'); } else { $this->loadRoutes(); -- GitLab From 7dafdfbe88e713a3f3e03e142679fd840deed494 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 3 Apr 2014 13:14:34 +0200 Subject: [PATCH 195/296] add tests for sharing files the users doesn't have access to --- apps/files_sharing/tests/api.php | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/apps/files_sharing/tests/api.php b/apps/files_sharing/tests/api.php index e3c5b6e4315..c7a848315ac 100644 --- a/apps/files_sharing/tests/api.php +++ b/apps/files_sharing/tests/api.php @@ -878,6 +878,29 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { $this->assertSame($expectedResult, $shareApiDummy->correctPathTest($path, $folder)); } + /** + * @expectedException \Exception + */ + public function testShareNonExisting() { + \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1); + + $id = PHP_INT_MAX - 1; + \OCP\Share::shareItem('file', $id, \OCP\Share::SHARE_TYPE_LINK, \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31); + } + + /** + * @expectedException \Exception + */ + public function testShareNotOwner() { + \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2); + \OC\Files\Filesystem::file_put_contents('foo.txt', 'bar'); + $info = \OC\Files\Filesystem::getFileInfo('foo.txt'); + + \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1); + + \OCP\Share::shareItem('file', $info->getId(), \OCP\Share::SHARE_TYPE_LINK, \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31); + } + } /** -- GitLab From eaad6a4e27c291ce8f226bf77bc26b3001b4c380 Mon Sep 17 00:00:00 2001 From: Robin McCorkell Date: Mon, 31 Mar 2014 15:16:33 +0100 Subject: [PATCH 196/296] Fix error log spam Regression from e002b7242cb19a0e028d325cd64b57e67dc48108 --- apps/files_external/templates/settings.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/files_external/templates/settings.php b/apps/files_external/templates/settings.php index e8815acaf16..0d04e35e7fe 100644 --- a/apps/files_external/templates/settings.php +++ b/apps/files_external/templates/settings.php @@ -16,16 +16,16 @@ array())); ?> - > + > - + - - - + + + array())); ?> + $mount): ?> + > + + + + - - - - - - $value): ?> - - - - class="optional" - data-parameter="" - value="" - placeholder="" /> - - - - - - class="optional" - data-parameter="" - value="" - placeholder="" /> + + + + + + + + + + + $value): ?> + + + + + + + + + + + + + + + + - - - - - - - ' - data-applicable-users=''> - - - class="remove" - style="visibility:hidden;" - ><?php p($l->t('Delete')); ?> - - - - -
      - - + + ' + data-applicable-users=''> + + + + class="remove" + style="visibility:hidden;" + ><?php p($l->t('Delete')); ?> + + + + + '')) print_unescaped(''.$_['dependencies'].''); ?>
      - /> - -

      class="hidden"> - t('Allow users to mount the following external storage')); ?>
      - $backend): ?> - /> -
      - - -

      - + +
      + /> +
      + t('Allow users to mount their own external storage')); ?> + +
      -
      -

      t('SSL root certificates'));?>

      - '> - - - - - - - - -
      class="remove" - style="visibility:hidden;" - ><?php p($l->t('Delete')); ?>
      - - - -
      +
      +
      + t('SSL root certificates'));?> + '> + + + + + + + + +
      class="remove" + style="visibility:hidden;" + ><?php p($l->t('Delete')); ?>
      + + + +
      +
      -- GitLab From b00592ade50f48b73002682494341c429a6a12eb Mon Sep 17 00:00:00 2001 From: tomneedham Date: Thu, 3 Apr 2014 14:47:55 +0000 Subject: [PATCH 202/296] Fix test case for api response code --- tests/lib/api.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/lib/api.php b/tests/lib/api.php index 233beebd68a..0f7d08543ea 100644 --- a/tests/lib/api.php +++ b/tests/lib/api.php @@ -37,7 +37,7 @@ class Test_API extends PHPUnit_Framework_TestCase { function dataProviderTestOneResult() { return array( array(100, true), - array(101, true), + array(101, false), array(997, false), ); } -- GitLab From 31016631298294ff8b11d66c9c71647c64abad50 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Thu, 3 Apr 2014 16:50:21 +0200 Subject: [PATCH 203/296] Removed redundant free space and upload limit in public page --- apps/files_sharing/public.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php index ba2494a7b1a..ce51eca6ddb 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -128,10 +128,6 @@ if (isset($path)) { $tmpl->assign('mimetype', \OC\Files\Filesystem::getMimeType($path)); $tmpl->assign('dirToken', $linkItem['token']); $tmpl->assign('sharingToken', $token); - $tmpl->assign('uploadMaxFilesize', $maxUploadFilesize); - $tmpl->assign('uploadMaxHumanFilesize', OCP\Util::humanFileSize($maxUploadFilesize)); - $tmpl->assign('freeSpace', $freeSpace); - $tmpl->assign('uploadLimit', $uploadLimit); // PHP upload limit $urlLinkIdentifiers= (isset($token)?'&t='.$token:'') .(isset($_GET['dir'])?'&dir='.$_GET['dir']:'') -- GitLab From 2b8bb0121133d460755202bfbb0e62433c12938c Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Thu, 3 Apr 2014 16:55:01 +0200 Subject: [PATCH 204/296] Fixed mime type attribute access in file overwrite dialog --- core/js/oc-dialogs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/js/oc-dialogs.js b/core/js/oc-dialogs.js index 73ed20b7553..6fc8d4d3523 100644 --- a/core/js/oc-dialogs.js +++ b/core/js/oc-dialogs.js @@ -294,7 +294,7 @@ var OCdialogs = { conflict.find('.replacement .mtime').text(formatDate(replacement.lastModifiedDate)); } var path = original.directory + '/' +original.name; - Files.lazyLoadPreview(path, original.mime, function(previewpath){ + Files.lazyLoadPreview(path, original.mimetype, function(previewpath){ conflict.find('.original .icon').css('background-image','url('+previewpath+')'); }, 96, 96, original.etag); getCroppedPreview(replacement).then( -- GitLab From c0ebc1dfb1108b7cbe0fa134def00aa6ce0066b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Thu, 3 Apr 2014 16:57:26 +0200 Subject: [PATCH 205/296] Update backends and their configurations --- apps/files_external/appinfo/app.php | 91 +++++++++++++++++++++++------ 1 file changed, 72 insertions(+), 19 deletions(-) diff --git a/apps/files_external/appinfo/app.php b/apps/files_external/appinfo/app.php index f49d2973234..0017b22caad 100644 --- a/apps/files_external/appinfo/app.php +++ b/apps/files_external/appinfo/app.php @@ -44,12 +44,25 @@ OC_Mount_Config::registerBackend('\OC\Files\Storage\AmazonS3', array( 'bucket' => 'Bucket'), 'has_dependencies' => true)); +OC_Mount_Config::registerBackend('\OC\Files\Storage\AmazonS3', array( + 'backend' => 'Amazon S3 and compliant', + 'configuration' => array( + 'key' => 'Access Key', + 'secret' => '*Secret Key', + 'bucket' => 'Bucket', + 'hostname' => '&Hostname (optional)', + 'port' => '&Port (optional)', + 'region' => '&Region (optional)', + 'use_ssl' => '!Enable SSL', + 'use_path_style' => '!Enable Path Style'), + 'has_dependencies' => true)); + OC_Mount_Config::registerBackend('\OC\Files\Storage\Dropbox', array( 'backend' => 'Dropbox', 'configuration' => array( 'configured' => '#configured', 'app_key' => 'App key', - 'app_secret' => 'App secret', + 'app_secret' => '*App secret', 'token' => '#token', 'token_secret' => '#token_secret'), 'custom' => 'dropbox', @@ -69,40 +82,69 @@ OC_Mount_Config::registerBackend('\OC\Files\Storage\Google', array( 'backend' => 'Google Drive', 'configuration' => array( 'configured' => '#configured', - 'token' => '#token', - 'token_secret' => '#token secret'), + 'client_id' => 'Client ID', + 'client_secret' => '*Client secret', + 'token' => '#token'), 'custom' => 'google', 'has_dependencies' => true)); -OC_Mount_Config::registerBackend('\OC\Files\Storage\SWIFT', array( - 'backend' => 'OpenStack Swift', + +OC_Mount_Config::registerBackend('\OC\Files\Storage\Swift', array( + 'backend' => 'OpenStack Object Storage', 'configuration' => array( - 'host' => 'URL', - 'user' => 'Username', - 'token' => '*Token', - 'root' => '&Root', - 'secure' => '!Secure ftps://'), + 'user' => 'Username (required)', + 'bucket' => 'Bucket (required)', + 'region' => '&Region (optional for OpenStack Object Storage)', + 'key' => '*API Key (required for Rackspace Cloud Files)', + 'tenant' => '&Tenantname (required for OpenStack Object Storage)', + 'password' => '*Password (required for OpenStack Object Storage)', + 'service_name' => '&Service Name (required for OpenStack Object Storage)', + 'url' => '&URL of identity endpoint (required for OpenStack Object Storage)', + 'timeout' => '&Timeout of HTTP requests in seconds (optional)', + ), 'has_dependencies' => true)); -OC_Mount_Config::registerBackend('\OC\Files\Storage\SMB', array( - 'backend' => 'SMB / CIFS', + +if (!OC_Util::runningOnWindows()) { + OC_Mount_Config::registerBackend('\OC\Files\Storage\SMB', array( + 'backend' => 'SMB / CIFS', + 'configuration' => array( + 'host' => 'URL', + 'user' => 'Username', + 'password' => '*Password', + 'share' => 'Share', + 'root' => '&Root'), + 'has_dependencies' => true)); + + OC_Mount_Config::registerBackend('\OC\Files\Storage\SMB_OC', array( + 'backend' => 'SMB / CIFS using OC login', + 'configuration' => array( + 'host' => 'URL', + 'username_as_share' => '!Username as share', + 'share' => '&Share', + 'root' => '&Root'), + 'has_dependencies' => true)); +} + +OC_Mount_Config::registerBackend('\OC\Files\Storage\DAV', array( + 'backend' => 'WebDAV', 'configuration' => array( 'host' => 'URL', 'user' => 'Username', 'password' => '*Password', - 'share' => 'Share', - 'root' => '&Root'), + 'root' => '&Root', + 'secure' => '!Secure https://'), 'has_dependencies' => true)); -OC_Mount_Config::registerBackend('\OC\Files\Storage\DAV', array( - 'backend' => 'ownCloud / WebDAV', +OC_Mount_Config::registerBackend('\OC\Files\Storage\OwnCloud', array( + 'backend' => 'ownCloud', 'configuration' => array( 'host' => 'URL', 'user' => 'Username', 'password' => '*Password', - 'root' => '&Root', - 'secure' => '!Secure https://'), - 'has_dependencies' => true)); + 'root' => '&Remote subfolder', + 'secure' => '!Secure https://'))); + OC_Mount_Config::registerBackend('\OC\Files\Storage\SFTP', array( 'backend' => 'SFTP', @@ -111,3 +153,14 @@ OC_Mount_Config::registerBackend('\OC\Files\Storage\SFTP', array( 'user' => 'Username', 'password' => '*Password', 'root' => '&Root'))); + +OC_Mount_Config::registerBackend('\OC\Files\Storage\iRODS', array( + 'backend' => 'iRODS', + 'configuration' => array( + 'host' => 'Host', + 'port' => 'Port', + 'use_logon_credentials' => '!Use ownCloud login', + 'user' => 'Username', + 'password' => '*Password', + 'auth_mode' => 'Authentication Mode', + 'zone' => 'Zone'))); -- GitLab From 7c9537f33aa590c59553cc717738a98ca54bbcb8 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Thu, 3 Apr 2014 17:04:13 +0200 Subject: [PATCH 206/296] Fixed dirInfo check for non existing dir in files ajax call --- apps/files/ajax/list.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/ajax/list.php b/apps/files/ajax/list.php index 0ffae22ec31..2d76b685018 100644 --- a/apps/files/ajax/list.php +++ b/apps/files/ajax/list.php @@ -7,7 +7,7 @@ OCP\JSON::checkLoggedIn(); $dir = isset( $_GET['dir'] ) ? $_GET['dir'] : ''; $dir = \OC\Files\Filesystem::normalizePath($dir); $dirInfo = \OC\Files\Filesystem::getFileInfo($dir); -if (!$dirInfo->getType() === 'dir') { +if (!$dirInfo || !$dirInfo->getType() === 'dir') { header("HTTP/1.0 404 Not Found"); exit(); } -- GitLab From d1e78d7a6b7ff074bb972e0840ca8cdfe2403000 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Thu, 3 Apr 2014 17:08:06 +0200 Subject: [PATCH 207/296] Correctly set svg for crumb divider --- apps/files/js/breadcrumb.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/js/breadcrumb.js b/apps/files/js/breadcrumb.js index 21010c7dc11..ff017a22bb5 100644 --- a/apps/files/js/breadcrumb.js +++ b/apps/files/js/breadcrumb.js @@ -86,7 +86,7 @@ var $image; var $link = $('').attr('href', this.getCrumbUrl(part, i)); $link.text(part.name); - $crumb = $('
      '); + $crumb = $('
      '); $crumb.append($link); $crumb.attr('data-dir', part.dir); -- GitLab From c6976d89a6fbfd59f966d676e23b39de62711b06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Thu, 3 Apr 2014 17:09:40 +0200 Subject: [PATCH 208/296] use command -v to detect if smbclient exists --- apps/files_external/lib/smb.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_external/lib/smb.php b/apps/files_external/lib/smb.php index 3ef13b633a9..b1d355323d9 100644 --- a/apps/files_external/lib/smb.php +++ b/apps/files_external/lib/smb.php @@ -140,7 +140,7 @@ class SMB extends \OC\Files\Storage\StreamWrapper{ */ public static function checkDependencies() { if (function_exists('shell_exec')) { - $output = shell_exec('which smbclient'); + $output=shell_exec('command -v smbclient 2> /dev/null'); if (!empty($output)) { return true; } -- GitLab From e3b9a861841f53dea810c1246ffa3cf809d0bfab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Thu, 3 Apr 2014 17:17:44 +0200 Subject: [PATCH 209/296] remove duplicate method checkDependencies() --- apps/files_external/lib/amazons3.php | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/apps/files_external/lib/amazons3.php b/apps/files_external/lib/amazons3.php index 352885121f9..2093fb7e58c 100644 --- a/apps/files_external/lib/amazons3.php +++ b/apps/files_external/lib/amazons3.php @@ -73,18 +73,6 @@ class AmazonS3 extends \OC\Files\Storage\Common { } } - /** - * check if curl is installed - */ - public static function checkDependencies() { - if (function_exists('curl_init')) { - return true; - } else { - $l = new \OC_L10N('files_external'); - return $l->t('Note: The cURL support in PHP is not enabled or installed. Mounting of Amazon S3 is not possible. Please ask your system administrator to install it.'); - } - } - public function __construct($params) { if (!isset($params['key']) || !isset($params['secret']) || !isset($params['bucket'])) { throw new \Exception("Access Key, Secret and Bucket have to be configured."); -- GitLab From 388142ecc6a3b1382858619e0fea6145c506ab5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Thu, 3 Apr 2014 20:05:40 +0200 Subject: [PATCH 210/296] Exclude javascript specs from code analysis --- .scrutinizer.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.scrutinizer.yml b/.scrutinizer.yml index 4473cf9056d..0f529be3989 100644 --- a/.scrutinizer.yml +++ b/.scrutinizer.yml @@ -7,6 +7,7 @@ filter: - 'apps/*/l10n/*' - 'lib/l10n/*' - 'core/js/tests/lib/*.js' + - 'core/js/tests/specs/*.js' - 'core/js/jquery-1.10.0.min.js' - 'core/js/jquery-migrate-1.2.1.min.js' - 'core/js/jquery-showpassword.js' -- GitLab From ab56f694160f58f075069560953cba86cdfe5aec Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Thu, 3 Apr 2014 21:12:35 +0200 Subject: [PATCH 211/296] Do not expire chunks while checking for their existence The expiration should be done by the gc() function on login, not while isComplete() is calling hasKey() for every chunk. --- lib/private/cache/file.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lib/private/cache/file.php b/lib/private/cache/file.php index be6805a9a57..2fd77c437fe 100644 --- a/lib/private/cache/file.php +++ b/lib/private/cache/file.php @@ -84,11 +84,6 @@ class File { public function hasKey($key) { $storage = $this->getStorage(); if ($storage && $storage->is_file($key)) { - $mtime = $storage->filemtime($key); - if ($mtime < time()) { - $storage->unlink($key); - return false; - } return true; } return false; -- GitLab From 0805f678ccfc808d788611aabc486f8dcef054e5 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Fri, 4 Apr 2014 01:57:01 -0400 Subject: [PATCH 212/296] [tx-robot] updated from transifex --- apps/files/l10n/ar.php | 6 +- apps/files/l10n/be.php | 4 +- apps/files/l10n/bg_BG.php | 3 +- apps/files/l10n/bn_BD.php | 4 +- apps/files/l10n/ca.php | 6 +- apps/files/l10n/cs_CZ.php | 6 +- apps/files/l10n/cy_GB.php | 4 +- apps/files/l10n/da.php | 6 +- apps/files/l10n/de.php | 6 +- apps/files/l10n/de_CH.php | 4 +- apps/files/l10n/de_DE.php | 6 +- apps/files/l10n/el.php | 6 +- apps/files/l10n/en_GB.php | 6 +- apps/files/l10n/eo.php | 6 +- apps/files/l10n/es.php | 6 +- apps/files/l10n/es_AR.php | 6 +- apps/files/l10n/es_CL.php | 2 +- apps/files/l10n/es_MX.php | 6 +- apps/files/l10n/et_EE.php | 6 +- apps/files/l10n/eu.php | 6 +- apps/files/l10n/fa.php | 4 +- apps/files/l10n/fi_FI.php | 5 +- apps/files/l10n/fr.php | 6 +- apps/files/l10n/gl.php | 6 +- apps/files/l10n/he.php | 4 +- apps/files/l10n/hi.php | 2 +- apps/files/l10n/hr.php | 3 +- apps/files/l10n/hu_HU.php | 6 +- apps/files/l10n/ia.php | 2 +- apps/files/l10n/id.php | 6 +- apps/files/l10n/is.php | 4 +- apps/files/l10n/it.php | 6 +- apps/files/l10n/ja.php | 6 +- apps/files/l10n/ka_GE.php | 4 +- apps/files/l10n/km.php | 3 +- apps/files/l10n/ko.php | 6 +- apps/files/l10n/ku_IQ.php | 2 +- apps/files/l10n/lb.php | 3 +- apps/files/l10n/lt_LT.php | 6 +- apps/files/l10n/lv.php | 4 +- apps/files/l10n/mk.php | 6 +- apps/files/l10n/ms_MY.php | 2 +- apps/files/l10n/nb_NO.php | 6 +- apps/files/l10n/nl.php | 6 +- apps/files/l10n/nn_NO.php | 6 +- apps/files/l10n/oc.php | 3 +- apps/files/l10n/pa.php | 3 +- apps/files/l10n/pl.php | 6 +- apps/files/l10n/pt_BR.php | 6 +- apps/files/l10n/pt_PT.php | 6 +- apps/files/l10n/ro.php | 6 +- apps/files/l10n/ru.php | 6 +- apps/files/l10n/si_LK.php | 3 +- apps/files/l10n/sk_SK.php | 6 +- apps/files/l10n/sl.php | 6 +- apps/files/l10n/sq.php | 6 +- apps/files/l10n/sr.php | 4 +- apps/files/l10n/sr@latin.php | 2 +- apps/files/l10n/sv.php | 6 +- apps/files/l10n/ta_LK.php | 4 +- apps/files/l10n/te.php | 2 +- apps/files/l10n/th_TH.php | 4 +- apps/files/l10n/tr.php | 6 +- apps/files/l10n/ug.php | 3 +- apps/files/l10n/uk.php | 6 +- apps/files/l10n/ur_PK.php | 4 +- apps/files/l10n/vi.php | 6 +- apps/files/l10n/zh_CN.php | 6 +- apps/files/l10n/zh_HK.php | 2 +- apps/files/l10n/zh_TW.php | 6 +- apps/files_external/l10n/sl.php | 2 + l10n/ach/files.po | 174 +++++++++++++-------------- l10n/ady/files.po | 174 +++++++++++++-------------- l10n/af/files.po | 174 +++++++++++++-------------- l10n/af_ZA/files.po | 174 +++++++++++++-------------- l10n/ak/files.po | 174 +++++++++++++-------------- l10n/am_ET/files.po | 150 +++++++++++------------ l10n/ar/files.po | 154 ++++++++++++------------ l10n/ar/files_external.po | 4 +- l10n/az/files.po | 174 +++++++++++++-------------- l10n/be/files.po | 176 +++++++++++++-------------- l10n/bg_BG/files.po | 154 ++++++++++++------------ l10n/bg_BG/files_external.po | 4 +- l10n/bn_BD/files.po | 154 ++++++++++++------------ l10n/bs/files.po | 150 +++++++++++------------ l10n/ca/files.po | 154 ++++++++++++------------ l10n/ca/files_external.po | 4 +- l10n/cs_CZ/files.po | 156 ++++++++++++------------ l10n/cs_CZ/files_external.po | 4 +- l10n/cy_GB/files.po | 154 ++++++++++++------------ l10n/da/files.po | 154 ++++++++++++------------ l10n/da/files_external.po | 4 +- l10n/de/files.po | 154 ++++++++++++------------ l10n/de/files_external.po | 4 +- l10n/de/settings.po | 94 +++++++-------- l10n/de_AT/files.po | 150 +++++++++++------------ l10n/de_CH/files.po | 154 ++++++++++++------------ l10n/de_CH/files_external.po | 4 +- l10n/de_DE/files.po | 154 ++++++++++++------------ l10n/de_DE/files_external.po | 4 +- l10n/de_DE/settings.po | 94 +++++++-------- l10n/el/files.po | 150 +++++++++++------------ l10n/el/files_external.po | 4 +- l10n/en@pirate/files.po | 174 +++++++++++++-------------- l10n/en_GB/files.po | 154 ++++++++++++------------ l10n/en_GB/files_external.po | 4 +- l10n/eo/files.po | 154 ++++++++++++------------ l10n/eo/files_external.po | 4 +- l10n/es/files.po | 154 ++++++++++++------------ l10n/es/files_external.po | 4 +- l10n/es/settings.po | 94 +++++++-------- l10n/es_AR/files.po | 154 ++++++++++++------------ l10n/es_AR/files_external.po | 4 +- l10n/es_CL/files.po | 176 +++++++++++++-------------- l10n/es_MX/files.po | 154 ++++++++++++------------ l10n/es_MX/files_external.po | 4 +- l10n/et_EE/files.po | 134 ++++++++++----------- l10n/et_EE/files_external.po | 4 +- l10n/eu/files.po | 154 ++++++++++++------------ l10n/eu/files_external.po | 4 +- l10n/eu_ES/files.po | 150 +++++++++++------------ l10n/fa/files.po | 154 ++++++++++++------------ l10n/fa/files_external.po | 4 +- l10n/fi_FI/files.po | 154 ++++++++++++------------ l10n/fi_FI/files_external.po | 4 +- l10n/fr/files.po | 154 ++++++++++++------------ l10n/fr/files_external.po | 4 +- l10n/fr_CA/files.po | 174 +++++++++++++-------------- l10n/gl/files.po | 154 ++++++++++++------------ l10n/gl/files_external.po | 4 +- l10n/he/files.po | 154 ++++++++++++------------ l10n/he/files_external.po | 4 +- l10n/hi/files.po | 152 +++++++++++------------- l10n/hr/files.po | 154 ++++++++++++------------ l10n/hu_HU/files.po | 154 ++++++++++++------------ l10n/hu_HU/files_external.po | 4 +- l10n/hy/files.po | 150 +++++++++++------------ l10n/ia/files.po | 152 +++++++++++------------- l10n/id/files.po | 154 ++++++++++++------------ l10n/id/files_external.po | 4 +- l10n/is/files.po | 154 ++++++++++++------------ l10n/is/files_external.po | 4 +- l10n/it/files.po | 154 ++++++++++++------------ l10n/it/files_external.po | 4 +- l10n/it/settings.po | 94 +++++++-------- l10n/ja/files.po | 154 ++++++++++++------------ l10n/ja/files_external.po | 4 +- l10n/ka_GE/files.po | 154 ++++++++++++------------ l10n/ka_GE/files_external.po | 4 +- l10n/km/files.po | 154 ++++++++++++------------ l10n/km/files_external.po | 4 +- l10n/kn/files.po | 174 +++++++++++++-------------- l10n/ko/files.po | 154 ++++++++++++------------ l10n/ko/files_external.po | 4 +- l10n/ku_IQ/files.po | 152 +++++++++++------------- l10n/ku_IQ/files_external.po | 4 +- l10n/lb/files.po | 154 ++++++++++++------------ l10n/lb/files_external.po | 4 +- l10n/lt_LT/files.po | 154 ++++++++++++------------ l10n/lt_LT/files_external.po | 4 +- l10n/lv/files.po | 154 ++++++++++++------------ l10n/lv/files_external.po | 4 +- l10n/mk/files.po | 154 ++++++++++++------------ l10n/mk/files_external.po | 4 +- l10n/ml/files.po | 174 +++++++++++++-------------- l10n/ml_IN/files.po | 174 +++++++++++++-------------- l10n/mn/files.po | 174 +++++++++++++-------------- l10n/ms_MY/files.po | 154 ++++++++++++------------ l10n/my_MM/files.po | 174 +++++++++++++-------------- l10n/nb_NO/files.po | 154 ++++++++++++------------ l10n/nb_NO/files_external.po | 4 +- l10n/nds/files.po | 174 +++++++++++++-------------- l10n/ne/files.po | 174 +++++++++++++-------------- l10n/nl/files.po | 154 ++++++++++++------------ l10n/nl/files_external.po | 4 +- l10n/nn_NO/files.po | 154 ++++++++++++------------ l10n/nqo/files.po | 174 +++++++++++++-------------- l10n/oc/files.po | 154 ++++++++++++------------ l10n/pa/files.po | 178 +++++++++++++--------------- l10n/pl/files.po | 154 ++++++++++++------------ l10n/pl/files_external.po | 4 +- l10n/pt_BR/files.po | 154 ++++++++++++------------ l10n/pt_BR/files_external.po | 4 +- l10n/pt_BR/settings.po | 88 +++++++------- l10n/pt_PT/files.po | 154 ++++++++++++------------ l10n/pt_PT/files_external.po | 4 +- l10n/ro/files.po | 134 ++++++++++----------- l10n/ro/files_external.po | 4 +- l10n/ru/files.po | 156 ++++++++++++------------ l10n/ru/files_external.po | 4 +- l10n/si_LK/files.po | 154 ++++++++++++------------ l10n/si_LK/files_external.po | 4 +- l10n/sk/files.po | 150 +++++++++++------------ l10n/sk_SK/files.po | 154 ++++++++++++------------ l10n/sk_SK/files_external.po | 4 +- l10n/sl/files.po | 154 ++++++++++++------------ l10n/sl/files_external.po | 10 +- l10n/sl/settings.po | 74 ++++++------ l10n/sq/files.po | 154 ++++++++++++------------ l10n/sr/files.po | 154 ++++++++++++------------ l10n/sr@latin/files.po | 152 +++++++++++------------- l10n/su/files.po | 174 +++++++++++++-------------- l10n/sv/files.po | 154 ++++++++++++------------ l10n/sv/files_external.po | 4 +- l10n/sw_KE/files.po | 174 +++++++++++++-------------- l10n/ta_LK/files.po | 154 ++++++++++++------------ l10n/ta_LK/files_external.po | 4 +- l10n/te/files.po | 152 +++++++++++------------- l10n/te/files_external.po | 4 +- l10n/templates/core.pot | 28 ++--- l10n/templates/files.pot | 126 +++++++++----------- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 4 +- l10n/templates/files_trashbin.pot | 24 ++-- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 6 +- l10n/templates/private.pot | 4 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/files.po | 154 ++++++++++++------------ l10n/th_TH/files_external.po | 4 +- l10n/tr/files.po | 134 ++++++++++----------- l10n/tr/files_external.po | 4 +- l10n/tzm/files.po | 174 +++++++++++++-------------- l10n/ug/files.po | 154 ++++++++++++------------ l10n/ug/files_external.po | 4 +- l10n/uk/files.po | 154 ++++++++++++------------ l10n/uk/files_external.po | 4 +- l10n/ur/files.po | 174 +++++++++++++-------------- l10n/ur_PK/files.po | 176 +++++++++++++-------------- l10n/uz/files.po | 174 +++++++++++++-------------- l10n/vi/files.po | 154 ++++++++++++------------ l10n/vi/files_external.po | 4 +- l10n/zh_CN/files.po | 154 ++++++++++++------------ l10n/zh_CN/files_external.po | 4 +- l10n/zh_HK/files.po | 152 +++++++++++------------- l10n/zh_TW/files.po | 154 ++++++++++++------------ l10n/zh_TW/files_external.po | 4 +- settings/l10n/de.php | 2 +- settings/l10n/de_DE.php | 2 +- settings/l10n/es.php | 2 +- settings/l10n/it.php | 4 +- settings/l10n/sl.php | 1 + 245 files changed, 7887 insertions(+), 8779 deletions(-) diff --git a/apps/files/l10n/ar.php b/apps/files/l10n/ar.php index 147d77d4cb0..e7c081b1c47 100644 --- a/apps/files/l10n/ar.php +++ b/apps/files/l10n/ar.php @@ -27,9 +27,9 @@ $TRANSLATIONS = array( "Share" => "شارك", "Delete permanently" => "حذف بشكل دائم", "Rename" => "إعادة تسميه", +"Error moving file" => "حدث خطأ أثناء نقل الملف", +"Error" => "خطأ", "Pending" => "قيد الانتظار", -"replaced {new_name} with {old_name}" => "استبدل {new_name} بـ {old_name}", -"undo" => "تراجع", "_%n folder_::_%n folders_" => array("لا يوجد مجلدات %n","1 مجلد %n","2 مجلد %n","عدد قليل من مجلدات %n","عدد كبير من مجلدات %n","مجلدات %n"), "_%n file_::_%n files_" => array("لا يوجد ملفات %n","ملف %n","2 ملف %n","قليل من ملفات %n","الكثير من ملفات %n"," ملفات %n"), "{dirs} and {files}" => "{dirs} و {files}", @@ -40,8 +40,6 @@ $TRANSLATIONS = array( "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "المفتاح الخاص بتشفير التطبيقات غير صالح. يرجى تحديث كلمة السر الخاصة بالمفتاح الخاص من الإعدادت الشخصية حتى تتمكن من الوصول للملفات المشفرة.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "تم تعطيل التشفير لكن ملفاتك لا تزال مشفرة. فضلا اذهب إلى الإعدادات الشخصية لإزالة التشفير عن ملفاتك.", "Your download is being prepared. This might take some time if the files are big." => "جاري تجهيز عملية التحميل. قد تستغرق بعض الوقت اذا كان حجم الملفات كبير.", -"Error moving file" => "حدث خطأ أثناء نقل الملف", -"Error" => "خطأ", "Name" => "اسم", "Size" => "حجم", "Modified" => "معدل", diff --git a/apps/files/l10n/be.php b/apps/files/l10n/be.php index 830400b93fb..f97fc27e2d1 100644 --- a/apps/files/l10n/be.php +++ b/apps/files/l10n/be.php @@ -1,8 +1,8 @@ "Памылка", "_%n folder_::_%n folders_" => array("","","",""), "_%n file_::_%n files_" => array("","","",""), -"_Uploading %n file_::_Uploading %n files_" => array("","","",""), -"Error" => "Памылка" +"_Uploading %n file_::_Uploading %n files_" => array("","","","") ); $PLURAL_FORMS = "nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files/l10n/bg_BG.php b/apps/files/l10n/bg_BG.php index 12e699064be..2418010cdd9 100644 --- a/apps/files/l10n/bg_BG.php +++ b/apps/files/l10n/bg_BG.php @@ -12,12 +12,11 @@ $TRANSLATIONS = array( "Share" => "Споделяне", "Delete permanently" => "Изтриване завинаги", "Rename" => "Преименуване", +"Error" => "Грешка", "Pending" => "Чакащо", -"undo" => "възтановяване", "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), -"Error" => "Грешка", "Name" => "Име", "Size" => "Размер", "Modified" => "Променено", diff --git a/apps/files/l10n/bn_BD.php b/apps/files/l10n/bn_BD.php index 11f3525690b..667a68bb627 100644 --- a/apps/files/l10n/bn_BD.php +++ b/apps/files/l10n/bn_BD.php @@ -19,13 +19,11 @@ $TRANSLATIONS = array( "{new_name} already exists" => "{new_name} টি বিদ্যমান", "Share" => "ভাগাভাগি কর", "Rename" => "পূনঃনামকরণ", +"Error" => "সমস্যা", "Pending" => "মুলতুবি", -"replaced {new_name} with {old_name}" => "{new_name} কে {old_name} নামে প্রতিস্থাপন করা হয়েছে", -"undo" => "ক্রিয়া প্রত্যাহার", "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), -"Error" => "সমস্যা", "Name" => "রাম", "Size" => "আকার", "Modified" => "পরিবর্তিত", diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index a4418b1be50..8ef9b764484 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -43,10 +43,10 @@ $TRANSLATIONS = array( "Share" => "Comparteix", "Delete permanently" => "Esborra permanentment", "Rename" => "Reanomena", +"Error moving file" => "Error en moure el fitxer", +"Error" => "Error", "Pending" => "Pendent", "Could not rename file" => "No es pot canviar el nom de fitxer", -"replaced {new_name} with {old_name}" => "s'ha substituït {old_name} per {new_name}", -"undo" => "desfés", "Error deleting file." => "Error en esborrar el fitxer.", "_%n folder_::_%n folders_" => array("%n carpeta","%n carpetes"), "_%n file_::_%n files_" => array("%n fitxer","%n fitxers"), @@ -59,8 +59,6 @@ $TRANSLATIONS = array( "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "La clau privada de l'aplicació d'encriptació no és vàlida! Actualitzeu la contrasenya de la clau privada a l'arranjament personal per recuperar els fitxers encriptats.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "L'encriptació s'ha desactivat però els vostres fitxers segueixen encriptats. Aneu a la vostra configuració personal per desencriptar els vostres fitxers.", "Your download is being prepared. This might take some time if the files are big." => "S'està preparant la baixada. Pot trigar una estona si els fitxers són grans.", -"Error moving file" => "Error en moure el fitxer", -"Error" => "Error", "Name" => "Nom", "Size" => "Mida", "Modified" => "Modificat", diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index 5bcf1087b9c..8aea17a7051 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -43,10 +43,10 @@ $TRANSLATIONS = array( "Share" => "Sdílet", "Delete permanently" => "Trvale odstranit", "Rename" => "Přejmenovat", +"Error moving file" => "Chyba při přesunu souboru", +"Error" => "Chyba", "Pending" => "Nevyřízené", "Could not rename file" => "Nepodařilo se přejmenovat soubor", -"replaced {new_name} with {old_name}" => "nahrazeno {new_name} s {old_name}", -"undo" => "vrátit zpět", "Error deleting file." => "Chyba při mazání souboru.", "_%n folder_::_%n folders_" => array("%n složka","%n složky","%n složek"), "_%n file_::_%n files_" => array("%n soubor","%n soubory","%n souborů"), @@ -59,8 +59,6 @@ $TRANSLATIONS = array( "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Chybný soukromý klíč pro šifrovací aplikaci. Aktualizujte prosím heslo svého soukromého klíče ve vašem osobním nastavení, abyste znovu získali přístup k vašim zašifrovaným souborům.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Šifrování bylo vypnuto, vaše soubory jsou však stále zašifrované. Běžte prosím do osobního nastavení, kde soubory odšifrujete.", "Your download is being prepared. This might take some time if the files are big." => "Vaše soubory ke stažení se připravují. Pokud jsou velké, může to chvíli trvat.", -"Error moving file" => "Chyba při přesunu souboru", -"Error" => "Chyba", "Name" => "Název", "Size" => "Velikost", "Modified" => "Upraveno", diff --git a/apps/files/l10n/cy_GB.php b/apps/files/l10n/cy_GB.php index df93ca507b1..b27e4c3bfc2 100644 --- a/apps/files/l10n/cy_GB.php +++ b/apps/files/l10n/cy_GB.php @@ -21,16 +21,14 @@ $TRANSLATIONS = array( "Share" => "Rhannu", "Delete permanently" => "Dileu'n barhaol", "Rename" => "Ailenwi", +"Error" => "Gwall", "Pending" => "I ddod", -"replaced {new_name} with {old_name}" => "newidiwyd {new_name} yn lle {old_name}", -"undo" => "dadwneud", "_%n folder_::_%n folders_" => array("","","",""), "_%n file_::_%n files_" => array("","","",""), "_Uploading %n file_::_Uploading %n files_" => array("","","",""), "Your storage is full, files can not be updated or synced anymore!" => "Mae eich storfa'n llawn, ni ellir diweddaru a chydweddu ffeiliau mwyach!", "Your storage is almost full ({usedSpacePercent}%)" => "Mae eich storfa bron a bod yn llawn ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Wrthi'n paratoi i lwytho i lawr. Gall gymryd peth amser os yw'r ffeiliau'n fawr.", -"Error" => "Gwall", "Name" => "Enw", "Size" => "Maint", "Modified" => "Addaswyd", diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php index 7069849b430..6a7ea4745cc 100644 --- a/apps/files/l10n/da.php +++ b/apps/files/l10n/da.php @@ -43,10 +43,10 @@ $TRANSLATIONS = array( "Share" => "Del", "Delete permanently" => "Slet permanent", "Rename" => "Omdøb", +"Error moving file" => "Fejl ved flytning af fil", +"Error" => "Fejl", "Pending" => "Afventer", "Could not rename file" => "Kunne ikke omdøbe filen", -"replaced {new_name} with {old_name}" => "erstattede {new_name} med {old_name}", -"undo" => "fortryd", "Error deleting file." => "Fejl ved sletnign af fil.", "_%n folder_::_%n folders_" => array("%n mappe","%n mapper"), "_%n file_::_%n files_" => array("%n fil","%n filer"), @@ -59,8 +59,6 @@ $TRANSLATIONS = array( "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Ugyldig privat nøgle for krypteringsprogrammet. Opdater venligst dit kodeord for den private nøgle i dine personlige indstillinger. Det kræves for at få adgang til dine krypterede filer.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Krypteringen blev deaktiveret, men dine filer er stadig krypteret. Gå venligst til dine personlige indstillinger for at dekryptere dine filer. ", "Your download is being prepared. This might take some time if the files are big." => "Dit download forberedes. Dette kan tage lidt tid ved større filer.", -"Error moving file" => "Fejl ved flytning af fil", -"Error" => "Fejl", "Name" => "Navn", "Size" => "Størrelse", "Modified" => "Ændret", diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index 376cbaa4e25..401ee243f28 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -43,10 +43,10 @@ $TRANSLATIONS = array( "Share" => "Teilen", "Delete permanently" => "Endgültig löschen", "Rename" => "Umbenennen", +"Error moving file" => "Fehler beim Verschieben der Datei", +"Error" => "Fehler", "Pending" => "Ausstehend", "Could not rename file" => "Die Datei konnte nicht umbenannt werden", -"replaced {new_name} with {old_name}" => "{old_name} ersetzt durch {new_name}", -"undo" => "rückgängig machen", "Error deleting file." => "Fehler beim Löschen der Datei.", "_%n folder_::_%n folders_" => array("%n Ordner","%n Ordner"), "_%n file_::_%n files_" => array("%n Datei","%n Dateien"), @@ -59,8 +59,6 @@ $TRANSLATIONS = array( "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Ungültiger privater Schlüssel für die Verschlüsselung-App. Bitte aktualisiere Dein privates Schlüssel-Passwort, um den Zugriff auf Deine verschlüsselten Dateien wiederherzustellen.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Die Verschlüsselung wurde deaktiviert, jedoch sind Deine Dateien nach wie vor verschlüsselt. Bitte gehe zu Deinen persönlichen Einstellungen, um Deine Dateien zu entschlüsseln.", "Your download is being prepared. This might take some time if the files are big." => "Dein Download wird vorbereitet. Dies kann bei größeren Dateien etwas dauern.", -"Error moving file" => "Fehler beim Verschieben der Datei", -"Error" => "Fehler", "Name" => "Name", "Size" => "Größe", "Modified" => "Geändert", diff --git a/apps/files/l10n/de_CH.php b/apps/files/l10n/de_CH.php index 8b70d7f0f06..f797be99e98 100644 --- a/apps/files/l10n/de_CH.php +++ b/apps/files/l10n/de_CH.php @@ -23,9 +23,8 @@ $TRANSLATIONS = array( "Share" => "Teilen", "Delete permanently" => "Endgültig löschen", "Rename" => "Umbenennen", +"Error" => "Fehler", "Pending" => "Ausstehend", -"replaced {new_name} with {old_name}" => "{old_name} wurde ersetzt durch {new_name}", -"undo" => "rückgängig machen", "_%n folder_::_%n folders_" => array("","%n Ordner"), "_%n file_::_%n files_" => array("","%n Dateien"), "_Uploading %n file_::_Uploading %n files_" => array("%n Datei wird hochgeladen","%n Dateien werden hochgeladen"), @@ -33,7 +32,6 @@ $TRANSLATIONS = array( "Your storage is almost full ({usedSpacePercent}%)" => "Ihr Speicher ist fast voll ({usedSpacePercent}%)", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Die Verschlüsselung wurde deaktiviert, jedoch sind Ihre Dateien nach wie vor verschlüsselt. Bitte gehen Sie zu Ihren persönlichen Einstellungen, um Ihre Dateien zu entschlüsseln.", "Your download is being prepared. This might take some time if the files are big." => "Ihr Download wird vorbereitet. Dies kann bei grösseren Dateien etwas dauern.", -"Error" => "Fehler", "Name" => "Name", "Size" => "Grösse", "Modified" => "Geändert", diff --git a/apps/files/l10n/de_DE.php b/apps/files/l10n/de_DE.php index 0df0f46dc24..4768faa97da 100644 --- a/apps/files/l10n/de_DE.php +++ b/apps/files/l10n/de_DE.php @@ -43,10 +43,10 @@ $TRANSLATIONS = array( "Share" => "Teilen", "Delete permanently" => "Endgültig löschen", "Rename" => "Umbenennen", +"Error moving file" => "Fehler beim Verschieben der Datei", +"Error" => "Fehler", "Pending" => "Ausstehend", "Could not rename file" => "Die Datei konnte nicht umbenannt werden", -"replaced {new_name} with {old_name}" => "{old_name} wurde ersetzt durch {new_name}", -"undo" => "rückgängig machen", "Error deleting file." => "Fehler beim Löschen der Datei.", "_%n folder_::_%n folders_" => array("%n Ordner","%n Ordner"), "_%n file_::_%n files_" => array("%n Datei","%n Dateien"), @@ -59,8 +59,6 @@ $TRANSLATIONS = array( "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Ungültiger privater Schlüssel für die Verschlüsselung-App. Bitte aktualisieren Sie Ihr privates Schlüssel-Passwort, um den Zugriff auf Ihre verschlüsselten Dateien wiederherzustellen.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Die Verschlüsselung wurde deaktiviert, jedoch sind Ihre Dateien nach wie vor verschlüsselt. Bitte gehen Sie zu Ihren persönlichen Einstellungen, um Ihre Dateien zu entschlüsseln.", "Your download is being prepared. This might take some time if the files are big." => "Ihr Download wird vorbereitet. Dies kann bei größeren Dateien etwas dauern.", -"Error moving file" => "Fehler beim Verschieben der Datei", -"Error" => "Fehler", "Name" => "Name", "Size" => "Größe", "Modified" => "Geändert", diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index c71aa9a35ab..713072d3e0e 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -43,10 +43,10 @@ $TRANSLATIONS = array( "Share" => "Διαμοιρασμός", "Delete permanently" => "Μόνιμη διαγραφή", "Rename" => "Μετονομασία", +"Error moving file" => "Σφάλμα κατά τη μετακίνηση του αρχείου", +"Error" => "Σφάλμα", "Pending" => "Εκκρεμεί", "Could not rename file" => "Αδυναμία μετονομασίας αρχείου", -"replaced {new_name} with {old_name}" => "αντικαταστάθηκε το {new_name} με {old_name}", -"undo" => "αναίρεση", "Error deleting file." => "Σφάλμα διαγραφής αρχείου.", "_%n folder_::_%n folders_" => array("%n φάκελος","%n φάκελοι"), "_%n file_::_%n files_" => array("%n αρχείο","%n αρχεία"), @@ -59,8 +59,6 @@ $TRANSLATIONS = array( "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Άκυρο προσωπικό κλειδί για την εφαρμογή κρυπτογράφησης. Παρακαλώ ενημερώστε τον κωδικό του προσωπικού κλειδίου σας στις προσωπικές ρυθμίσεις για να επανακτήσετε πρόσβαση στα κρυπτογραφημένα σας αρχεία.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Η κρυπτογράφηση απενεργοποιήθηκε, αλλά τα αρχεία σας είναι ακόμα κρυπτογραφημένα. Παρακαλούμε απενεργοποιήσετε την κρυπτογράφηση αρχείων από τις προσωπικές σας ρυθμίσεις", "Your download is being prepared. This might take some time if the files are big." => "Η λήψη προετοιμάζεται. Αυτό μπορεί να πάρει ώρα εάν τα αρχεία έχουν μεγάλο μέγεθος.", -"Error moving file" => "Σφάλμα κατά τη μετακίνηση του αρχείου", -"Error" => "Σφάλμα", "Name" => "Όνομα", "Size" => "Μέγεθος", "Modified" => "Τροποποιήθηκε", diff --git a/apps/files/l10n/en_GB.php b/apps/files/l10n/en_GB.php index 3fb2cb62e60..705f6b99b0b 100644 --- a/apps/files/l10n/en_GB.php +++ b/apps/files/l10n/en_GB.php @@ -43,10 +43,10 @@ $TRANSLATIONS = array( "Share" => "Share", "Delete permanently" => "Delete permanently", "Rename" => "Rename", +"Error moving file" => "Error moving file", +"Error" => "Error", "Pending" => "Pending", "Could not rename file" => "Could not rename file", -"replaced {new_name} with {old_name}" => "replaced {new_name} with {old_name}", -"undo" => "undo", "Error deleting file." => "Error deleting file.", "_%n folder_::_%n folders_" => array("%n folder","%n folders"), "_%n file_::_%n files_" => array("%n file","%n files"), @@ -59,8 +59,6 @@ $TRANSLATIONS = array( "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files.", "Your download is being prepared. This might take some time if the files are big." => "Your download is being prepared. This might take some time if the files are big.", -"Error moving file" => "Error moving file", -"Error" => "Error", "Name" => "Name", "Size" => "Size", "Modified" => "Modified", diff --git a/apps/files/l10n/eo.php b/apps/files/l10n/eo.php index b92fef50006..a6e0d553177 100644 --- a/apps/files/l10n/eo.php +++ b/apps/files/l10n/eo.php @@ -35,10 +35,10 @@ $TRANSLATIONS = array( "Share" => "Kunhavigi", "Delete permanently" => "Forigi por ĉiam", "Rename" => "Alinomigi", +"Error moving file" => "Eraris movo de dosiero", +"Error" => "Eraro", "Pending" => "Traktotaj", "Could not rename file" => "Ne povis alinomiĝi dosiero", -"replaced {new_name} with {old_name}" => "anstataŭiĝis {new_name} per {old_name}", -"undo" => "malfari", "_%n folder_::_%n folders_" => array("%n dosierujo","%n dosierujoj"), "_%n file_::_%n files_" => array("%n dosiero","%n dosieroj"), "{dirs} and {files}" => "{dirs} kaj {files}", @@ -46,8 +46,6 @@ $TRANSLATIONS = array( "Your storage is full, files can not be updated or synced anymore!" => "Via memoro plenas, ne plu eblas ĝisdatigi aŭ sinkronigi dosierojn!", "Your storage is almost full ({usedSpacePercent}%)" => "Via memoro preskaŭ plenas ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Via elŝuto pretiĝatas. Ĉi tio povas daŭri iom da tempo se la dosieroj grandas.", -"Error moving file" => "Eraris movo de dosiero", -"Error" => "Eraro", "Name" => "Nomo", "Size" => "Grando", "Modified" => "Modifita", diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index 6083ab2a5d6..10a378c371b 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -43,10 +43,10 @@ $TRANSLATIONS = array( "Share" => "Compartir", "Delete permanently" => "Eliminar permanentemente", "Rename" => "Renombrar", +"Error moving file" => "Error moviendo archivo", +"Error" => "Error", "Pending" => "Pendiente", "Could not rename file" => "No se pudo renombrar el archivo", -"replaced {new_name} with {old_name}" => "reemplazado {new_name} con {old_name}", -"undo" => "deshacer", "Error deleting file." => "Error al borrar el archivo", "_%n folder_::_%n folders_" => array("%n carpeta","%n carpetas"), "_%n file_::_%n files_" => array("%n archivo","%n archivos"), @@ -59,8 +59,6 @@ $TRANSLATIONS = array( "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "La clave privada no es válida para la app de cifrado. Por favor, actualiza la contraseña de tu clave privada en tus ajustes personales para recuperar el acceso a tus archivos cifrados.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "El cifrado ha sido deshabilitado pero tus archivos permanecen cifrados. Por favor, ve a tus ajustes personales para descifrar tus archivos.", "Your download is being prepared. This might take some time if the files are big." => "Su descarga está siendo preparada. Esto podría tardar algo de tiempo si los archivos son grandes.", -"Error moving file" => "Error moviendo archivo", -"Error" => "Error", "Name" => "Nombre", "Size" => "Tamaño", "Modified" => "Modificado", diff --git a/apps/files/l10n/es_AR.php b/apps/files/l10n/es_AR.php index 105321276c1..f78615fc923 100644 --- a/apps/files/l10n/es_AR.php +++ b/apps/files/l10n/es_AR.php @@ -39,10 +39,10 @@ $TRANSLATIONS = array( "Share" => "Compartir", "Delete permanently" => "Borrar permanentemente", "Rename" => "Cambiar nombre", +"Error moving file" => "Error moviendo el archivo", +"Error" => "Error", "Pending" => "Pendientes", "Could not rename file" => "No se pudo renombrar el archivo", -"replaced {new_name} with {old_name}" => "se reemplazó {new_name} con {old_name}", -"undo" => "deshacer", "Error deleting file." => "Error al borrar el archivo.", "_%n folder_::_%n folders_" => array("%n carpeta","%n carpetas"), "_%n file_::_%n files_" => array("%n archivo","%n archivos"), @@ -54,8 +54,6 @@ $TRANSLATIONS = array( "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Llave privada inválida para la aplicación de encriptación. Por favor actualice la clave de la llave privada en las configuraciones personales para recobrar el acceso a sus archivos encriptados.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "El proceso de cifrado se ha desactivado, pero los archivos aún están encriptados. Por favor, vaya a la configuración personal para descifrar los archivos.", "Your download is being prepared. This might take some time if the files are big." => "Tu descarga se está preparando. Esto puede demorar si los archivos son muy grandes.", -"Error moving file" => "Error moviendo el archivo", -"Error" => "Error", "Name" => "Nombre", "Size" => "Tamaño", "Modified" => "Modificado", diff --git a/apps/files/l10n/es_CL.php b/apps/files/l10n/es_CL.php index 4f5e35bd887..8e051d1c389 100644 --- a/apps/files/l10n/es_CL.php +++ b/apps/files/l10n/es_CL.php @@ -2,10 +2,10 @@ $TRANSLATIONS = array( "Files" => "Archivos", "Share" => "Compartir", +"Error" => "Error", "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), -"Error" => "Error", "Upload" => "Subir", "Download" => "Descargar" ); diff --git a/apps/files/l10n/es_MX.php b/apps/files/l10n/es_MX.php index f8a72f95d85..ea7db0d7b9c 100644 --- a/apps/files/l10n/es_MX.php +++ b/apps/files/l10n/es_MX.php @@ -39,10 +39,10 @@ $TRANSLATIONS = array( "Share" => "Compartir", "Delete permanently" => "Eliminar permanentemente", "Rename" => "Renombrar", +"Error moving file" => "Error moviendo archivo", +"Error" => "Error", "Pending" => "Pendiente", "Could not rename file" => "No se pudo renombrar el archivo", -"replaced {new_name} with {old_name}" => "reemplazado {new_name} con {old_name}", -"undo" => "deshacer", "Error deleting file." => "Error borrando el archivo.", "_%n folder_::_%n folders_" => array("%n carpeta","%n carpetas"), "_%n file_::_%n files_" => array("%n archivo","%n archivos"), @@ -54,8 +54,6 @@ $TRANSLATIONS = array( "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "La clave privada no es válida para la aplicación de cifrado. Por favor, actualiza la contraseña de tu clave privada en tus ajustes personales para recuperar el acceso a tus archivos cifrados.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "El cifrado ha sido deshabilitado pero tus archivos permanecen cifrados. Por favor, ve a tus ajustes personales para descifrar tus archivos.", "Your download is being prepared. This might take some time if the files are big." => "Su descarga está siendo preparada. Esto podría tardar algo de tiempo si los archivos son grandes.", -"Error moving file" => "Error moviendo archivo", -"Error" => "Error", "Name" => "Nombre", "Size" => "Tamaño", "Modified" => "Modificado", diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index 74818f99f11..4f0614feb5e 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -43,10 +43,10 @@ $TRANSLATIONS = array( "Share" => "Jaga", "Delete permanently" => "Kustuta jäädavalt", "Rename" => "Nimeta ümber", +"Error moving file" => "Viga faili eemaldamisel", +"Error" => "Viga", "Pending" => "Ootel", "Could not rename file" => "Ei suuda faili ümber nimetada", -"replaced {new_name} with {old_name}" => "asendas nime {old_name} nimega {new_name}", -"undo" => "tagasi", "Error deleting file." => "Viga faili kustutamisel.", "_%n folder_::_%n folders_" => array("%n kataloog","%n kataloogi"), "_%n file_::_%n files_" => array("%n fail","%n faili"), @@ -59,8 +59,6 @@ $TRANSLATIONS = array( "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Vigane Krüpteerimisrakendi privaatvõti . Palun uuenda oma privaatse võtme parool oma personaasete seadete all taastamaks ligipääsu oma krüpteeritud failidele.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Krüpteering on keelatud, kuid sinu failid on endiselt krüpteeritud. Palun vaata oma personaalseid seadeid oma failide dekrüpteerimiseks.", "Your download is being prepared. This might take some time if the files are big." => "Valmistatakse allalaadimist. See võib võtta veidi aega, kui on tegu suurte failidega. ", -"Error moving file" => "Viga faili eemaldamisel", -"Error" => "Viga", "Name" => "Nimi", "Size" => "Suurus", "Modified" => "Muudetud", diff --git a/apps/files/l10n/eu.php b/apps/files/l10n/eu.php index be601eecfbf..d59dd396283 100644 --- a/apps/files/l10n/eu.php +++ b/apps/files/l10n/eu.php @@ -39,10 +39,10 @@ $TRANSLATIONS = array( "Share" => "Elkarbanatu", "Delete permanently" => "Ezabatu betirako", "Rename" => "Berrizendatu", +"Error moving file" => "Errorea fitxategia mugitzean", +"Error" => "Errorea", "Pending" => "Zain", "Could not rename file" => "Ezin izan da fitxategia berrizendatu", -"replaced {new_name} with {old_name}" => " {new_name}-k {old_name} ordezkatu du", -"undo" => "desegin", "Error deleting file." => "Errorea fitxategia ezabatzerakoan.", "_%n folder_::_%n folders_" => array("karpeta %n","%n karpeta"), "_%n file_::_%n files_" => array("fitxategi %n","%n fitxategi"), @@ -54,8 +54,6 @@ $TRANSLATIONS = array( "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Enkriptazio aplikaziorako gako pribatu okerra. Mesedez eguneratu zure gako pribatuaren pasahitza zure ezarpen pertsonaletan zure enkriptatuko fitxategietarako sarrera berreskuratzeko.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Enkriptazioa desgaitua izan da baina zure fitxategiak oraindik enkriptatuta daude. Mesedez jo zure ezarpen pertsonaletara zure fitxategiak dekodifikatzeko.", "Your download is being prepared. This might take some time if the files are big." => "Zure deskarga prestatu egin behar da. Denbora bat har lezake fitxategiak handiak badira. ", -"Error moving file" => "Errorea fitxategia mugitzean", -"Error" => "Errorea", "Name" => "Izena", "Size" => "Tamaina", "Modified" => "Aldatuta", diff --git a/apps/files/l10n/fa.php b/apps/files/l10n/fa.php index e1142aba160..2e8f6255e24 100644 --- a/apps/files/l10n/fa.php +++ b/apps/files/l10n/fa.php @@ -23,16 +23,14 @@ $TRANSLATIONS = array( "Share" => "اشتراک‌گذاری", "Delete permanently" => "حذف قطعی", "Rename" => "تغییرنام", +"Error" => "خطا", "Pending" => "در انتظار", -"replaced {new_name} with {old_name}" => "{نام_جدید} با { نام_قدیمی} جایگزین شد.", -"undo" => "بازگشت", "_%n folder_::_%n folders_" => array(""), "_%n file_::_%n files_" => array(""), "_Uploading %n file_::_Uploading %n files_" => array("در حال بارگذاری %n فایل"), "Your storage is full, files can not be updated or synced anymore!" => "فضای ذخیره ی شما کاملا پر است، بیش از این فایلها بهنگام یا همگام سازی نمی توانند بشوند!", "Your storage is almost full ({usedSpacePercent}%)" => "فضای ذخیره ی شما تقریبا پر است ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "دانلود شما در حال آماده شدن است. در صورتیکه پرونده ها بزرگ باشند ممکن است مدتی طول بکشد.", -"Error" => "خطا", "Name" => "نام", "Size" => "اندازه", "Modified" => "تاریخ", diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index 6b94d8b4fae..b6383c144de 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -41,9 +41,10 @@ $TRANSLATIONS = array( "Share" => "Jaa", "Delete permanently" => "Poista pysyvästi", "Rename" => "Nimeä uudelleen", +"Error moving file" => "Virhe tiedostoa siirrettäessä", +"Error" => "Virhe", "Pending" => "Odottaa", "Could not rename file" => "Tiedoston nimeäminen uudelleen epäonnistui", -"undo" => "kumoa", "Error deleting file." => "Virhe tiedostoa poistaessa.", "_%n folder_::_%n folders_" => array("%n kansio","%n kansiota"), "_%n file_::_%n files_" => array("%n tiedosto","%n tiedostoa"), @@ -54,8 +55,6 @@ $TRANSLATIONS = array( "Your storage is almost full ({usedSpacePercent}%)" => "Tallennustila on melkein loppu ({usedSpacePercent}%)", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Salaus poistettiin käytöstä, mutta tiedostosi ovat edelleen salattuina. Siirry henkilökohtaisiin asetuksiin avataksesi tiedostojesi salauksen.", "Your download is being prepared. This might take some time if the files are big." => "Lataustasi valmistellaan. Tämä saattaa kestää hetken, jos tiedostot ovat suuria kooltaan.", -"Error moving file" => "Virhe tiedostoa siirrettäessä", -"Error" => "Virhe", "Name" => "Nimi", "Size" => "Koko", "Modified" => "Muokattu", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index ad768f03de7..0eed6a70f91 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -43,10 +43,10 @@ $TRANSLATIONS = array( "Share" => "Partager", "Delete permanently" => "Supprimer de façon définitive", "Rename" => "Renommer", +"Error moving file" => "Erreur lors du déplacement du fichier", +"Error" => "Erreur", "Pending" => "En attente", "Could not rename file" => "Impossible de renommer le fichier", -"replaced {new_name} with {old_name}" => "{new_name} a été remplacé par {old_name}", -"undo" => "annuler", "Error deleting file." => "Erreur pendant la suppression du fichier.", "_%n folder_::_%n folders_" => array("%n dossier","%n dossiers"), "_%n file_::_%n files_" => array("%n fichier","%n fichiers"), @@ -59,8 +59,6 @@ $TRANSLATIONS = array( "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Votre clef privée pour l'application de chiffrement est invalide ! Veuillez mettre à jour le mot de passe de votre clef privée dans vos paramètres personnels pour récupérer l'accès à vos fichiers chiffrés.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Le chiffrement était désactivé mais vos fichiers sont toujours chiffrés. Veuillez vous rendre sur vos Paramètres personnels pour déchiffrer vos fichiers.", "Your download is being prepared. This might take some time if the files are big." => "Votre téléchargement est cours de préparation. Ceci peut nécessiter un certain temps si les fichiers sont volumineux.", -"Error moving file" => "Erreur lors du déplacement du fichier", -"Error" => "Erreur", "Name" => "Nom", "Size" => "Taille", "Modified" => "Modifié", diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index 7ea8181dc71..9fe6546de51 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -43,10 +43,10 @@ $TRANSLATIONS = array( "Share" => "Compartir", "Delete permanently" => "Eliminar permanentemente", "Rename" => "Renomear", +"Error moving file" => "Produciuse un erro ao mover o ficheiro", +"Error" => "Erro", "Pending" => "Pendentes", "Could not rename file" => "Non foi posíbel renomear o ficheiro", -"replaced {new_name} with {old_name}" => "substituír {new_name} por {old_name}", -"undo" => "desfacer", "Error deleting file." => "Produciuse un erro ao eliminar o ficheiro.", "_%n folder_::_%n folders_" => array("%n cartafol","%n cartafoles"), "_%n file_::_%n files_" => array("%n ficheiro","%n ficheiros"), @@ -59,8 +59,6 @@ $TRANSLATIONS = array( "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "A chave privada para o aplicativo de cifrado non é correcta. Actualice o contrasinal da súa chave privada nos seus axustes persoais para recuperar o acceso aos seus ficheiros cifrados.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "O cifrado foi desactivado, mais os ficheiros están cifrados. Vaia á configuración persoal para descifrar os ficheiros.", "Your download is being prepared. This might take some time if the files are big." => "Está a prepararse a súa descarga. Isto pode levar bastante tempo se os ficheiros son grandes.", -"Error moving file" => "Produciuse un erro ao mover o ficheiro", -"Error" => "Erro", "Name" => "Nome", "Size" => "Tamaño", "Modified" => "Modificado", diff --git a/apps/files/l10n/he.php b/apps/files/l10n/he.php index 2035c8488bd..ab8640a91d1 100644 --- a/apps/files/l10n/he.php +++ b/apps/files/l10n/he.php @@ -23,14 +23,12 @@ $TRANSLATIONS = array( "Share" => "שתף", "Delete permanently" => "מחק לצמיתות", "Rename" => "שינוי שם", +"Error" => "שגיאה", "Pending" => "ממתין", -"replaced {new_name} with {old_name}" => "{new_name} הוחלף ב־{old_name}", -"undo" => "ביטול", "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), "Your storage is almost full ({usedSpacePercent}%)" => "שטח האחסון שלך כמעט מלא ({usedSpacePercent}%)", -"Error" => "שגיאה", "Name" => "שם", "Size" => "גודל", "Modified" => "זמן שינוי", diff --git a/apps/files/l10n/hi.php b/apps/files/l10n/hi.php index ae01bfc47e1..b4234b51376 100644 --- a/apps/files/l10n/hi.php +++ b/apps/files/l10n/hi.php @@ -1,10 +1,10 @@ "साझा करें", +"Error" => "त्रुटि", "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), -"Error" => "त्रुटि", "Upload" => "अपलोड ", "Save" => "सहेजें" ); diff --git a/apps/files/l10n/hr.php b/apps/files/l10n/hr.php index 5048a15c8bb..ef978e6cfb7 100644 --- a/apps/files/l10n/hr.php +++ b/apps/files/l10n/hr.php @@ -11,12 +11,11 @@ $TRANSLATIONS = array( "File upload is in progress. Leaving the page now will cancel the upload." => "Učitavanje datoteke. Napuštanjem stranice će prekinuti učitavanje.", "Share" => "Podijeli", "Rename" => "Promjeni ime", +"Error" => "Greška", "Pending" => "U tijeku", -"undo" => "vrati", "_%n folder_::_%n folders_" => array("","",""), "_%n file_::_%n files_" => array("","",""), "_Uploading %n file_::_Uploading %n files_" => array("","",""), -"Error" => "Greška", "Name" => "Ime", "Size" => "Veličina", "Modified" => "Zadnja promjena", diff --git a/apps/files/l10n/hu_HU.php b/apps/files/l10n/hu_HU.php index 6f5ba9b4724..e4ab355c9b1 100644 --- a/apps/files/l10n/hu_HU.php +++ b/apps/files/l10n/hu_HU.php @@ -39,10 +39,10 @@ $TRANSLATIONS = array( "Share" => "Megosztás", "Delete permanently" => "Végleges törlés", "Rename" => "Átnevezés", +"Error moving file" => "Az állomány áthelyezése nem sikerült.", +"Error" => "Hiba", "Pending" => "Folyamatban", "Could not rename file" => "Az állomány nem nevezhető át", -"replaced {new_name} with {old_name}" => "{new_name} fájlt kicseréltük ezzel: {old_name}", -"undo" => "visszavonás", "Error deleting file." => "Hiba a file törlése közben.", "_%n folder_::_%n folders_" => array("%n mappa","%n mappa"), "_%n file_::_%n files_" => array("%n állomány","%n állomány"), @@ -54,8 +54,6 @@ $TRANSLATIONS = array( "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Az állományok titkosításához használt titkos kulcsa érvénytelen. Kérjük frissítse a titkos kulcs jelszót a személyes beállításokban, hogy ismét hozzáférjen a titkosított állományaihoz!", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "A titkosítási funkciót kikapcsolták, de az Ön állományai még mindig titkosított állapotban vannak. A személyes beállításoknál tudja a titkosítást feloldani.", "Your download is being prepared. This might take some time if the files are big." => "Készül a letöltendő állomány. Ez eltarthat egy ideig, ha nagyok a fájlok.", -"Error moving file" => "Az állomány áthelyezése nem sikerült.", -"Error" => "Hiba", "Name" => "Név", "Size" => "Méret", "Modified" => "Módosítva", diff --git a/apps/files/l10n/ia.php b/apps/files/l10n/ia.php index 82fd2e658d7..420e48395c7 100644 --- a/apps/files/l10n/ia.php +++ b/apps/files/l10n/ia.php @@ -5,10 +5,10 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Manca un dossier temporari", "Files" => "Files", "Share" => "Compartir", +"Error" => "Error", "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), -"Error" => "Error", "Name" => "Nomine", "Size" => "Dimension", "Modified" => "Modificate", diff --git a/apps/files/l10n/id.php b/apps/files/l10n/id.php index 45bc05c9182..8356c5465eb 100644 --- a/apps/files/l10n/id.php +++ b/apps/files/l10n/id.php @@ -37,10 +37,10 @@ $TRANSLATIONS = array( "Share" => "Bagikan", "Delete permanently" => "Hapus secara permanen", "Rename" => "Ubah nama", +"Error moving file" => "Galat saat memindahkan berkas", +"Error" => "Galat", "Pending" => "Menunggu", "Could not rename file" => "Tidak dapat mengubah nama berkas", -"replaced {new_name} with {old_name}" => "mengganti {new_name} dengan {old_name}", -"undo" => "urungkan", "Error deleting file." => "Galat saat menghapus berkas.", "_%n folder_::_%n folders_" => array("%n folder"), "_%n file_::_%n files_" => array("%n berkas"), @@ -52,8 +52,6 @@ $TRANSLATIONS = array( "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Kunci privat tidak sah untuk Aplikasi Enskripsi. Silakan perbarui sandi kunci privat anda pada pengaturan pribadi untuk memulihkan akses ke berkas anda yang dienskripsi.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Enskripi telah dinonaktifkan tetapi berkas anda tetap dienskripsi. Silakan menuju ke pengaturan pribadi untuk deskrip berkas anda.", "Your download is being prepared. This might take some time if the files are big." => "Unduhan Anda sedang disiapkan. Prosesnya dapat berlangsung agak lama jika ukuran berkasnya besar.", -"Error moving file" => "Galat saat memindahkan berkas", -"Error" => "Galat", "Name" => "Nama", "Size" => "Ukuran", "Modified" => "Dimodifikasi", diff --git a/apps/files/l10n/is.php b/apps/files/l10n/is.php index 088cdefa304..00503028e0e 100644 --- a/apps/files/l10n/is.php +++ b/apps/files/l10n/is.php @@ -19,13 +19,11 @@ $TRANSLATIONS = array( "{new_name} already exists" => "{new_name} er þegar til", "Share" => "Deila", "Rename" => "Endurskýra", +"Error" => "Villa", "Pending" => "Bíður", -"replaced {new_name} with {old_name}" => "yfirskrifaði {new_name} með {old_name}", -"undo" => "afturkalla", "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), -"Error" => "Villa", "Name" => "Nafn", "Size" => "Stærð", "Modified" => "Breytt", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index e1a34e646fb..9539496a3fc 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -43,10 +43,10 @@ $TRANSLATIONS = array( "Share" => "Condividi", "Delete permanently" => "Elimina definitivamente", "Rename" => "Rinomina", +"Error moving file" => "Errore durante lo spostamento del file", +"Error" => "Errore", "Pending" => "In corso", "Could not rename file" => "Impossibile rinominare il file", -"replaced {new_name} with {old_name}" => "sostituito {new_name} con {old_name}", -"undo" => "annulla", "Error deleting file." => "Errore durante l'eliminazione del file.", "_%n folder_::_%n folders_" => array("%n cartella","%n cartelle"), "_%n file_::_%n files_" => array("%n file","%n file"), @@ -59,8 +59,6 @@ $TRANSLATIONS = array( "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Chiave privata non valida per l'applicazione di cifratura. Aggiorna la password della chiave privata nelle impostazioni personali per ripristinare l'accesso ai tuoi file cifrati.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "La cifratura è stata disabilitata ma i tuoi file sono ancora cifrati. Vai nelle impostazioni personali per decifrare i file.", "Your download is being prepared. This might take some time if the files are big." => "Il tuo scaricamento è in fase di preparazione. Ciò potrebbe richiedere del tempo se i file sono grandi.", -"Error moving file" => "Errore durante lo spostamento del file", -"Error" => "Errore", "Name" => "Nome", "Size" => "Dimensione", "Modified" => "Modificato", diff --git a/apps/files/l10n/ja.php b/apps/files/l10n/ja.php index eb6cb0efc50..dd8d4e4e3f6 100644 --- a/apps/files/l10n/ja.php +++ b/apps/files/l10n/ja.php @@ -43,10 +43,10 @@ $TRANSLATIONS = array( "Share" => "共有", "Delete permanently" => "完全に削除する", "Rename" => "名前の変更", +"Error moving file" => "ファイルの移動エラー", +"Error" => "エラー", "Pending" => "中断", "Could not rename file" => "ファイルの名前変更ができませんでした", -"replaced {new_name} with {old_name}" => "{old_name} を {new_name} に置換", -"undo" => "元に戻す", "Error deleting file." => "ファイルの削除エラー。", "_%n folder_::_%n folders_" => array("%n 個のフォルダー"), "_%n file_::_%n files_" => array("%n 個のファイル"), @@ -59,8 +59,6 @@ $TRANSLATIONS = array( "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "暗号化アプリの無効なプライベートキーです。あなたの暗号化されたファイルへアクセスするために、個人設定からプライベートキーのパスワードを更新してください。", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "暗号化の機能は無効化されましたが、ファイルはすでに暗号化されています。個人設定からファイルを複合を行ってください。", "Your download is being prepared. This might take some time if the files are big." => "ダウンロードの準備中です。ファイルサイズが大きい場合は少し時間がかかるかもしれません。", -"Error moving file" => "ファイルの移動エラー", -"Error" => "エラー", "Name" => "名前", "Size" => "サイズ", "Modified" => "更新日時", diff --git a/apps/files/l10n/ka_GE.php b/apps/files/l10n/ka_GE.php index 230c2e4ede2..f9749d72bb4 100644 --- a/apps/files/l10n/ka_GE.php +++ b/apps/files/l10n/ka_GE.php @@ -21,16 +21,14 @@ $TRANSLATIONS = array( "Share" => "გაზიარება", "Delete permanently" => "სრულად წაშლა", "Rename" => "გადარქმევა", +"Error" => "შეცდომა", "Pending" => "მოცდის რეჟიმში", -"replaced {new_name} with {old_name}" => "{new_name} შეცვლილია {old_name}–ით", -"undo" => "დაბრუნება", "_%n folder_::_%n folders_" => array(""), "_%n file_::_%n files_" => array(""), "_Uploading %n file_::_Uploading %n files_" => array(""), "Your storage is full, files can not be updated or synced anymore!" => "თქვენი საცავი გადაივსო. ფაილების განახლება და სინქრონიზირება ვერ მოხერხდება!", "Your storage is almost full ({usedSpacePercent}%)" => "თქვენი საცავი თითქმის გადაივსო ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "გადმოწერის მოთხოვნა მუშავდება. ის მოითხოვს გარკვეულ დროს რაგდან ფაილები არის დიდი ზომის.", -"Error" => "შეცდომა", "Name" => "სახელი", "Size" => "ზომა", "Modified" => "შეცვლილია", diff --git a/apps/files/l10n/km.php b/apps/files/l10n/km.php index 702c811ecf2..a7a01ccab9d 100644 --- a/apps/files/l10n/km.php +++ b/apps/files/l10n/km.php @@ -2,11 +2,10 @@ $TRANSLATIONS = array( "Files" => "ឯកសារ", "Share" => "ចែក​រំលែក", -"undo" => "មិន​ធ្វើ​វិញ", +"Error" => "កំហុស", "_%n folder_::_%n folders_" => array(""), "_%n file_::_%n files_" => array(""), "_Uploading %n file_::_Uploading %n files_" => array(""), -"Error" => "កំហុស", "Name" => "ឈ្មោះ", "Size" => "ទំហំ", "Upload" => "ផ្ទុក​ឡើង", diff --git a/apps/files/l10n/ko.php b/apps/files/l10n/ko.php index 92a2578074c..c0f0d7d4454 100644 --- a/apps/files/l10n/ko.php +++ b/apps/files/l10n/ko.php @@ -39,10 +39,10 @@ $TRANSLATIONS = array( "Share" => "공유", "Delete permanently" => "영구히 삭제", "Rename" => "이름 바꾸기", +"Error moving file" => "파일 이동 오류", +"Error" => "오류", "Pending" => "대기 중", "Could not rename file" => "이름을 변경할 수 없음", -"replaced {new_name} with {old_name}" => "{old_name}이(가) {new_name}(으)로 대체됨", -"undo" => "실행 취소", "Error deleting file." => "파일 삭제 오류.", "_%n folder_::_%n folders_" => array("폴더 %n개"), "_%n file_::_%n files_" => array("파일 %n개"), @@ -54,8 +54,6 @@ $TRANSLATIONS = array( "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "암호화 앱의 개인 키가 잘못되었습니다. 암호화된 파일에 다시 접근하려면 개인 설정에서 개인 키 암호를 업데이트해야 합니다.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "암호화는 해제되어 있지만, 파일은 아직 암호화되어 있습니다. 개인 설정에서 파일을 복호화하십시오.", "Your download is being prepared. This might take some time if the files are big." => "다운로드 준비 중입니다. 파일 크기가 크면 시간이 오래 걸릴 수도 있습니다.", -"Error moving file" => "파일 이동 오류", -"Error" => "오류", "Name" => "이름", "Size" => "크기", "Modified" => "수정됨", diff --git a/apps/files/l10n/ku_IQ.php b/apps/files/l10n/ku_IQ.php index c0141656f5d..6ec5819d380 100644 --- a/apps/files/l10n/ku_IQ.php +++ b/apps/files/l10n/ku_IQ.php @@ -2,10 +2,10 @@ $TRANSLATIONS = array( "Files" => "په‌ڕگەکان", "Share" => "هاوبەشی کردن", +"Error" => "هه‌ڵه", "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), -"Error" => "هه‌ڵه", "Name" => "ناو", "Upload" => "بارکردن", "Save" => "پاشکه‌وتکردن", diff --git a/apps/files/l10n/lb.php b/apps/files/l10n/lb.php index 822ca7e2d02..38b5d672d02 100644 --- a/apps/files/l10n/lb.php +++ b/apps/files/l10n/lb.php @@ -11,11 +11,10 @@ $TRANSLATIONS = array( "File upload is in progress. Leaving the page now will cancel the upload." => "File Upload am gaang. Wann's de des Säit verléiss gëtt den Upload ofgebrach.", "Share" => "Deelen", "Rename" => "Ëm-benennen", -"undo" => "réckgängeg man", +"Error" => "Fehler", "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), -"Error" => "Fehler", "Name" => "Numm", "Size" => "Gréisst", "Modified" => "Geännert", diff --git a/apps/files/l10n/lt_LT.php b/apps/files/l10n/lt_LT.php index 14c48621174..50097e5f362 100644 --- a/apps/files/l10n/lt_LT.php +++ b/apps/files/l10n/lt_LT.php @@ -39,10 +39,10 @@ $TRANSLATIONS = array( "Share" => "Dalintis", "Delete permanently" => "Ištrinti negrįžtamai", "Rename" => "Pervadinti", +"Error moving file" => "Klaida perkeliant failą", +"Error" => "Klaida", "Pending" => "Laukiantis", "Could not rename file" => "Neįmanoma pervadinti failo", -"replaced {new_name} with {old_name}" => "pakeiskite {new_name} į {old_name}", -"undo" => "anuliuoti", "Error deleting file." => "Klaida trinant failą.", "_%n folder_::_%n folders_" => array("%n aplankas","%n aplankai","%n aplankų"), "_%n file_::_%n files_" => array("%n failas","%n failai","%n failų"), @@ -54,8 +54,6 @@ $TRANSLATIONS = array( "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Netinkamas privatus raktas Šifravimo programai. Prašome atnaujinti savo privataus rakto slaptažodį asmeniniuose nustatymuose, kad atkurti prieigą prie šifruotų failų.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Šifravimas buvo išjungtas, bet Jūsų failai vis dar užšifruoti. Prašome eiti į asmeninius nustatymus ir iššifruoti savo failus.", "Your download is being prepared. This might take some time if the files are big." => "Jūsų atsisiuntimas yra paruošiamas. tai gali užtrukti jei atsisiunčiamas didelis failas.", -"Error moving file" => "Klaida perkeliant failą", -"Error" => "Klaida", "Name" => "Pavadinimas", "Size" => "Dydis", "Modified" => "Pakeista", diff --git a/apps/files/l10n/lv.php b/apps/files/l10n/lv.php index 0d2ebf281ab..fcb1a59aa38 100644 --- a/apps/files/l10n/lv.php +++ b/apps/files/l10n/lv.php @@ -23,9 +23,8 @@ $TRANSLATIONS = array( "Share" => "Dalīties", "Delete permanently" => "Dzēst pavisam", "Rename" => "Pārsaukt", +"Error" => "Kļūda", "Pending" => "Gaida savu kārtu", -"replaced {new_name} with {old_name}" => "aizvietoja {new_name} ar {old_name}", -"undo" => "atsaukt", "_%n folder_::_%n folders_" => array("%n mapes","%n mape","%n mapes"), "_%n file_::_%n files_" => array("%n faili","%n fails","%n faili"), "_Uploading %n file_::_Uploading %n files_" => array("%n","Augšupielāde %n failu","Augšupielāde %n failus"), @@ -33,7 +32,6 @@ $TRANSLATIONS = array( "Your storage is almost full ({usedSpacePercent}%)" => "Jūsu krātuve ir gandrīz pilna ({usedSpacePercent}%)", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Šifrēšana tika atslēgta, tomēr jūsu faili joprojām ir šifrēti. Atšifrēt failus var Personiskajos uzstādījumos.", "Your download is being prepared. This might take some time if the files are big." => "Tiek sagatavota lejupielāde. Tas var aizņemt kādu laiciņu, ja datnes ir lielas.", -"Error" => "Kļūda", "Name" => "Nosaukums", "Size" => "Izmērs", "Modified" => "Mainīts", diff --git a/apps/files/l10n/mk.php b/apps/files/l10n/mk.php index bc9ee15823c..fa6efd1aff3 100644 --- a/apps/files/l10n/mk.php +++ b/apps/files/l10n/mk.php @@ -34,10 +34,10 @@ $TRANSLATIONS = array( "Share" => "Сподели", "Delete permanently" => "Трајно избришани", "Rename" => "Преименувај", +"Error moving file" => "Грешка при префрлање на датотека", +"Error" => "Грешка", "Pending" => "Чека", "Could not rename file" => "Не можам да ја преименувам датотеката", -"replaced {new_name} with {old_name}" => "заменета {new_name} со {old_name}", -"undo" => "врати", "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "{dirs} and {files}" => "{dirs} и {files}", @@ -45,8 +45,6 @@ $TRANSLATIONS = array( "Your storage is full, files can not be updated or synced anymore!" => "Вашиот сториџ е полн, датотеките веќе не можат да се освежуваат или синхронизираат!", "Your storage is almost full ({usedSpacePercent}%)" => "Вашиот сториџ е скоро полн ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Вашето преземање се подготвува. Ова може да потрае до колку датотеките се големи.", -"Error moving file" => "Грешка при префрлање на датотека", -"Error" => "Грешка", "Name" => "Име", "Size" => "Големина", "Modified" => "Променето", diff --git a/apps/files/l10n/ms_MY.php b/apps/files/l10n/ms_MY.php index 0a7a50abb1a..df0054c3d00 100644 --- a/apps/files/l10n/ms_MY.php +++ b/apps/files/l10n/ms_MY.php @@ -11,11 +11,11 @@ $TRANSLATIONS = array( "Upload cancelled." => "Muatnaik dibatalkan.", "Share" => "Kongsi", "Rename" => "Namakan", +"Error" => "Ralat", "Pending" => "Dalam proses", "_%n folder_::_%n folders_" => array(""), "_%n file_::_%n files_" => array(""), "_Uploading %n file_::_Uploading %n files_" => array(""), -"Error" => "Ralat", "Name" => "Nama", "Size" => "Saiz", "Modified" => "Dimodifikasi", diff --git a/apps/files/l10n/nb_NO.php b/apps/files/l10n/nb_NO.php index b90bee38f99..f1e2c2edeeb 100644 --- a/apps/files/l10n/nb_NO.php +++ b/apps/files/l10n/nb_NO.php @@ -39,10 +39,10 @@ $TRANSLATIONS = array( "Share" => "Del", "Delete permanently" => "Slett permanent", "Rename" => "Gi nytt navn", +"Error moving file" => "Feil ved flytting av fil", +"Error" => "Feil", "Pending" => "Ventende", "Could not rename file" => "Klarte ikke å gi nytt navn til fil", -"replaced {new_name} with {old_name}" => "erstattet {new_name} med {old_name}", -"undo" => "angre", "Error deleting file." => "Feil ved sletting av fil.", "_%n folder_::_%n folders_" => array("%n mappe","%n mapper"), "_%n file_::_%n files_" => array("%n fil","%n filer"), @@ -54,8 +54,6 @@ $TRANSLATIONS = array( "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Ugyldig privat nøkkel for Krypterings-app. Oppdater passordet for din private nøkkel i dine personlige innstillinger for å gjenopprette tilgang til de krypterte filene dine.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Kryptering ble slått av men filene dine er fremdeles kryptert. Gå til dine personlige innstillinger for å dekryptere filene dine.", "Your download is being prepared. This might take some time if the files are big." => "Nedlastingen din klargjøres. Hvis filene er store kan dette ta litt tid.", -"Error moving file" => "Feil ved flytting av fil", -"Error" => "Feil", "Name" => "Navn", "Size" => "Størrelse", "Modified" => "Endret", diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index c617f0bfdde..946c7905b23 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -43,10 +43,10 @@ $TRANSLATIONS = array( "Share" => "Delen", "Delete permanently" => "Verwijder definitief", "Rename" => "Hernoem", +"Error moving file" => "Fout bij verplaatsen bestand", +"Error" => "Fout", "Pending" => "In behandeling", "Could not rename file" => "Kon niet hernoemen bestand", -"replaced {new_name} with {old_name}" => "verving {new_name} met {old_name}", -"undo" => "ongedaan maken", "Error deleting file." => "Fout bij verwijderen bestand.", "_%n folder_::_%n folders_" => array("","%n mappen"), "_%n file_::_%n files_" => array("","%n bestanden"), @@ -59,8 +59,6 @@ $TRANSLATIONS = array( "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Ongeldige privésleutel voor crypto app. Werk het privésleutel wachtwoord bij in uw persoonlijke instellingen om opnieuw toegang te krijgen tot uw versleutelde bestanden.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Encryptie is uitgeschakeld maar uw bestanden zijn nog steeds versleuteld. Ga naar uw persoonlijke instellingen om uw bestanden te decoderen.", "Your download is being prepared. This might take some time if the files are big." => "Uw download wordt voorbereid. Dit kan enige tijd duren bij grote bestanden.", -"Error moving file" => "Fout bij verplaatsen bestand", -"Error" => "Fout", "Name" => "Naam", "Size" => "Grootte", "Modified" => "Aangepast", diff --git a/apps/files/l10n/nn_NO.php b/apps/files/l10n/nn_NO.php index 4f74167d9ad..bd17fa3386a 100644 --- a/apps/files/l10n/nn_NO.php +++ b/apps/files/l10n/nn_NO.php @@ -27,9 +27,9 @@ $TRANSLATIONS = array( "Share" => "Del", "Delete permanently" => "Slett for godt", "Rename" => "Endra namn", +"Error moving file" => "Feil ved flytting av fil", +"Error" => "Feil", "Pending" => "Under vegs", -"replaced {new_name} with {old_name}" => "bytte ut {new_name} med {old_name}", -"undo" => "angre", "_%n folder_::_%n folders_" => array("%n mappe","%n mapper"), "_%n file_::_%n files_" => array("%n fil","%n filer"), "{dirs} and {files}" => "{dirs} og {files}", @@ -38,8 +38,6 @@ $TRANSLATIONS = array( "Your storage is almost full ({usedSpacePercent}%)" => "Lagringa di er nesten full ({usedSpacePercent} %)", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Kryptering er skrudd av, men filene dine er enno krypterte. Du kan dekryptera filene i personlege innstillingar.", "Your download is being prepared. This might take some time if the files are big." => "Gjer klar nedlastinga di. Dette kan ta ei stund viss filene er store.", -"Error moving file" => "Feil ved flytting av fil", -"Error" => "Feil", "Name" => "Namn", "Size" => "Storleik", "Modified" => "Endra", diff --git a/apps/files/l10n/oc.php b/apps/files/l10n/oc.php index eb1a9038b08..7a24c81974e 100644 --- a/apps/files/l10n/oc.php +++ b/apps/files/l10n/oc.php @@ -11,12 +11,11 @@ $TRANSLATIONS = array( "File upload is in progress. Leaving the page now will cancel the upload." => "Un amontcargar es a se far. Daissar aquesta pagina ara tamparà lo cargament. ", "Share" => "Parteja", "Rename" => "Torna nomenar", +"Error" => "Error", "Pending" => "Al esperar", -"undo" => "defar", "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), -"Error" => "Error", "Name" => "Nom", "Size" => "Talha", "Modified" => "Modificat", diff --git a/apps/files/l10n/pa.php b/apps/files/l10n/pa.php index 63fcbe12dda..b18d2071e08 100644 --- a/apps/files/l10n/pa.php +++ b/apps/files/l10n/pa.php @@ -3,11 +3,10 @@ $TRANSLATIONS = array( "Files" => "ਫਾਇਲਾਂ", "Share" => "ਸਾਂਝਾ ਕਰੋ", "Rename" => "ਨਾਂ ਬਦਲੋ", -"undo" => "ਵਾਪਸ", +"Error" => "ਗਲਤੀ", "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), -"Error" => "ਗਲਤੀ", "Upload" => "ਅੱਪਲੋਡ", "Cancel upload" => "ਅੱਪਲੋਡ ਰੱਦ ਕਰੋ", "Download" => "ਡਾਊਨਲੋਡ", diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index 3e93dc881e9..83126b3ea03 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -43,10 +43,10 @@ $TRANSLATIONS = array( "Share" => "Udostępnij", "Delete permanently" => "Trwale usuń", "Rename" => "Zmień nazwę", +"Error moving file" => "Błąd prz przenoszeniu pliku", +"Error" => "Błąd", "Pending" => "Oczekujące", "Could not rename file" => "Nie można zmienić nazwy pliku", -"replaced {new_name} with {old_name}" => "zastąpiono {new_name} przez {old_name}", -"undo" => "cofnij", "Error deleting file." => "Błąd podczas usuwania pliku", "_%n folder_::_%n folders_" => array("%n katalog","%n katalogi","%n katalogów"), "_%n file_::_%n files_" => array("%n plik","%n pliki","%n plików"), @@ -59,8 +59,6 @@ $TRANSLATIONS = array( "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Klucz prywatny nie jest poprawny! Może Twoje hasło zostało zmienione z zewnątrz. Można zaktualizować hasło klucza prywatnego w ustawieniach osobistych w celu odzyskania dostępu do plików", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Szyfrowanie zostało wyłączone, ale nadal pliki są zaszyfrowane. Przejdź do ustawień osobistych i tam odszyfruj pliki.", "Your download is being prepared. This might take some time if the files are big." => "Pobieranie jest przygotowywane. Może to zająć trochę czasu jeśli pliki są duże.", -"Error moving file" => "Błąd prz przenoszeniu pliku", -"Error" => "Błąd", "Name" => "Nazwa", "Size" => "Rozmiar", "Modified" => "Modyfikacja", diff --git a/apps/files/l10n/pt_BR.php b/apps/files/l10n/pt_BR.php index d0c27431daa..48c32e8887f 100644 --- a/apps/files/l10n/pt_BR.php +++ b/apps/files/l10n/pt_BR.php @@ -43,10 +43,10 @@ $TRANSLATIONS = array( "Share" => "Compartilhar", "Delete permanently" => "Excluir permanentemente", "Rename" => "Renomear", +"Error moving file" => "Erro movendo o arquivo", +"Error" => "Erro", "Pending" => "Pendente", "Could not rename file" => "Não foi possível renomear o arquivo", -"replaced {new_name} with {old_name}" => "Substituído {old_name} por {new_name} ", -"undo" => "desfazer", "Error deleting file." => "Erro eliminando o arquivo.", "_%n folder_::_%n folders_" => array("%n pasta","%n pastas"), "_%n file_::_%n files_" => array("%n arquivo","%n arquivos"), @@ -59,8 +59,6 @@ $TRANSLATIONS = array( "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Chave do App de Encriptação é inválida. Por favor, atualize sua senha de chave privada em suas configurações pessoais para recuperar o acesso a seus arquivos criptografados.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Encriptação foi desabilitada mas seus arquivos continuam encriptados. Por favor vá a suas configurações pessoais para descriptar seus arquivos.", "Your download is being prepared. This might take some time if the files are big." => "Seu download está sendo preparado. Isto pode levar algum tempo se os arquivos forem grandes.", -"Error moving file" => "Erro movendo o arquivo", -"Error" => "Erro", "Name" => "Nome", "Size" => "Tamanho", "Modified" => "Modificado", diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index 3b3c2f842bd..0afb6b50157 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -39,10 +39,10 @@ $TRANSLATIONS = array( "Share" => "Partilhar", "Delete permanently" => "Eliminar permanentemente", "Rename" => "Renomear", +"Error moving file" => "Erro ao mover o ficheiro", +"Error" => "Erro", "Pending" => "Pendente", "Could not rename file" => "Não pôde renomear o ficheiro", -"replaced {new_name} with {old_name}" => "substituido {new_name} por {old_name}", -"undo" => "desfazer", "Error deleting file." => "Erro ao apagar o ficheiro.", "_%n folder_::_%n folders_" => array("%n pasta","%n pastas"), "_%n file_::_%n files_" => array("%n ficheiro","%n ficheiros"), @@ -54,8 +54,6 @@ $TRANSLATIONS = array( "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Chave privada inválida da Aplicação de Encriptação. Por favor atualize a sua senha de chave privada nas definições pessoais, para recuperar o acesso aos seus ficheiros encriptados.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "A encriptação foi desactivada mas os seus ficheiros continuam encriptados. Por favor consulte as suas definições pessoais para desencriptar os ficheiros.", "Your download is being prepared. This might take some time if the files are big." => "O seu download está a ser preparado. Este processo pode demorar algum tempo se os ficheiros forem grandes.", -"Error moving file" => "Erro ao mover o ficheiro", -"Error" => "Erro", "Name" => "Nome", "Size" => "Tamanho", "Modified" => "Modificado", diff --git a/apps/files/l10n/ro.php b/apps/files/l10n/ro.php index 3f192df5b43..6cda724df43 100644 --- a/apps/files/l10n/ro.php +++ b/apps/files/l10n/ro.php @@ -34,10 +34,10 @@ $TRANSLATIONS = array( "Share" => "Partajează", "Delete permanently" => "Șterge permanent", "Rename" => "Redenumește", +"Error moving file" => "Eroare la mutarea fișierului", +"Error" => "Eroare", "Pending" => "În așteptare", "Could not rename file" => "Nu s-a putut redenumi fisierul", -"replaced {new_name} with {old_name}" => "{new_name} a fost înlocuit cu {old_name}", -"undo" => "desfă", "_%n folder_::_%n folders_" => array("%n director","%n directoare","%n directoare"), "_%n file_::_%n files_" => array("%n fișier","%n fișiere","%n fișiere"), "{dirs} and {files}" => "{dirs} și {files}", @@ -46,8 +46,6 @@ $TRANSLATIONS = array( "Your storage is almost full ({usedSpacePercent}%)" => "Spațiul de stocare este aproape plin ({usedSpacePercent}%)", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "criptarea a fost disactivata dar fisierele sant inca criptate.va rog intrati in setarile personale pentru a decripta fisierele", "Your download is being prepared. This might take some time if the files are big." => "Se pregătește descărcarea. Aceasta poate dura ceva timp dacă fișierele sunt mari.", -"Error moving file" => "Eroare la mutarea fișierului", -"Error" => "Eroare", "Name" => "Nume", "Size" => "Mărime", "Modified" => "Modificat", diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index ac958e5dfd3..17f06c6a200 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -43,10 +43,10 @@ $TRANSLATIONS = array( "Share" => "Открыть доступ", "Delete permanently" => "Удалить окончательно", "Rename" => "Переименовать", +"Error moving file" => "Ошибка при перемещении файла", +"Error" => "Ошибка", "Pending" => "Ожидание", "Could not rename file" => "Не удалось переименовать файл", -"replaced {new_name} with {old_name}" => "заменено {new_name} на {old_name}", -"undo" => "отмена", "Error deleting file." => "Ошибка при удалении файла.", "_%n folder_::_%n folders_" => array("%n каталог","%n каталога","%n каталогов"), "_%n file_::_%n files_" => array("%n файл","%n файла","%n файлов"), @@ -59,8 +59,6 @@ $TRANSLATIONS = array( "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Закрытый ключ приложения шифрования недействителен. Обновите закрытый ключ в личных настройках, чтобы восстановить доступ к зашифрованным файлам.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Шифрование было отключено, но ваши файлы остались зашифрованными. Зайдите на страницу личных настроек для того, чтобы расшифровать их.", "Your download is being prepared. This might take some time if the files are big." => "Идёт подготовка к скачиванию. Это может занять некоторое время, если файлы большого размера.", -"Error moving file" => "Ошибка при перемещении файла", -"Error" => "Ошибка", "Name" => "Имя", "Size" => "Размер", "Modified" => "Дата изменения", diff --git a/apps/files/l10n/si_LK.php b/apps/files/l10n/si_LK.php index 44decfef1b0..a2809ee2f5d 100644 --- a/apps/files/l10n/si_LK.php +++ b/apps/files/l10n/si_LK.php @@ -12,11 +12,10 @@ $TRANSLATIONS = array( "File upload is in progress. Leaving the page now will cancel the upload." => "උඩුගතකිරීමක් සිදුවේ. පිටුව හැර යාමෙන් එය නැවතෙනු ඇත", "Share" => "බෙදා හදා ගන්න", "Rename" => "නැවත නම් කරන්න", -"undo" => "නිෂ්ප්‍රභ කරන්න", +"Error" => "දෝෂයක්", "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), -"Error" => "දෝෂයක්", "Name" => "නම", "Size" => "ප්‍රමාණය", "Modified" => "වෙනස් කළ", diff --git a/apps/files/l10n/sk_SK.php b/apps/files/l10n/sk_SK.php index e80ca0186cb..95c07afba57 100644 --- a/apps/files/l10n/sk_SK.php +++ b/apps/files/l10n/sk_SK.php @@ -39,10 +39,10 @@ $TRANSLATIONS = array( "Share" => "Zdieľať", "Delete permanently" => "Zmazať trvalo", "Rename" => "Premenovať", +"Error moving file" => "Chyba pri presúvaní súboru", +"Error" => "Chyba", "Pending" => "Prebieha", "Could not rename file" => "Nemožno premenovať súbor", -"replaced {new_name} with {old_name}" => "prepísaný {new_name} súborom {old_name}", -"undo" => "vrátiť", "Error deleting file." => "Chyba pri mazaní súboru.", "_%n folder_::_%n folders_" => array("%n priečinok","%n priečinky","%n priečinkov"), "_%n file_::_%n files_" => array("%n súbor","%n súbory","%n súborov"), @@ -54,8 +54,6 @@ $TRANSLATIONS = array( "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Chybný súkromný kľúč na šifrovanie aplikácií. Zaktualizujte si heslo súkromného kľúča v svojom osobnom nastavení, aby ste znovu získali prístup k svojim zašifrovaným súborom.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Šifrovanie bolo zakázané, ale vaše súbory sú stále zašifrované. Prosím, choďte do osobného nastavenia pre dešifrovanie súborov.", "Your download is being prepared. This might take some time if the files are big." => "Vaše sťahovanie sa pripravuje. Ak sú sťahované súbory veľké, môže to chvíľu trvať.", -"Error moving file" => "Chyba pri presúvaní súboru", -"Error" => "Chyba", "Name" => "Názov", "Size" => "Veľkosť", "Modified" => "Upravené", diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index ae54ace12da..fcb358bd7bd 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -43,10 +43,10 @@ $TRANSLATIONS = array( "Share" => "Souporaba", "Delete permanently" => "Izbriši dokončno", "Rename" => "Preimenuj", +"Error moving file" => "Napaka premikanja datoteke", +"Error" => "Napaka", "Pending" => "V čakanju ...", "Could not rename file" => "Ni mogoče preimenovati datoteke", -"replaced {new_name} with {old_name}" => "preimenovano ime {new_name} z imenom {old_name}", -"undo" => "razveljavi", "Error deleting file." => "Napaka brisanja datoteke.", "_%n folder_::_%n folders_" => array("%n mapa","%n mapi","%n mape","%n map"), "_%n file_::_%n files_" => array("%n datoteka","%n datoteki","%n datoteke","%n datotek"), @@ -59,8 +59,6 @@ $TRANSLATIONS = array( "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Ni ustreznega osebnega ključa za program za šifriranje. Posodobite osebni ključ za dostop do šifriranih datotek med nastavitvami.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Šifriranje je onemogočeno, datoteke pa so še vedno šifrirane. Odšifrirajte jih med nastavitvami.", "Your download is being prepared. This might take some time if the files are big." => "Postopek priprave datoteke za prejem je lahko dolgotrajen, kadar je datoteka zelo velika.", -"Error moving file" => "Napaka premikanja datoteke", -"Error" => "Napaka", "Name" => "Ime", "Size" => "Velikost", "Modified" => "Spremenjeno", diff --git a/apps/files/l10n/sq.php b/apps/files/l10n/sq.php index 073f2def624..ade4f769faa 100644 --- a/apps/files/l10n/sq.php +++ b/apps/files/l10n/sq.php @@ -25,9 +25,9 @@ $TRANSLATIONS = array( "Share" => "Ndaj", "Delete permanently" => "Fshi përfundimisht", "Rename" => "Riemëro", +"Error moving file" => "Gabim lëvizjen dokumentave", +"Error" => "Gabim", "Pending" => "Në vijim", -"replaced {new_name} with {old_name}" => "u zëvendësua {new_name} me {old_name}", -"undo" => "anullo", "_%n folder_::_%n folders_" => array("%n dosje","%n dosje"), "_%n file_::_%n files_" => array("%n skedar","%n skedarë"), "{dirs} and {files}" => "{dirs} dhe {files}", @@ -36,8 +36,6 @@ $TRANSLATIONS = array( "Your storage is almost full ({usedSpacePercent}%)" => "Hapsira juaj e arkivimit është pothuajse në fund ({usedSpacePercent}%)", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Kodifikimi u çaktivizua por skedarët tuaj vazhdojnë të jenë të kodifikuar. Ju lutem shkoni tek parametrat personale për të dekodifikuar skedarët tuaj.", "Your download is being prepared. This might take some time if the files are big." => "Shkarkimi juaj është duke u përgatitur. Kjo mund të kërkojë kohë nëse skedarët janë të mëdhenj.", -"Error moving file" => "Gabim lëvizjen dokumentave", -"Error" => "Gabim", "Name" => "Emri", "Size" => "Madhësia", "Modified" => "Ndryshuar", diff --git a/apps/files/l10n/sr.php b/apps/files/l10n/sr.php index 2a1b478b2ae..44669e8167a 100644 --- a/apps/files/l10n/sr.php +++ b/apps/files/l10n/sr.php @@ -21,16 +21,14 @@ $TRANSLATIONS = array( "Share" => "Дели", "Delete permanently" => "Обриши за стално", "Rename" => "Преименуј", +"Error" => "Грешка", "Pending" => "На чекању", -"replaced {new_name} with {old_name}" => "замењено {new_name} са {old_name}", -"undo" => "опозови", "_%n folder_::_%n folders_" => array("","",""), "_%n file_::_%n files_" => array("","",""), "_Uploading %n file_::_Uploading %n files_" => array("","",""), "Your storage is full, files can not be updated or synced anymore!" => "Ваше складиште је пуно. Датотеке више не могу бити ажуриране ни синхронизоване.", "Your storage is almost full ({usedSpacePercent}%)" => "Ваше складиште је скоро па пуно ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Припремам преузимање. Ово може да потраје ако су датотеке велике.", -"Error" => "Грешка", "Name" => "Име", "Size" => "Величина", "Modified" => "Измењено", diff --git a/apps/files/l10n/sr@latin.php b/apps/files/l10n/sr@latin.php index 67bf30d8606..a5c74860f78 100644 --- a/apps/files/l10n/sr@latin.php +++ b/apps/files/l10n/sr@latin.php @@ -8,10 +8,10 @@ $TRANSLATIONS = array( "Files" => "Fajlovi", "Share" => "Podeli", "Rename" => "Preimenij", +"Error" => "Greška", "_%n folder_::_%n folders_" => array("","",""), "_%n file_::_%n files_" => array("","",""), "_Uploading %n file_::_Uploading %n files_" => array("","",""), -"Error" => "Greška", "Name" => "Ime", "Size" => "Veličina", "Modified" => "Zadnja izmena", diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php index fa88a1e966d..314a053cd35 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -37,10 +37,10 @@ $TRANSLATIONS = array( "Share" => "Dela", "Delete permanently" => "Radera permanent", "Rename" => "Byt namn", +"Error moving file" => "Fel uppstod vid flyttning av fil", +"Error" => "Fel", "Pending" => "Väntar", "Could not rename file" => "Kan ej byta filnamn", -"replaced {new_name} with {old_name}" => "ersatt {new_name} med {old_name}", -"undo" => "ångra", "Error deleting file." => "Kunde inte ta bort filen.", "_%n folder_::_%n folders_" => array("%n mapp","%n mappar"), "_%n file_::_%n files_" => array("%n fil","%n filer"), @@ -52,8 +52,6 @@ $TRANSLATIONS = array( "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Ogiltig privat nyckel i krypteringsprogrammet. Vänligen uppdatera lösenordet till din privata nyckel under dina personliga inställningar för att återfå tillgång till dina krypterade filer.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Kryptering inaktiverades men dina filer är fortfarande krypterade. Vänligen gå till sidan för dina personliga inställningar för att dekryptera dina filer.", "Your download is being prepared. This might take some time if the files are big." => "Din nedladdning förbereds. Det kan ta tid om det är stora filer.", -"Error moving file" => "Fel uppstod vid flyttning av fil", -"Error" => "Fel", "Name" => "Namn", "Size" => "Storlek", "Modified" => "Ändrad", diff --git a/apps/files/l10n/ta_LK.php b/apps/files/l10n/ta_LK.php index c0589feecea..257aacf1471 100644 --- a/apps/files/l10n/ta_LK.php +++ b/apps/files/l10n/ta_LK.php @@ -14,13 +14,11 @@ $TRANSLATIONS = array( "{new_name} already exists" => "{new_name} ஏற்கனவே உள்ளது", "Share" => "பகிர்வு", "Rename" => "பெயர்மாற்றம்", +"Error" => "வழு", "Pending" => "நிலுவையிலுள்ள", -"replaced {new_name} with {old_name}" => "{new_name} ஆனது {old_name} இனால் மாற்றப்பட்டது", -"undo" => "முன் செயல் நீக்கம் ", "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), -"Error" => "வழு", "Name" => "பெயர்", "Size" => "அளவு", "Modified" => "மாற்றப்பட்டது", diff --git a/apps/files/l10n/te.php b/apps/files/l10n/te.php index 155e4b5c201..b2cf4c01d8a 100644 --- a/apps/files/l10n/te.php +++ b/apps/files/l10n/te.php @@ -1,10 +1,10 @@ "శాశ్వతంగా తొలగించు", +"Error" => "పొరపాటు", "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), -"Error" => "పొరపాటు", "Name" => "పేరు", "Size" => "పరిమాణం", "Save" => "భద్రపరచు", diff --git a/apps/files/l10n/th_TH.php b/apps/files/l10n/th_TH.php index 110b84cad5e..8f5f15f2a34 100644 --- a/apps/files/l10n/th_TH.php +++ b/apps/files/l10n/th_TH.php @@ -20,16 +20,14 @@ $TRANSLATIONS = array( "{new_name} already exists" => "{new_name} มีอยู่แล้วในระบบ", "Share" => "แชร์", "Rename" => "เปลี่ยนชื่อ", +"Error" => "ข้อผิดพลาด", "Pending" => "อยู่ระหว่างดำเนินการ", -"replaced {new_name} with {old_name}" => "แทนที่ {new_name} ด้วย {old_name} แล้ว", -"undo" => "เลิกทำ", "_%n folder_::_%n folders_" => array(""), "_%n file_::_%n files_" => array(""), "_Uploading %n file_::_Uploading %n files_" => array(""), "Your storage is full, files can not be updated or synced anymore!" => "พื้นที่จัดเก็บข้อมูลของคุณเต็มแล้ว ไม่สามารถอัพเดทหรือผสานไฟล์ต่างๆได้อีกต่อไป", "Your storage is almost full ({usedSpacePercent}%)" => "พื้นที่จัดเก็บข้อมูลของคุณใกล้เต็มแล้ว ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "กำลังเตรียมดาวน์โหลดข้อมูล หากไฟล์มีขนาดใหญ่ อาจใช้เวลาสักครู่", -"Error" => "ข้อผิดพลาด", "Name" => "ชื่อ", "Size" => "ขนาด", "Modified" => "แก้ไขแล้ว", diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 095578ce65b..d1eb4bff59c 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -43,10 +43,10 @@ $TRANSLATIONS = array( "Share" => "Paylaş", "Delete permanently" => "Kalıcı olarak sil", "Rename" => "İsim değiştir.", +"Error moving file" => "Dosya taşıma hatası", +"Error" => "Hata", "Pending" => "Bekliyor", "Could not rename file" => "Dosya adlandırılamadı", -"replaced {new_name} with {old_name}" => "{new_name} ismi {old_name} ile değiştirildi", -"undo" => "geri al", "Error deleting file." => "Dosya silinirken hata.", "_%n folder_::_%n folders_" => array("%n dizin","%n dizin"), "_%n file_::_%n files_" => array("%n dosya","%n dosya"), @@ -59,8 +59,6 @@ $TRANSLATIONS = array( "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Şifreleme Uygulaması için geçersiz özel anahtar. Lütfen şifreli dosyalarınıza erişimi tekrar kazanabilmek için kişisel ayarlarınızdan özel anahtar parolanızı güncelleyin.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Şifreleme işlemi durduruldu ancak dosyalarınız şifreli. Dosyalarınızın şifresini kaldırmak için lütfen kişisel ayarlar kısmına geçin.", "Your download is being prepared. This might take some time if the files are big." => "İndirmeniz hazırlanıyor. Dosya büyük ise biraz zaman alabilir.", -"Error moving file" => "Dosya taşıma hatası", -"Error" => "Hata", "Name" => "İsim", "Size" => "Boyut", "Modified" => "Değiştirilme", diff --git a/apps/files/l10n/ug.php b/apps/files/l10n/ug.php index ee188d927ef..13354c153b2 100644 --- a/apps/files/l10n/ug.php +++ b/apps/files/l10n/ug.php @@ -13,12 +13,11 @@ $TRANSLATIONS = array( "Share" => "ھەمبەھىر", "Delete permanently" => "مەڭگۈلۈك ئۆچۈر", "Rename" => "ئات ئۆزگەرت", +"Error" => "خاتالىق", "Pending" => "كۈتۈۋاتىدۇ", -"undo" => "يېنىۋال", "_%n folder_::_%n folders_" => array(""), "_%n file_::_%n files_" => array(""), "_Uploading %n file_::_Uploading %n files_" => array(""), -"Error" => "خاتالىق", "Name" => "ئاتى", "Size" => "چوڭلۇقى", "Modified" => "ئۆزگەرتكەن", diff --git a/apps/files/l10n/uk.php b/apps/files/l10n/uk.php index b74126c446d..905d27c3ee2 100644 --- a/apps/files/l10n/uk.php +++ b/apps/files/l10n/uk.php @@ -26,18 +26,16 @@ $TRANSLATIONS = array( "Share" => "Поділитися", "Delete permanently" => "Видалити назавжди", "Rename" => "Перейменувати", +"Error moving file" => "Помилка переміщення файлу", +"Error" => "Помилка", "Pending" => "Очікування", "Could not rename file" => "Неможливо перейменувати файл", -"replaced {new_name} with {old_name}" => "замінено {new_name} на {old_name}", -"undo" => "відмінити", "_%n folder_::_%n folders_" => array("%n тека","%n тека","%n теки"), "_%n file_::_%n files_" => array("%n файл","%n файлів","%n файли"), "_Uploading %n file_::_Uploading %n files_" => array("","",""), "Your storage is full, files can not be updated or synced anymore!" => "Ваше сховище переповнене, файли більше не можуть бути оновлені або синхронізовані !", "Your storage is almost full ({usedSpacePercent}%)" => "Ваше сховище майже повне ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Ваше завантаження готується. Це може зайняти деякий час, якщо файли завеликі.", -"Error moving file" => "Помилка переміщення файлу", -"Error" => "Помилка", "Name" => "Ім'я", "Size" => "Розмір", "Modified" => "Змінено", diff --git a/apps/files/l10n/ur_PK.php b/apps/files/l10n/ur_PK.php index 3e13a7f516d..b9548acde92 100644 --- a/apps/files/l10n/ur_PK.php +++ b/apps/files/l10n/ur_PK.php @@ -1,8 +1,8 @@ "ایرر", "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), -"_Uploading %n file_::_Uploading %n files_" => array("",""), -"Error" => "ایرر" +"_Uploading %n file_::_Uploading %n files_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/vi.php b/apps/files/l10n/vi.php index 8812bb1b209..55f9bd25942 100644 --- a/apps/files/l10n/vi.php +++ b/apps/files/l10n/vi.php @@ -37,10 +37,10 @@ $TRANSLATIONS = array( "Share" => "Chia sẻ", "Delete permanently" => "Xóa vĩnh vễn", "Rename" => "Sửa tên", +"Error moving file" => "Lỗi di chuyển tập tin", +"Error" => "Lỗi", "Pending" => "Đang chờ", "Could not rename file" => "Không thể đổi tên file", -"replaced {new_name} with {old_name}" => "đã thay thế {new_name} bằng {old_name}", -"undo" => "lùi lại", "Error deleting file." => "Lỗi xóa file,", "_%n folder_::_%n folders_" => array("%n thư mục"), "_%n file_::_%n files_" => array("%n tập tin"), @@ -51,8 +51,6 @@ $TRANSLATIONS = array( "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Ứng dụng mã hóa đã được kích hoạt nhưng bạn chưa khởi tạo khóa. Vui lòng đăng xuất ra và đăng nhập lại", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Mã hóa đã bị vô hiệu nhưng những tập tin của bạn vẫn được mã hóa. Vui lòng vào phần thiết lập cá nhân để giải mã chúng.", "Your download is being prepared. This might take some time if the files are big." => "Your download is being prepared. This might take some time if the files are big.", -"Error moving file" => "Lỗi di chuyển tập tin", -"Error" => "Lỗi", "Name" => "Tên", "Size" => "Kích cỡ", "Modified" => "Thay đổi", diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php index 87f8138697e..068f97c1ddf 100644 --- a/apps/files/l10n/zh_CN.php +++ b/apps/files/l10n/zh_CN.php @@ -39,10 +39,10 @@ $TRANSLATIONS = array( "Share" => "分享", "Delete permanently" => "永久删除", "Rename" => "重命名", +"Error moving file" => "移动文件错误", +"Error" => "错误", "Pending" => "等待", "Could not rename file" => "不能重命名文件", -"replaced {new_name} with {old_name}" => "已将 {old_name}替换成 {new_name}", -"undo" => "撤销", "Error deleting file." => "删除文件出错。", "_%n folder_::_%n folders_" => array("%n 文件夹"), "_%n file_::_%n files_" => array("%n个文件"), @@ -54,8 +54,6 @@ $TRANSLATIONS = array( "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "无效的私有密钥。请到您的个人配置里去更新私有密钥,来恢复对加密文件的访问。", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "加密是被禁用的,但是您的文件还是被加密了。请到您的个人配置里设置文件加密选项。", "Your download is being prepared. This might take some time if the files are big." => "下载正在准备中。如果文件较大可能会花费一些时间。", -"Error moving file" => "移动文件错误", -"Error" => "错误", "Name" => "名称", "Size" => "大小", "Modified" => "修改日期", diff --git a/apps/files/l10n/zh_HK.php b/apps/files/l10n/zh_HK.php index 4885500ce43..eaa32cd537a 100644 --- a/apps/files/l10n/zh_HK.php +++ b/apps/files/l10n/zh_HK.php @@ -2,10 +2,10 @@ $TRANSLATIONS = array( "Files" => "文件", "Share" => "分享", +"Error" => "錯誤", "_%n folder_::_%n folders_" => array(""), "_%n file_::_%n files_" => array(""), "_Uploading %n file_::_Uploading %n files_" => array(""), -"Error" => "錯誤", "Name" => "名稱", "Upload" => "上傳", "Save" => "儲存", diff --git a/apps/files/l10n/zh_TW.php b/apps/files/l10n/zh_TW.php index caf8b184a35..154efd563fd 100644 --- a/apps/files/l10n/zh_TW.php +++ b/apps/files/l10n/zh_TW.php @@ -37,10 +37,10 @@ $TRANSLATIONS = array( "Share" => "分享", "Delete permanently" => "永久刪除", "Rename" => "重新命名", +"Error moving file" => "移動檔案失敗", +"Error" => "錯誤", "Pending" => "等候中", "Could not rename file" => "無法重新命名", -"replaced {new_name} with {old_name}" => "使用 {new_name} 取代 {old_name}", -"undo" => "復原", "_%n folder_::_%n folders_" => array("%n 個資料夾"), "_%n file_::_%n files_" => array("%n 個檔案"), "{dirs} and {files}" => "{dirs} 和 {files}", @@ -51,8 +51,6 @@ $TRANSLATIONS = array( "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "無效的檔案加密私鑰,請在個人設定中更新您的私鑰密語以存取加密的檔案。", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "加密已經被停用,但是您的舊檔案還是處於已加密的狀態,請前往個人設定以解密這些檔案。", "Your download is being prepared. This might take some time if the files are big." => "正在準備您的下載,若您的檔案較大,將會需要更多時間。", -"Error moving file" => "移動檔案失敗", -"Error" => "錯誤", "Name" => "名稱", "Size" => "大小", "Modified" => "修改時間", diff --git a/apps/files_external/l10n/sl.php b/apps/files_external/l10n/sl.php index 9d1970064e8..d02b8f499d6 100644 --- a/apps/files_external/l10n/sl.php +++ b/apps/files_external/l10n/sl.php @@ -14,7 +14,9 @@ $TRANSLATIONS = array( "External storage" => "Zunanja shramba", "Configuration" => "Nastavitve", "Options" => "Možnosti", +"Available for" => "Na voljo za", "Add storage" => "Dodaj shrambo", +"No user or group" => "Ni uporabnika ali skupine", "All Users" => "Vsi uporabniki", "Groups" => "Skupine", "Users" => "Uporabniki", diff --git a/l10n/ach/files.po b/l10n/ach/files.po index 58c50d3e193..2ec8af4d0e2 100644 --- a/l10n/ach/files.po +++ b/l10n/ach/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:55+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" @@ -17,48 +17,48 @@ msgstr "" "Language: ach\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" @@ -68,74 +68,74 @@ msgstr "" msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "" @@ -156,92 +156,92 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 -msgid "Pending" +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" msgstr "" -#: js/filelist.js:456 -msgid "Could not rename file" +#: js/filelist.js:102 js/files.js:552 +msgid "Error" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" +#: js/filelist.js:267 js/filelist.js:1113 +msgid "Pending" msgstr "" -#: js/filelist.js:591 -msgid "undo" +#: js/filelist.js:630 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -278,29 +278,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "" @@ -308,109 +300,109 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "" diff --git a/l10n/ady/files.po b/l10n/ady/files.po index bc32e0306bd..12f59cbc7bc 100644 --- a/l10n/ady/files.po +++ b/l10n/ady/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" "MIME-Version: 1.0\n" @@ -17,48 +17,48 @@ msgstr "" "Language: ady\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" @@ -68,74 +68,74 @@ msgstr "" msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "" @@ -156,92 +156,92 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 -msgid "Pending" +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" msgstr "" -#: js/filelist.js:456 -msgid "Could not rename file" +#: js/filelist.js:102 js/files.js:552 +msgid "Error" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" +#: js/filelist.js:267 js/filelist.js:1113 +msgid "Pending" msgstr "" -#: js/filelist.js:591 -msgid "undo" +#: js/filelist.js:630 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -278,29 +278,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "" @@ -308,109 +300,109 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "" diff --git a/l10n/af/files.po b/l10n/af/files.po index 2175656e181..e56f84e1091 100644 --- a/l10n/af/files.po +++ b/l10n/af/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" @@ -17,48 +17,48 @@ msgstr "" "Language: af\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" @@ -68,74 +68,74 @@ msgstr "" msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "" @@ -156,92 +156,92 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 -msgid "Pending" +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" msgstr "" -#: js/filelist.js:456 -msgid "Could not rename file" +#: js/filelist.js:102 js/files.js:552 +msgid "Error" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" +#: js/filelist.js:267 js/filelist.js:1113 +msgid "Pending" msgstr "" -#: js/filelist.js:591 -msgid "undo" +#: js/filelist.js:630 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -278,29 +278,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "" @@ -308,109 +300,109 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "" diff --git a/l10n/af_ZA/files.po b/l10n/af_ZA/files.po index 9ab990fa95f..24833c8a10e 100644 --- a/l10n/af_ZA/files.po +++ b/l10n/af_ZA/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -17,48 +17,48 @@ msgstr "" "Language: af_ZA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" @@ -68,74 +68,74 @@ msgstr "" msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "" @@ -156,92 +156,92 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 -msgid "Pending" +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" msgstr "" -#: js/filelist.js:456 -msgid "Could not rename file" +#: js/filelist.js:102 js/files.js:552 +msgid "Error" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" +#: js/filelist.js:267 js/filelist.js:1113 +msgid "Pending" msgstr "" -#: js/filelist.js:591 -msgid "undo" +#: js/filelist.js:630 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -278,29 +278,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "" @@ -308,109 +300,109 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "" diff --git a/l10n/ak/files.po b/l10n/ak/files.po index 639ada15a23..73d266f53a1 100644 --- a/l10n/ak/files.po +++ b/l10n/ak/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" @@ -17,48 +17,48 @@ msgstr "" "Language: ak\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" @@ -68,74 +68,74 @@ msgstr "" msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "" @@ -156,92 +156,92 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 -msgid "Pending" +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" msgstr "" -#: js/filelist.js:456 -msgid "Could not rename file" +#: js/filelist.js:102 js/files.js:552 +msgid "Error" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" +#: js/filelist.js:267 js/filelist.js:1113 +msgid "Pending" msgstr "" -#: js/filelist.js:591 -msgid "undo" +#: js/filelist.js:630 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -278,29 +278,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "" @@ -308,109 +300,109 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "" diff --git a/l10n/am_ET/files.po b/l10n/am_ET/files.po index e301286aeef..22104ecccff 100644 --- a/l10n/am_ET/files.po +++ b/l10n/am_ET/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-25 09:38+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -63,12 +63,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" @@ -80,62 +80,62 @@ msgstr "" msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "" @@ -169,79 +169,79 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 -msgid "Pending" +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" msgstr "" -#: js/filelist.js:456 -msgid "Could not rename file" +#: js/filelist.js:102 js/files.js:552 +msgid "Error" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" +#: js/filelist.js:267 js/filelist.js:1113 +msgid "Pending" msgstr "" -#: js/filelist.js:591 -msgid "undo" +#: js/filelist.js:630 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -278,29 +278,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "" @@ -308,109 +300,109 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 03c7ac1650d..e26fbcba883 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: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "اسم غير صحيح , الرموز '\\', '/', '<', '>', ':', '\"', '|', '?' و \"*\" غير مسموح استخدامها" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -65,12 +65,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" @@ -82,62 +82,62 @@ msgstr "" msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "غير قادر على تحميل المجلد" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "علامة غير صالحة" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "لم يتم رفع أي ملف , خطأ غير معروف" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "تم ترفيع الملفات بنجاح." -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "حجم الملف المرفوع تجاوز قيمة upload_max_filesize الموجودة في ملف php.ini " -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "حجم الملف الذي تريد ترفيعه أعلى مما MAX_FILE_SIZE يسمح به في واجهة ال HTML." -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "تم ترفيع جزء من الملفات الذي تريد ترفيعها فقط" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "لم يتم ترفيع أي من الملفات" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "المجلد المؤقت غير موجود" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "خطأ في الكتابة على القرص الصلب" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "لا يوجد مساحة تخزينية كافية" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "*فشلت علمية الرفع. تعذر إيجاد الملف الذي تم رفعه.\n*فشلت علمية التحميل. تعذر إيجاد الملف الذي تم تحميله." -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "فشلت عملية الرفع. تعذر الحصول على معلومات الملف." -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "مسار غير صحيح." @@ -171,63 +171,63 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "عملية رفع الملفات قيد التنفيذ. اغلاق الصفحة سوف يلغي عملية رفع الملفات." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} موجود مسبقا" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "شارك" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "حذف بشكل دائم" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "إعادة تسميه" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "حدث خطأ أثناء نقل الملف" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "خطأ" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "قيد الانتظار" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "استبدل {new_name} بـ {old_name}" - -#: js/filelist.js:591 -msgid "undo" -msgstr "تراجع" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "لا يوجد مجلدات %n" @@ -237,7 +237,7 @@ msgstr[3] "عدد قليل من مجلدات %n" msgstr[4] "عدد كبير من مجلدات %n" msgstr[5] "مجلدات %n" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "لا يوجد ملفات %n" @@ -247,11 +247,11 @@ msgstr[3] "قليل من ملفات %n" msgstr[4] "الكثير من ملفات %n" msgstr[5] " ملفات %n" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "{dirs} و {files}" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "لا يوجد ملفات %n لتحميلها" @@ -292,29 +292,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "تم تعطيل التشفير لكن ملفاتك لا تزال مشفرة. فضلا اذهب إلى الإعدادات الشخصية لإزالة التشفير عن ملفاتك." -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "جاري تجهيز عملية التحميل. قد تستغرق بعض الوقت اذا كان حجم الملفات كبير." -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "حدث خطأ أثناء نقل الملف" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "خطأ" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "اسم" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "حجم" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "معدل" @@ -322,109 +314,109 @@ msgstr "معدل" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "%s لا يمكن إعادة تسميته. " -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "رفع" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "التعامل مع الملف" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "الحد الأقصى لحجم الملفات التي يمكن رفعها" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "الحد الأقصى المسموح به" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "اجباري للسماح بالتحميل المتعدد للمجلدات والملفات" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "تفعيل خاصية تحميل ملفات ZIP" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 = غير محدود" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "الحد الأقصى المسموح به لملفات ZIP" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "حفظ" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "جديد" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "ملف" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "مجلد جديد" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "مجلد" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "من رابط" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "حذف الملفات" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "إلغاء رفع الملفات" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "لا يوجد شيء هنا. إرفع بعض الملفات!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "تحميل" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "إلغاء" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "حجم الترفيع أعلى من المسموح" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "حجم الملفات التي تريد ترفيعها أعلى من المسموح على الخادم." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "يرجى الانتظار , جاري فحص الملفات ." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "الفحص الحالي" diff --git a/l10n/ar/files_external.po b/l10n/ar/files_external.po index 6fde783a1e5..a12496b73ef 100644 --- a/l10n/ar/files_external.po +++ b/l10n/ar/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05: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/az/files.po b/l10n/az/files.po index 907c50809cf..8d82454375a 100644 --- a/l10n/az/files.po +++ b/l10n/az/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" @@ -17,48 +17,48 @@ msgstr "" "Language: az\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" @@ -68,74 +68,74 @@ msgstr "" msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "" @@ -156,92 +156,92 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 -msgid "Pending" +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" msgstr "" -#: js/filelist.js:456 -msgid "Could not rename file" +#: js/filelist.js:102 js/files.js:552 +msgid "Error" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" +#: js/filelist.js:267 js/filelist.js:1113 +msgid "Pending" msgstr "" -#: js/filelist.js:591 -msgid "undo" +#: js/filelist.js:630 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -278,29 +278,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "" @@ -308,109 +300,109 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "" diff --git a/l10n/be/files.po b/l10n/be/files.po index a2a5ebaa16b..66801d9d684 100644 --- a/l10n/be/files.po +++ b/l10n/be/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -17,48 +17,48 @@ msgstr "" "Language: be\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" @@ -68,74 +68,74 @@ msgstr "" msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "" @@ -156,76 +156,76 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 -msgid "Pending" +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" msgstr "" -#: js/filelist.js:456 -msgid "Could not rename file" -msgstr "" +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Памылка" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" +#: js/filelist.js:267 js/filelist.js:1113 +msgid "Pending" msgstr "" -#: js/filelist.js:591 -msgid "undo" +#: js/filelist.js:630 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" @@ -233,7 +233,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -241,11 +241,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -284,29 +284,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "Памылка" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "" @@ -314,109 +306,109 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 6d6412edeed..d5beae81b19 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -63,12 +63,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" @@ -80,62 +80,62 @@ msgstr "" msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "Файлът е качен успешно" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Файлът който се опитвате да качите надвишава стойностите в MAX_FILE_SIZE в HTML формата." -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "Файлът е качен частично" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "Фахлът не бе качен" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Липсва временна папка" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "Възникна проблем при запис в диска" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "Невалидна директория." @@ -169,79 +169,79 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Споделяне" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "Изтриване завинаги" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "Преименуване" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Грешка" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "Чакащо" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "" - -#: js/filelist.js:591 -msgid "undo" -msgstr "възтановяване" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -278,29 +278,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "Грешка" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Име" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Размер" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Променено" @@ -308,109 +300,109 @@ msgstr "Променено" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Качване" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "Максимален размер за качване" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "Ползвайте 0 за без ограничения" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Запис" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Ново" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "Текстов файл" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "Нова папка" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "Папка" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "Спри качването" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Няма нищо тук. Качете нещо." -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Изтегляне" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Изтриване" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Файлът който сте избрали за качване е прекалено голям" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Файловете които се опитвате да качите са по-големи от позволеното за сървъра." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Файловете се претърсват, изчакайте." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "" diff --git a/l10n/bg_BG/files_external.po b/l10n/bg_BG/files_external.po index f95a863c585..89bf79299d4 100644 --- a/l10n/bg_BG/files_external.po +++ b/l10n/bg_BG/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:30+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 43c3d26d9a4..3d85042f659 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: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "নামটি সঠিক নয়, '\\', '/', '<', '>', ':', '\"', '|', '?' এবং '*' অনুমোদিত নয়।" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -63,12 +63,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" @@ -80,62 +80,62 @@ msgstr "" msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "কোন ফাইল আপলোড করা হয় নি। সমস্যার কারণটি অজ্ঞাত।" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "কোন সমস্যা হয় নি, ফাইল আপলোড সুসম্পন্ন হয়েছে।" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "আপলোড করা ফাইলটি php.ini তে বর্ণিত upload_max_filesize নির্দেশিত আয়তন অতিক্রম করছেঃ" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "আপলোড করা ফাইলটি HTML ফর্মে উল্লিখিত MAX_FILE_SIZE নির্ধারিত ফাইলের সর্বোচ্চ আকার অতিক্রম করতে চলেছে " -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "আপলোড করা ফাইলটি আংশিক আপলোড করা হয়েছে" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "কোন ফাইল আপলোড করা হয় নি" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "অস্থায়ী ফোল্ডারটি হারানো গিয়েছে" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "ডিস্কে লিখতে ব্যর্থ" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "ভুল ডিরেক্টরি" @@ -169,79 +169,79 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ফাইল আপলোড চলমান। এই পৃষ্ঠা পরিত্যাগ করলে আপলোড বাতিল করা হবে।" -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} টি বিদ্যমান" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "ভাগাভাগি কর" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "পূনঃনামকরণ" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "সমস্যা" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "মুলতুবি" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "{new_name} কে {old_name} নামে প্রতিস্থাপন করা হয়েছে" - -#: js/filelist.js:591 -msgid "undo" -msgstr "ক্রিয়া প্রত্যাহার" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -278,29 +278,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "সমস্যা" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "রাম" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "আকার" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "পরিবর্তিত" @@ -308,109 +300,109 @@ msgstr "পরিবর্তিত" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "আপলোড" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "ফাইল হ্যার্ডলিং" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "আপলোডের সর্বোচ্চ আকার" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "অনুমোদিত সর্বোচ্চ আকার" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "একাধিক ফাইল এবং ফোল্ডার ডাউনলোড করার জন্য আবশ্যক।" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "ZIP ডাউনলোড সক্রিয় কর" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "০ এর অর্থ অসীম" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "ZIP ফাইলের ইনপুটের সর্বোচ্চ আকার" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "সংরক্ষণ" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "নতুন" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "টেক্সট ফাইল" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "ফোল্ডার" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr " লিংক থেকে" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "আপলোড বাতিল কর" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "এখানে কিছুই নেই। কিছু আপলোড করুন !" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "ডাউনলোড" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "মুছে" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "আপলোডের আকারটি অনেক বড়" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "আপনি এই সার্ভারে আপলোড করার জন্য অনুমোদিত ফাইলের সর্বোচ্চ আকারের চেয়ে বৃহদাকার ফাইল আপলোড করার চেষ্টা করছেন " -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "ফাইলগুলো স্ক্যান করা হচ্ছে, দয়া করে অপেক্ষা করুন।" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "বর্তমান স্ক্যানিং" diff --git a/l10n/bs/files.po b/l10n/bs/files.po index 09ae4d496d7..194ec79a386 100644 --- a/l10n/bs/files.po +++ b/l10n/bs/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -63,12 +63,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" @@ -80,62 +80,62 @@ msgstr "" msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "" @@ -169,81 +169,81 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Podijeli" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 -msgid "Pending" +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" msgstr "" -#: js/filelist.js:456 -msgid "Could not rename file" +#: js/filelist.js:102 js/files.js:552 +msgid "Error" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" +#: js/filelist.js:267 js/filelist.js:1113 +msgid "Pending" msgstr "" -#: js/filelist.js:591 -msgid "undo" +#: js/filelist.js:630 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -281,29 +281,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Ime" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Veličina" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "" @@ -311,109 +303,109 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Spasi" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "Nova fascikla" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "Fasikla" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index f504332b2d6..058d688ffe8 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -46,7 +46,7 @@ msgid "" "allowed." msgstr "El nóm no és vàlid, '\\', '/', '<', '>', ':', '\"', '|', '?' i '*' no estan permesos." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "La carpeta de destí s'ha mogut o eliminat." @@ -67,12 +67,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "El servidor no té autorització per obrir URLs, comproveu la configuració del servidor" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "S'ha produït un error en baixar %s a %s" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "S'ha produït un error en crear el fitxer" @@ -84,62 +84,62 @@ msgstr "El nom de la carpeta no pot ser buit." msgid "Error when creating the folder" msgstr "S'ha produït un error en crear la carpeta" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "No es pot establir la carpeta de pujada." -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "Testimoni no vàlid" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "No s'ha carregat cap fitxer. Error desconegut" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "No hi ha errors, el fitxer s'ha carregat correctament" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "L’arxiu que voleu carregar supera el màxim definit en la directiva upload_max_filesize del php.ini:" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "El fitxer carregat supera la directiva MAX_FILE_SIZE especificada al formulari HTML" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "El fitxer només s'ha carregat parcialment" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "No s'ha carregat cap fitxer" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Falta un fitxer temporal" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "Ha fallat en escriure al disc" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "No hi ha prou espai disponible" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "La pujada ha fallat. El fitxer pujat no s'ha trobat." -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "La pujada ha fallat. No s'ha pogut obtenir informació del fitxer." -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "Directori no vàlid." @@ -173,79 +173,79 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·larà." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "L'URL no pot ser buit" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "A la carpeta inici 'Compartit' és un nom de fitxer reservat" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} ja existeix" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "No s'ha pogut crear el fitxer" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "No s'ha pogut crear la carpeta" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "Error en obtenir la URL" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Comparteix" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "Esborra permanentment" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "Reanomena" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "Error en moure el fitxer" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Error" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "Pendent" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "No es pot canviar el nom de fitxer" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "s'ha substituït {old_name} per {new_name}" - -#: js/filelist.js:591 -msgid "undo" -msgstr "desfés" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "Error en esborrar el fitxer." -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n carpeta" msgstr[1] "%n carpetes" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fitxer" msgstr[1] "%n fitxers" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "{dirs} i {files}" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Pujant %n fitxer" @@ -282,29 +282,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "L'encriptació s'ha desactivat però els vostres fitxers segueixen encriptats. Aneu a la vostra configuració personal per desencriptar els vostres fitxers." -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "S'està preparant la baixada. Pot trigar una estona si els fitxers són grans." -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "Error en moure el fitxer" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "Error" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Nom" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Mida" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Modificat" @@ -312,109 +304,109 @@ msgstr "Modificat" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Nom de carpeta no vàlid. L'ús de 'Shared' és reservat" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "%s no es pot canviar el nom" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Puja" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "Gestió de fitxers" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "Mida màxima de pujada" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "màxim possible:" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "Necessari per fitxers múltiples i baixada de carpetes" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "Activa la baixada ZIP" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 és sense límit" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "Mida màxima d'entrada per fitxers ZIP" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Desa" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Nou" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "Nou fitxer de text" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "Fitxer de text" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "Carpeta nova" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "Carpeta" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "Des d'enllaç" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "Fitxers esborrats" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "Cancel·la la pujada" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "No teniu permisos per a pujar o crear els fitxers aquí" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Res per aquí. Pugeu alguna cosa!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Baixa" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Esborra" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "La pujada és massa gran" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Els fitxers que esteu intentant pujar excedeixen la mida màxima de pujada del servidor" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "S'estan escanejant els fitxers, espereu" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Actualment escanejant" diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index 558b67c72f4..61d5ecf6948 100644 --- a/l10n/ca/files_external.po +++ b/l10n/ca/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:30+0000\n" "Last-Translator: I Robot\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 cdc38895bf0..b50ebe55d7e 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" -"Last-Translator: pstast \n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" @@ -50,7 +50,7 @@ msgid "" "allowed." msgstr "Neplatný název, znaky '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nejsou povoleny." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Cílová složka byla přesunuta nebo smazána." @@ -71,12 +71,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Server není oprávněn otevírat adresy URL. Ověřte, prosím, konfiguraci serveru." -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Chyba při stahování %s do %s" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "Chyba při vytváření souboru" @@ -88,62 +88,62 @@ msgstr "Název složky nemůže být prázdný." msgid "Error when creating the folder" msgstr "Chyba při vytváření složky" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "Nelze nastavit adresář pro nahrané soubory." -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "Neplatný token" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "Žádný soubor nebyl odeslán. Neznámá chyba" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "Soubor byl odeslán úspěšně" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Odesílaný soubor přesahuje velikost upload_max_filesize povolenou v php.ini:" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Odeslaný soubor přesáhl svou velikostí parametr MAX_FILE_SIZE specifikovaný ve formuláři HTML" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "Soubor byl odeslán pouze částečně" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "Žádný soubor nebyl odeslán" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Chybí adresář pro dočasné soubory" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "Zápis na disk selhal" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "Nedostatek dostupného úložného prostoru" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "Nahrávání selhalo. Nepodařilo se nalézt nahraný soubor." -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "Nahrávání selhalo. Nepodařilo se získat informace o souboru." -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "Neplatný adresář" @@ -177,81 +177,81 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Probíhá odesílání souboru. Opuštění stránky způsobí zrušení nahrávání." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "URL nemůže zůstat prázdná" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "V osobní složce je název 'Shared' rezervovaný" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} již existuje" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "Nepodařilo se vytvořit soubor" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "Nepodařilo se vytvořit složku" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "Chyba při načítání URL" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Sdílet" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "Trvale odstranit" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "Přejmenovat" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "Chyba při přesunu souboru" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Chyba" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "Nevyřízené" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "Nepodařilo se přejmenovat soubor" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "nahrazeno {new_name} s {old_name}" - -#: js/filelist.js:591 -msgid "undo" -msgstr "vrátit zpět" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "Chyba při mazání souboru." -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n složka" msgstr[1] "%n složky" msgstr[2] "%n složek" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n soubor" msgstr[1] "%n soubory" msgstr[2] "%n souborů" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "{dirs} a {files}" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Nahrávám %n soubor" @@ -289,29 +289,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "Šifrování bylo vypnuto, vaše soubory jsou však stále zašifrované. Běžte prosím do osobního nastavení, kde soubory odšifrujete." -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Vaše soubory ke stažení se připravují. Pokud jsou velké, může to chvíli trvat." -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "Chyba při přesunu souboru" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "Chyba" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Název" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Velikost" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Upraveno" @@ -319,109 +311,109 @@ msgstr "Upraveno" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Neplatný název složky. Použití 'Shared' je rezervováno." -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "%s nemůže být přejmenován" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Odeslat" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "Zacházení se soubory" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "Maximální velikost pro odesílání" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "největší možná: " -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "Potřebné pro více-souborové stahování a stahování složek." -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "Povolit ZIP-stahování" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 znamená bez omezení" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "Maximální velikost vstupu pro ZIP soubory" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Uložit" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Nový" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "Nový textový soubor" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "Textový soubor" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "Nová složka" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "Složka" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "Z odkazu" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "Odstraněné soubory" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "Zrušit odesílání" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "Nemáte oprávnění zde nahrávat či vytvářet soubory" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Žádný obsah. Nahrajte něco." -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Stáhnout" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Smazat" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Odesílaný soubor je příliš velký" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Soubory, které se snažíte odeslat, překračují limit velikosti odesílání na tomto serveru." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Soubory se prohledávají, prosím čekejte." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Aktuální prohledávání" diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index 082623d344c..b07a223d18e 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:30+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" diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index f9ca4e11176..c030e6e2758 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: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "Enw annilys, ni chaniateir, '\\', '/', '<', '>', ':', '\"', '|', '?' na '*'." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -63,12 +63,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" @@ -80,62 +80,62 @@ msgstr "" msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "Ni lwythwyd ffeil i fyny. Gwall anhysbys." -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "Does dim gwall, llwythodd y ffeil i fyny'n llwyddiannus" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Mae'r ffeil lwythwyd i fyny'n fwy na chyfarwyddeb upload_max_filesize yn php.ini:" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Mae'r ffeil lwythwyd i fyny'n fwy na chyfarwyddeb MAX_FILE_SIZE bennwyd yn y ffurflen HTML" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "Dim ond yn rhannol y llwythwyd y ffeil i fyny" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "Ni lwythwyd ffeil i fyny" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Plygell dros dro yn eisiau" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "Methwyd ysgrifennu i'r ddisg" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "Dim digon o le storio ar gael" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "Cyfeiriadur annilys." @@ -169,63 +169,63 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Mae ffeiliau'n cael eu llwytho i fyny. Bydd gadael y dudalen hon nawr yn diddymu'r broses." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} yn bodoli'n barod" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Rhannu" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "Dileu'n barhaol" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "Ailenwi" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Gwall" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "I ddod" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "newidiwyd {new_name} yn lle {old_name}" - -#: js/filelist.js:591 -msgid "undo" -msgstr "dadwneud" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" @@ -233,7 +233,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -241,11 +241,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -284,29 +284,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Wrthi'n paratoi i lwytho i lawr. Gall gymryd peth amser os yw'r ffeiliau'n fawr." -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "Gwall" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Enw" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Maint" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Addaswyd" @@ -314,109 +306,109 @@ msgstr "Addaswyd" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Llwytho i fyny" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "Trafod ffeiliau" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "Maint mwyaf llwytho i fyny" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "mwyaf. posib:" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "Angen ar gyfer llwytho mwy nag un ffeil neu blygell i lawr yr un pryd." -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "Galluogi llwytho i lawr ZIP" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 yn ddiderfyn" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "Maint mewnbynnu mwyaf ffeiliau ZIP" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Cadw" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Newydd" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "Ffeil destun" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "Plygell" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "Dolen o" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "Ffeiliau ddilewyd" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "Diddymu llwytho i fyny" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Does dim byd fan hyn. Llwythwch rhywbeth i fyny!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Llwytho i lawr" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Dileu" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Maint llwytho i fyny'n rhy fawr" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Mae'r ffeiliau rydych yn ceisio llwytho i fyny'n fwy na maint mwyaf llwytho ffeiliau i fyny ar y gweinydd hwn." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Arhoswch, mae ffeiliau'n cael eu sganio." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Sganio cyfredol" diff --git a/l10n/da/files.po b/l10n/da/files.po index 16d923ac96e..e997c9ee8e2 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" @@ -47,7 +47,7 @@ msgid "" "allowed." msgstr "Ugyldigt navn, '\\', '/', '<', '>', ':' | '?', '\"', '', og '*' er ikke tilladt." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Mappen er blevet slettet eller fjernet." @@ -68,12 +68,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Server har ikke tilladelse til at åbne URL'er. Kontroller venligst serverens indstillinger" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Fejl ved hentning af %s til %s" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "Fejl ved oprettelse af fil" @@ -85,62 +85,62 @@ msgstr "Mappenavnet kan ikke være tomt." msgid "Error when creating the folder" msgstr "Fejl ved oprettelse af mappen" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "Ude af stand til at vælge upload mappe." -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "Ugyldig Token " -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "Ingen fil blev uploadet. Ukendt fejl." -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "Der skete ingen fejl, filen blev succesfuldt uploadet" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Den uploadede fil overstiger MAX_FILE_SIZE indstilingen, som specificeret i HTML formularen" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "Filen blev kun delvist uploadet." -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "Ingen fil uploadet" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Manglende midlertidig mappe." -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "Fejl ved skrivning til disk." -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "Der er ikke nok plads til rådlighed" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "Upload fejlede. Kunne ikke finde den uploadede fil." -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "Upload fejlede. Kunne ikke hente filinformation." -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "Ugyldig mappe." @@ -174,79 +174,79 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "URL kan ikke være tom" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Navnet 'Shared' er reserveret i hjemmemappen." -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} eksisterer allerede" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "Kunne ikke oprette fil" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "Kunne ikke oprette mappe" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "Fejl ved URL" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Del" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "Slet permanent" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "Omdøb" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "Fejl ved flytning af fil" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Fejl" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "Afventer" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "Kunne ikke omdøbe filen" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "erstattede {new_name} med {old_name}" - -#: js/filelist.js:591 -msgid "undo" -msgstr "fortryd" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "Fejl ved sletnign af fil." -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mappe" msgstr[1] "%n mapper" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fil" msgstr[1] "%n filer" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "{dirs} og {files}" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Uploader %n fil" @@ -283,29 +283,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "Krypteringen blev deaktiveret, men dine filer er stadig krypteret. Gå venligst til dine personlige indstillinger for at dekryptere dine filer. " -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Dit download forberedes. Dette kan tage lidt tid ved større filer." -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "Fejl ved flytning af fil" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "Fejl" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Navn" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Størrelse" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Ændret" @@ -313,109 +305,109 @@ msgstr "Ændret" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Ugyldig mappenavn. 'Shared' er reserveret." -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "%s kunne ikke omdøbes" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Upload" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "Filhåndtering" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "Maksimal upload-størrelse" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "max. mulige: " -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "Nødvendigt for at kunne downloade mapper og flere filer ad gangen." -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "Tillad ZIP-download" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 er ubegrænset" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "Maksimal størrelse på ZIP filer" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Gem" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Ny" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "Ny tekstfil" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "Tekstfil" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "Ny Mappe" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "Mappe" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "Fra link" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "Slettede filer" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "Fortryd upload" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "Du har ikke tilladelse til at uploade eller oprette filer her" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Her er tomt. Upload noget!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Download" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Slet" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Upload er for stor" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Filerne, du prøver at uploade, er større end den maksimale størrelse for fil-upload på denne server." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Filerne bliver indlæst, vent venligst." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Indlæser" diff --git a/l10n/da/files_external.po b/l10n/da/files_external.po index e7cb69ede53..c6be8d84f06 100644 --- a/l10n/da/files_external.po +++ b/l10n/da/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05: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 d6ab1aa2101..d27a99c98fc 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" @@ -50,7 +50,7 @@ msgid "" "allowed." msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Der Zielordner wurde verschoben oder gelöscht." @@ -71,12 +71,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Dem Server ist das Öffnen von URLs nicht erlaubt, bitte die Serverkonfiguration prüfen" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Fehler beim Herunterladen von %s nach %s" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "Fehler beim Erstellen der Datei" @@ -88,62 +88,62 @@ msgstr "Der Ordner-Name darf nicht leer sein." msgid "Error when creating the folder" msgstr "Fehler beim Erstellen des Ordners" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "Das Upload-Verzeichnis konnte nicht gesetzt werden." -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "Ungültiges Merkmal" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "Keine Datei hochgeladen. Unbekannter Fehler" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen." -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Die Datei ist größer, als die MAX_FILE_SIZE Direktive erlaubt, die im HTML-Formular spezifiziert ist" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "Die Datei konnte nur teilweise übertragen werden" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "Keine Datei konnte übertragen werden." -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Kein temporärer Ordner vorhanden" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "Fehler beim Schreiben auf die Festplatte" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "Nicht genug Speicher vorhanden." -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "Hochladen fehlgeschlagen. Hochgeladene Datei konnte nicht gefunden werden." -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "Hochladen fehlgeschlagen. Dateiinformationen konnten nicht abgerufen werden." -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "Ungültiges Verzeichnis." @@ -177,79 +177,79 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload abgebrochen." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "Die URL darf nicht leer sein" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Das Benutzerverzeichnis 'Shared' ist ein reservierter Dateiname" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "Die Datei konnte nicht erstellt werden" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "Der Ordner konnte nicht erstellt werden" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "Fehler beim Abrufen der URL" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Teilen" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "Endgültig löschen" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "Fehler beim Verschieben der Datei" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Fehler" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "Ausstehend" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "Die Datei konnte nicht umbenannt werden" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "{old_name} ersetzt durch {new_name}" - -#: js/filelist.js:591 -msgid "undo" -msgstr "rückgängig machen" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "Fehler beim Löschen der Datei." -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n Ordner" msgstr[1] "%n Ordner" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n Datei" msgstr[1] "%n Dateien" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "{dirs} und {files}" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n Datei wird hochgeladen" @@ -286,29 +286,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "Die Verschlüsselung wurde deaktiviert, jedoch sind Deine Dateien nach wie vor verschlüsselt. Bitte gehe zu Deinen persönlichen Einstellungen, um Deine Dateien zu entschlüsseln." -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Dein Download wird vorbereitet. Dies kann bei größeren Dateien etwas dauern." -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "Fehler beim Verschieben der Datei" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "Fehler" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Name" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Größe" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Geändert" @@ -316,109 +308,109 @@ msgstr "Geändert" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Ungültiger Verzeichnisname. Die Nutzung von 'Shared' ist reserviert." -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "%s konnte nicht umbenannt werden" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Hochladen" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "Dateibehandlung" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "Maximale Upload-Größe" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "maximal möglich:" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "Für Mehrfachdatei- und Ordnerdownloads benötigt:" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "ZIP-Download aktivieren" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 bedeutet unbegrenzt" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "Maximale Größe für ZIP-Dateien" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Speichern" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Neu" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "Neue Textdatei" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "Textdatei" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "Neuer Ordner" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "Ordner" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "Von einem Link" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "Gelöschte Dateien" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "Du besitzt hier keine Berechtigung, um Dateien hochzuladen oder zu erstellen" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Alles leer. Lade etwas hoch!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Herunterladen" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Löschen" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Der Upload ist zu groß" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Dateien werden gescannt, bitte warten." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Scanne" diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index 29cb88a8322..5357def2bae 100644 --- a/l10n/de/files_external.po +++ b/l10n/de/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-03 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 06:20+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05: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 b120125988d..dfea3e12a2d 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -11,14 +11,14 @@ # stefanniedermann , 2014 # noxin , 2013 # Mirodin , 2013 -# kabum , 2013 +# kabum , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 11:50+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-03 20:10+0000\n" +"Last-Translator: kabum \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" @@ -60,7 +60,7 @@ msgstr "Du musst zunächst deine Benutzer-E-Mail-Adresse setzen, bevor du Test-E msgid "Send mode" msgstr "Sende-Modus" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "Verschlüsselung" @@ -73,7 +73,7 @@ msgid "Unable to load list from App Store" msgstr "Die Liste der Anwendungen im Store konnte nicht geladen werden." #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Fehler bei der Anmeldung" @@ -135,32 +135,32 @@ msgstr "Der Benutzer konnte nicht aus der Gruppe %s entfernt werden" msgid "Couldn't update app." msgstr "Die App konnte nicht aktualisiert werden." -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "Falsches Passwort" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "Keinen Benutzer übermittelt" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "Bitte gib ein Wiederherstellungspasswort für das Admin-Konto an, da sonst alle Benutzer Daten verloren gehen können" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "Falsches Wiederherstellungspasswort für das Admin-Konto. Bitte überprüfe das Passwort und versuche es erneut." -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "Das Back-End unterstützt die Passwortänderung nicht, aber der Benutzerschlüssel wurde erfolgreich aktualisiert." -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "Passwort konnte nicht geändert werden" @@ -212,7 +212,7 @@ msgstr "Fehler beim Aktualisieren der App" msgid "Error" msgstr "Fehler" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "Aktualisierung durchführen" @@ -293,7 +293,7 @@ msgstr "Es muss ein gültiges Passwort angegeben werden" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Warnung: Das Benutzerverzeichnis für den Benutzer \"{user}\" existiert bereits" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "Deutsch (Persönlich)" @@ -350,7 +350,7 @@ msgstr "Sicherheitswarnung" msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." -msgstr "Du greifst auf %s via HTTP zu. Wir empfehlen Dir dringend, Deinen Server so konfigurieren, das stattdessen HTTPS verlangt wird." +msgstr "Du greifst auf %s via HTTP zu. Wir empfehlen Dir dringend, Deinen Server so konfigurieren, dass stattdessen HTTPS verlangt wird." #: templates/admin.php:64 msgid "" @@ -598,11 +598,11 @@ msgstr "Mehr" msgid "Less" msgstr "Weniger" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "Version" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "-lizenziert von " @@ -673,108 +673,108 @@ msgstr "Erstinstallation erneut durchführen" msgid "You have used %s of the available %s" msgstr "Du verwendest %s der verfügbaren %s" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Passwort" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "Dein Passwort wurde geändert." -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "Passwort konnte nicht geändert werden" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "Aktuelles Passwort" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "Neues Passwort" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "Passwort ändern" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "Vollständiger Name" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "E-Mail" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "Deine E-Mail-Adresse" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Gib eine E-Mail-Adresse an, um eine Wiederherstellung des Passworts zu ermöglichen und Benachrichtigungen zu empfangen" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "Profilbild" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "Neues hochladen" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "Neues aus den Dateien wählen" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "Bild entfernen" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Entweder PNG oder JPG. Im Idealfall quadratisch, aber du kannst es zuschneiden." -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "Dein Avatar wird von Deinem ursprünglichenKonto verwendet." -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Abbrechen" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "Als Profilbild wählen" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "Sprache" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "Hilf bei der Übersetzung" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Verwenden Sie diese Adresse, um via WebDAV auf Ihre Dateien zuzugreifen" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Die Verschlüsselungsanwendung ist nicht länger aktiviert, bitte entschlüsseln Sie alle ihre Daten." -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "Login-Passwort" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "Alle Dateien entschlüsseln" diff --git a/l10n/de_AT/files.po b/l10n/de_AT/files.po index 1cff24b0dea..4aad8f931dd 100644 --- a/l10n/de_AT/files.po +++ b/l10n/de_AT/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -63,12 +63,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" @@ -80,62 +80,62 @@ msgstr "" msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "" @@ -169,79 +169,79 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Freigeben" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 -msgid "Pending" +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" msgstr "" -#: js/filelist.js:456 -msgid "Could not rename file" +#: js/filelist.js:102 js/files.js:552 +msgid "Error" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" +#: js/filelist.js:267 js/filelist.js:1113 +msgid "Pending" msgstr "" -#: js/filelist.js:591 -msgid "undo" +#: js/filelist.js:630 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -278,29 +278,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "" @@ -308,109 +300,109 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Speichern" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Herunterladen" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Löschen" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "" diff --git a/l10n/de_CH/files.po b/l10n/de_CH/files.po index 223375e7fa1..1a7d78b2479 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: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" @@ -51,7 +51,7 @@ msgid "" "allowed." msgstr "Ungültiger Name, «\\», «/», «<», «>», «:», «\"», «|», «?» und «*» sind nicht zulässig." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -72,12 +72,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" @@ -89,62 +89,62 @@ msgstr "" msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "Das Upload-Verzeichnis konnte nicht gesetzt werden." -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "Ungültiges Merkmal" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "Keine Datei hochgeladen. Unbekannter Fehler" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen." -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Die Datei ist grösser, als die MAX_FILE_SIZE Vorgabe erlaubt, die im HTML-Formular spezifiziert ist" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "Die Datei konnte nur teilweise übertragen werden" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "Keine Datei konnte übertragen werden." -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Kein temporärer Ordner vorhanden" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "Fehler beim Schreiben auf die Festplatte" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "Nicht genug Speicher vorhanden." -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "Ungültiges Verzeichnis." @@ -178,79 +178,79 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Teilen" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "Endgültig löschen" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Fehler" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "Ausstehend" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "{old_name} wurde ersetzt durch {new_name}" - -#: js/filelist.js:591 -msgid "undo" -msgstr "rückgängig machen" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "%n Ordner" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "%n Dateien" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n Datei wird hochgeladen" @@ -287,29 +287,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "Die Verschlüsselung wurde deaktiviert, jedoch sind Ihre Dateien nach wie vor verschlüsselt. Bitte gehen Sie zu Ihren persönlichen Einstellungen, um Ihre Dateien zu entschlüsseln." -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Ihr Download wird vorbereitet. Dies kann bei grösseren Dateien etwas dauern." -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "Fehler" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Name" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Grösse" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Geändert" @@ -317,109 +309,109 @@ msgstr "Geändert" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "%s konnte nicht umbenannt werden" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Hochladen" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "Dateibehandlung" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "Maximale Upload-Grösse" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "maximal möglich:" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "Für Mehrfachdatei- und Ordnerdownloads benötigt:" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "ZIP-Download aktivieren" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 bedeutet unbegrenzt" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "Maximale Grösse für ZIP-Dateien" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Speichern" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Neu" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "Textdatei" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "Neues Verzeichnis" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "Ordner" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "Von einem Link" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "Gelöschte Dateien" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Alles leer. Laden Sie etwas hoch!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Herunterladen" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Löschen" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Der Upload ist zu gross" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Die Datei überschreitet die Maximalgrösse für Uploads auf diesem Server." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Dateien werden gescannt, bitte warten." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Scanne" diff --git a/l10n/de_CH/files_external.po b/l10n/de_CH/files_external.po index 95f36685277..85ed7c7d1b8 100644 --- a/l10n/de_CH/files_external.po +++ b/l10n/de_CH/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05: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 5e50b0b468c..87841fc3da6 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" @@ -53,7 +53,7 @@ msgid "" "allowed." msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Der Ziel-Ordner wurde verschoben oder gelöscht." @@ -74,12 +74,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Dem Server ist das Öffnen von URLs nicht erlaubt, bitte die Serverkonfiguration prüfen" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Fehler beim Herunterladen von %s nach %s" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "Fehler beim Erstellen der Datei" @@ -91,62 +91,62 @@ msgstr "Der Ordner-Name darf nicht leer sein." msgid "Error when creating the folder" msgstr "Fehler beim Erstellen des Ordners" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "Das Upload-Verzeichnis konnte nicht gesetzt werden." -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "Ungültiges Merkmal" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "Keine Datei hochgeladen. Unbekannter Fehler" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen." -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Die Datei ist größer, als die MAX_FILE_SIZE Vorgabe erlaubt, die im HTML-Formular spezifiziert ist" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "Die Datei konnte nur teilweise übertragen werden" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "Keine Datei konnte übertragen werden." -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Kein temporärer Ordner vorhanden" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "Fehler beim Schreiben auf die Festplatte" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "Nicht genug Speicher vorhanden." -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "Hochladen fehlgeschlagen. Die hochgeladene Datei konnte nicht gefunden werden." -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "Hochladen fehlgeschlagen. Die Dateiinformationen konnten nicht abgerufen werden." -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "Ungültiges Verzeichnis." @@ -180,79 +180,79 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "Die URL darf nicht leer sein" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Das Benutzerverzeichnis 'Shared' ist ein reservierter Dateiname" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "Die Datei konnte nicht erstellt werden" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "Der Ordner konnte nicht erstellt werden" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "Fehler beim Abrufen der URL" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Teilen" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "Endgültig löschen" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "Fehler beim Verschieben der Datei" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Fehler" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "Ausstehend" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "Die Datei konnte nicht umbenannt werden" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "{old_name} wurde ersetzt durch {new_name}" - -#: js/filelist.js:591 -msgid "undo" -msgstr "rückgängig machen" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "Fehler beim Löschen der Datei." -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n Ordner" msgstr[1] "%n Ordner" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n Datei" msgstr[1] "%n Dateien" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "{dirs} und {files}" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n Datei wird hoch geladen" @@ -289,29 +289,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "Die Verschlüsselung wurde deaktiviert, jedoch sind Ihre Dateien nach wie vor verschlüsselt. Bitte gehen Sie zu Ihren persönlichen Einstellungen, um Ihre Dateien zu entschlüsseln." -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Ihr Download wird vorbereitet. Dies kann bei größeren Dateien etwas dauern." -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "Fehler beim Verschieben der Datei" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "Fehler" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Name" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Größe" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Geändert" @@ -319,109 +311,109 @@ msgstr "Geändert" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Ungültiger Verzeichnisname. Die Nutzung von 'Shared' ist reserviert." -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "%s konnte nicht umbenannt werden" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Hochladen" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "Dateibehandlung" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "Maximale Upload-Größe" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "maximal möglich:" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "Für Mehrfachdatei- und Ordnerdownloads benötigt:" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "ZIP-Download aktivieren" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 bedeutet unbegrenzt" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "Maximale Größe für ZIP-Dateien" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Speichern" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Neu" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "Neue Textdatei" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "Textdatei" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "Neues Ordner" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "Ordner" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "Von einem Link" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "Gelöschte Dateien" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "Sie besitzen hier keine Berechtigung Dateien hochzuladen oder zu erstellen" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Alles leer. Laden Sie etwas hoch!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Herunterladen" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Löschen" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Der Upload ist zu groß" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Dateien werden gescannt, bitte warten." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Scanne" diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index f00b82bc67e..799f68c1df6 100644 --- a/l10n/de_DE/files_external.po +++ b/l10n/de_DE/files_external.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-03 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 06:20+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05: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 2af94421409..1c6c92fdde1 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -11,14 +11,14 @@ # traductor, 2013 # noxin , 2013 # Mirodin , 2013 -# kabum , 2013 +# kabum , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 11:50+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-03 20:10+0000\n" +"Last-Translator: kabum \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" @@ -60,7 +60,7 @@ msgstr "Sie müssen Ihre Benutzer-E-Mail-Adresse setzen, bevor Sie Test-E-Mails msgid "Send mode" msgstr "Sende-Modus" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "Verschlüsselung" @@ -73,7 +73,7 @@ msgid "Unable to load list from App Store" msgstr "Die Liste der Anwendungen im Store konnte nicht geladen werden." #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Authentifizierungs-Fehler" @@ -135,32 +135,32 @@ msgstr "Der Benutzer konnte nicht aus der Gruppe %s entfernt werden" msgid "Couldn't update app." msgstr "Die App konnte nicht aktualisiert werden." -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "Falsches Passwort" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "Keinen Benutzer angegeben" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "Bitte geben Sie ein Wiederherstellungspasswort für das Admin-Konto an, da sonst alle Benutzerdaten verloren gehen können" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "Falsches Wiederherstellungspasswort für das Admin-Konto. Bitte überprüfen Sie das Passwort und versuchen Sie es erneut." -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "Das Back-End unterstützt die Passwortänderung nicht, aber der Benutzerschlüssel wurde erfolgreich aktualisiert." -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "Passwort konnte nicht geändert werden" @@ -212,7 +212,7 @@ msgstr "Es ist ein Fehler während des Updates aufgetreten" msgid "Error" msgstr "Fehler" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "Update durchführen" @@ -293,7 +293,7 @@ msgstr "Es muss ein gültiges Passwort angegeben werden" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Warnung: Das Benutzerverzeichnis für den Benutzer \"{user}\" existiert bereits" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "Deutsch (Förmlich: Sie)" @@ -350,7 +350,7 @@ msgstr "Sicherheitshinweis" msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." -msgstr "Sie greifen auf %s via HTTP zu. Wir empfehlen Ihnen dringend, Ihren Server so konfigurieren, das stattdessen HTTPS verlangt wird." +msgstr "Sie greifen auf %s via HTTP zu. Wir empfehlen Ihnen dringend, Ihren Server so konfigurieren, dass stattdessen HTTPS verlangt wird." #: templates/admin.php:64 msgid "" @@ -598,11 +598,11 @@ msgstr "Mehr" msgid "Less" msgstr "Weniger" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "Version" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "-lizenziert von " @@ -673,108 +673,108 @@ msgstr "Den Einrichtungsassistenten erneut anzeigen" msgid "You have used %s of the available %s" msgstr "Sie verwenden %s der verfügbaren %s" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Passwort" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "Ihr Passwort wurde geändert." -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "Das Passwort konnte nicht geändert werden" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "Aktuelles Passwort" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "Neues Passwort" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "Passwort ändern" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "Vollständiger Name" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "E-Mail" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "Ihre E-Mail-Adresse" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Geben Sie eine E-Mail-Adresse an, um eine Wiederherstellung des Passworts zu ermöglichen und Benachrichtigungen zu empfangen" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "Profilbild" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "Neues hochladen" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "Neues aus Dateien wählen" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "Bild entfernen" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Entweder PNG oder JPG. Im Idealfall quadratisch, aber Sie können es zuschneiden." -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "Ihr Avatar wird von Ihrerem ursprünglichenKonto verwendet." -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Abbrechen" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "Als Profilbild wählen" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "Sprache" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "Helfen Sie bei der Übersetzung" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Verwenden Sie diese Adresse, um via WebDAV auf Ihre Dateien zuzugreifen" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Die Verschlüsselungsanwendung ist nicht länger aktiv, bitte entschlüsseln Sie alle ihre Daten" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "Login-Passwort" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "Alle Dateien entschlüsseln" diff --git a/l10n/el/files.po b/l10n/el/files.po index 086a36cec35..152ba67cc86 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-01 01:55-0400\n" -"PO-Revision-Date: 2014-03-31 16:30+0000\n" -"Last-Translator: pe_ppe \n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -48,7 +48,7 @@ msgid "" "allowed." msgstr "Μη έγκυρο όνομα, '\\', '/', '<', '>', ':', '\"', '|', '?' και '*' δεν επιτρέπονται." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Ο φάκελος προορισμού έχει μετακινηθεί ή διαγραφεί." @@ -69,12 +69,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Ο διακομιστής δεν επιτρέπεται να ανοίγει URL, παρακαλώ ελέγξτε τις ρυθμίσεις του διακομιστή" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Σφάλμα κατά τη λήψη του %s στο %s" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "Σφάλμα κατά τη δημιουργία του αρχείου" @@ -86,62 +86,62 @@ msgstr "Το όνομα φακέλου δεν μπορεί να είναι κε msgid "Error when creating the folder" msgstr "Σφάλμα δημιουργίας φακέλου" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "Αδυναμία ορισμού καταλόγου αποστολής." -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "Μη έγκυρο Token" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "Δεν ανέβηκε κάποιο αρχείο. Άγνωστο σφάλμα" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "Δεν υπάρχει σφάλμα, το αρχείο εστάλει επιτυχώς" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Το αρχείο που εστάλει υπερβαίνει την οδηγία μέγιστου επιτρεπτού μεγέθους \"upload_max_filesize\" του php.ini" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Το ανεβασμένο αρχείο υπερβαίνει το MAX_FILE_SIZE που ορίζεται στην HTML φόρμα" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "Το αρχείο εστάλει μόνο εν μέρει" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "Κανένα αρχείο δεν στάλθηκε" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Λείπει ο προσωρινός φάκελος" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "Αποτυχία εγγραφής στο δίσκο" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "Μη επαρκής διαθέσιμος αποθηκευτικός χώρος" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "Η φόρτωση απέτυχε. Αδυναμία εύρεσης αρχείου προς φόρτωση." -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "Η φόρτωση απέτυχε. Αδυναμία λήψης πληροφοριών αρχείων." -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "Μη έγκυρος φάκελος." @@ -175,27 +175,27 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Το κλείσιμο της σελίδας θα ακυρώσει την αποστολή." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "Η URL δεν πρέπει να είναι κενή" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Στον αρχικό φάκελο το όνομα 'Shared' διατηρείται από το σύστημα" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} υπάρχει ήδη" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "Αδυναμία δημιουργίας αρχείου" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "Αδυναμία δημιουργίας φακέλου" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "Σφάλμα φόρτωσης URL" @@ -211,43 +211,43 @@ msgstr "Μόνιμη διαγραφή" msgid "Rename" msgstr "Μετονομασία" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "Σφάλμα κατά τη μετακίνηση του αρχείου" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Σφάλμα" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "Εκκρεμεί" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "Αδυναμία μετονομασίας αρχείου" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "αντικαταστάθηκε το {new_name} με {old_name}" - -#: js/filelist.js:591 -msgid "undo" -msgstr "αναίρεση" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "Σφάλμα διαγραφής αρχείου." -#: js/filelist.js:687 js/filelist.js:761 js/files.js:694 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n φάκελος" msgstr[1] "%n φάκελοι" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:700 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n αρχείο" msgstr[1] "%n αρχεία" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "{Κατάλογοι αρχείων} και {αρχεία}" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Ανέβασμα %n αρχείου" @@ -284,29 +284,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "Η κρυπτογράφηση απενεργοποιήθηκε, αλλά τα αρχεία σας είναι ακόμα κρυπτογραφημένα. Παρακαλούμε απενεργοποιήσετε την κρυπτογράφηση αρχείων από τις προσωπικές σας ρυθμίσεις" -#: js/files.js:382 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Η λήψη προετοιμάζεται. Αυτό μπορεί να πάρει ώρα εάν τα αρχεία έχουν μεγάλο μέγεθος." -#: js/files.js:613 js/files.js:657 -msgid "Error moving file" -msgstr "Σφάλμα κατά τη μετακίνηση του αρχείου" - -#: js/files.js:613 js/files.js:657 -msgid "Error" -msgstr "Σφάλμα" - -#: js/files.js:675 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Όνομα" -#: js/files.js:676 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Μέγεθος" -#: js/files.js:677 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Τροποποιήθηκε" @@ -314,109 +306,109 @@ msgstr "Τροποποιήθηκε" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Άκυρο όνομα φακέλου. Η χρήση του 'Shared' διατηρείται από το σύστημα." -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "Αδυναμία μετονομασίας του %s" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Μεταφόρτωση" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "Διαχείριση αρχείων" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "Μέγιστο μέγεθος αποστολής" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "μέγιστο δυνατό:" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "Απαραίτητο για κατέβασμα πολλαπλών αρχείων και φακέλων" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "Ενεργοποίηση κατεβάσματος ZIP" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 για απεριόριστο" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "Μέγιστο μέγεθος για αρχεία ZIP" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Αποθήκευση" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Νέο" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "Νέο αρχείο κειμένου" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "Αρχείο κειμένου" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "Νέος κατάλογος" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "Φάκελος" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "Από σύνδεσμο" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "Διαγραμμένα αρχεία" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "Ακύρωση αποστολής" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "Δεν έχετε δικαιώματα φόρτωσης ή δημιουργίας αρχείων εδώ" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Δεν υπάρχει τίποτα εδώ. Ανεβάστε κάτι!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Λήψη" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Διαγραφή" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Πολύ μεγάλο αρχείο προς αποστολή" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Τα αρχεία που προσπαθείτε να ανεβάσετε υπερβαίνουν το μέγιστο μέγεθος αποστολής αρχείων σε αυτόν τον διακομιστή." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Τα αρχεία σαρώνονται, παρακαλώ περιμένετε." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Τρέχουσα ανίχνευση" diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index 8a5dbd9c892..d5fdc2c7e8c 100644 --- a/l10n/el/files_external.po +++ b/l10n/el/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05: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@pirate/files.po b/l10n/en@pirate/files.po index bb4ddcd0bfc..eff254ddd36 100644 --- a/l10n/en@pirate/files.po +++ b/l10n/en@pirate/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -17,48 +17,48 @@ msgstr "" "Language: en@pirate\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" @@ -68,74 +68,74 @@ msgstr "" msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "" @@ -156,92 +156,92 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 -msgid "Pending" +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" msgstr "" -#: js/filelist.js:456 -msgid "Could not rename file" +#: js/filelist.js:102 js/files.js:552 +msgid "Error" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" +#: js/filelist.js:267 js/filelist.js:1113 +msgid "Pending" msgstr "" -#: js/filelist.js:591 -msgid "undo" +#: js/filelist.js:630 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -278,29 +278,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "" @@ -308,109 +300,109 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Download" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "" diff --git a/l10n/en_GB/files.po b/l10n/en_GB/files.po index 182341b8a25..aa6ca243be8 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: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" @@ -43,7 +43,7 @@ msgid "" "allowed." msgstr "Invalid name: '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "The target folder has been moved or deleted." @@ -64,12 +64,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Server is not allowed to open URLs, please check the server configuration" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Error whilst downloading %s to %s" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "Error when creating the file" @@ -81,62 +81,62 @@ msgstr "Folder name cannot be empty." msgid "Error when creating the folder" msgstr "Error when creating the folder" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "Unable to set upload directory." -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "Invalid Token" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "No file was uploaded. Unknown error" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "There is no error, the file uploaded successfully" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "The uploaded file was only partially uploaded" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "No file was uploaded" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Missing a temporary folder" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "Failed to write to disk" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "Not enough storage available" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "Upload failed. Could not find uploaded file" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "Upload failed. Could not get file info." -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "Invalid directory." @@ -170,79 +170,79 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "File upload is in progress. Leaving the page now will cancel the upload." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "URL cannot be empty" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "In the home folder 'Shared' is a reserved file name" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} already exists" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "Could not create file" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "Could not create folder" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "Error fetching URL" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Share" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "Delete permanently" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "Rename" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "Error moving file" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Error" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "Pending" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "Could not rename file" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "replaced {new_name} with {old_name}" - -#: js/filelist.js:591 -msgid "undo" -msgstr "undo" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "Error deleting file." -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n folder" msgstr[1] "%n folders" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n file" msgstr[1] "%n files" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "{dirs} and {files}" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Uploading %n file" @@ -279,29 +279,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Your download is being prepared. This might take some time if the files are big." -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "Error moving file" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "Error" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Name" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Size" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Modified" @@ -309,109 +301,109 @@ msgstr "Modified" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Invalid folder name. Usage of 'Shared' is reserved." -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "%s could not be renamed" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Upload" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "File handling" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "Maximum upload size" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "max. possible: " -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "Needed for multi-file and folder downloads." -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "Enable ZIP-download" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 is unlimited" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "Maximum input size for ZIP files" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Save" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "New" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "New text file" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "Text file" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "New folder" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "Folder" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "From link" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "Deleted files" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "Cancel upload" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "You don’t have permission to upload or create files here" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Nothing in here. Upload something!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Download" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Delete" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Upload too large" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "The files you are trying to upload exceed the maximum size for file uploads on this server." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Files are being scanned, please wait." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Current scanning" diff --git a/l10n/en_GB/files_external.po b/l10n/en_GB/files_external.po index f7499ea07dd..f4245bb4ce3 100644 --- a/l10n/en_GB/files_external.po +++ b/l10n/en_GB/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-03 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 11:30+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05: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/eo/files.po b/l10n/eo/files.po index 7518719c1a8..832bb3b8468 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: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" @@ -43,7 +43,7 @@ msgid "" "allowed." msgstr "Nevalida nomo: “\\”, “/”, “<”, “>”, “:”, “\"”, “|”, “?” kaj “*” ne permesatas." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -64,12 +64,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Eraris elŝuto de %s al %s" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "Eraris la kreo de la dosiero" @@ -81,62 +81,62 @@ msgstr "La dosierujnomo ne povas malpleni." msgid "Error when creating the folder" msgstr "Eraris la kreo de la dosierujo" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "Ne povis agordiĝi la alŝuta dosierujo." -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "Neniu dosiero alŝutiĝis. Nekonata eraro." -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "Ne estas eraro, la dosiero alŝutiĝis sukcese." -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "La dosiero alŝutita superas la regulon upload_max_filesize el php.ini: " -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "La dosiero alŝutita superas la regulon MAX_FILE_SIZE, kiu estas difinita en la HTML-formularo" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "la alŝutita dosiero nur parte alŝutiĝis" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "Neniu dosiero alŝutiĝis." -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Mankas provizora dosierujo." -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "Malsukcesis skribo al disko" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "Ne haveblas sufiĉa memoro" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "La alŝuto malsukcesis. Ne troviĝis alŝutota dosiero." -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "La alŝuto malsukcesis. Ne povis ekhaviĝi informo pri dosiero." -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "Nevalida dosierujo." @@ -170,79 +170,79 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dosieralŝuto plenumiĝas. Lasi la paĝon nun nuligus la alŝuton." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "La URL ne povas malpleni" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} jam ekzistas" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "Ne povis kreiĝi dosiero" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "Ne povis kreiĝi dosierujo" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Kunhavigi" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "Forigi por ĉiam" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "Alinomigi" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "Eraris movo de dosiero" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Eraro" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "Traktotaj" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "Ne povis alinomiĝi dosiero" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "anstataŭiĝis {new_name} per {old_name}" - -#: js/filelist.js:591 -msgid "undo" -msgstr "malfari" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n dosierujo" msgstr[1] "%n dosierujoj" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n dosiero" msgstr[1] "%n dosieroj" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "{dirs} kaj {files}" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Alŝutatas %n dosiero" @@ -279,29 +279,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Via elŝuto pretiĝatas. Ĉi tio povas daŭri iom da tempo se la dosieroj grandas." -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "Eraris movo de dosiero" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "Eraro" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Nomo" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Grando" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Modifita" @@ -309,109 +301,109 @@ msgstr "Modifita" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "%s ne povis alinomiĝi" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Alŝuti" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "Dosieradministro" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "Maksimuma alŝutogrando" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "maks. ebla: " -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "Necesa por elŝuto de pluraj dosieroj kaj dosierujoj." -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "Kapabligi ZIP-elŝuton" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 signifas senlime" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "Maksimuma enirgrando por ZIP-dosieroj" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Konservi" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Nova" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "Tekstodosiero" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "Nova dosierujo" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "Dosierujo" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "El ligilo" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "Forigitaj dosieroj" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "Nuligi alŝuton" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "Vi ne havas permeson alŝuti aŭ krei dosierojn ĉi tie" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Nenio estas ĉi tie. Alŝutu ion!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Elŝuti" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Forigi" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Alŝuto tro larĝa" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "La dosieroj, kiujn vi provas alŝuti, transpasas la maksimuman grandon por dosieralŝutoj en ĉi tiu servilo." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Dosieroj estas skanataj, bonvolu atendi." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Nuna skano" diff --git a/l10n/eo/files_external.po b/l10n/eo/files_external.po index 8d22f2eb1a0..f9856c41220 100644 --- a/l10n/eo/files_external.po +++ b/l10n/eo/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05: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 b9d0e700b38..4868b5dab30 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" @@ -52,7 +52,7 @@ msgid "" "allowed." msgstr "Nombre inválido, los caracteres \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos " -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "La carpeta destino fue movida o eliminada." @@ -73,12 +73,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "La configuración del servidor no le permite abrir URLs, revísela." -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Error mientras se descargaba %s a %s" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "Error al crear el archivo" @@ -90,62 +90,62 @@ msgstr "El nombre de la carpeta no puede estar vacío." msgid "Error when creating the folder" msgstr "Error al crear la carpeta." -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "Incapaz de crear directorio de subida." -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "Token Inválido" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "No se subió ningún archivo. Error desconocido" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "No hubo ningún problema, el archivo se subió con éxito" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "El archivo subido sobrepasa la directiva 'upload_max_filesize' en php.ini:" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "El archivo subido sobrepasa la directiva 'MAX_FILE_SIZE' especificada en el formulario HTML" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "El archivo subido fue sólo subido parcialmente" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "No se subió ningún archivo" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Falta la carpeta temporal" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "Falló al escribir al disco" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "No hay suficiente espacio disponible" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "Actualización fallida. No se pudo encontrar el archivo subido" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "Actualización fallida. No se pudo obtener información del archivo." -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "Directorio inválido." @@ -179,79 +179,79 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "La subida del archivo está en proceso. Si sale de la página ahora, la subida será cancelada." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "La dirección URL no puede estar vacía" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "En la carpeta home, no se puede usar 'Shared'" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} ya existe" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "No se pudo crear el archivo" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "No se pudo crear la carpeta" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "Error al descargar URL." -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Compartir" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "Renombrar" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "Error moviendo archivo" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Error" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "Pendiente" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "No se pudo renombrar el archivo" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "reemplazado {new_name} con {old_name}" - -#: js/filelist.js:591 -msgid "undo" -msgstr "deshacer" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "Error al borrar el archivo" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n carpeta" msgstr[1] "%n carpetas" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n archivo" msgstr[1] "%n archivos" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "{dirs} y {files}" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Subiendo %n archivo" @@ -288,29 +288,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "El cifrado ha sido deshabilitado pero tus archivos permanecen cifrados. Por favor, ve a tus ajustes personales para descifrar tus archivos." -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Su descarga está siendo preparada. Esto podría tardar algo de tiempo si los archivos son grandes." -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "Error moviendo archivo" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "Error" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Nombre" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Tamaño" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Modificado" @@ -318,109 +310,109 @@ msgstr "Modificado" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Nombre de carpeta inválido. El uso de \"Shared\" esta reservado." -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "%s no pudo ser renombrado" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Subir" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "Administración de archivos" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "Tamaño máximo de subida" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "máx. posible:" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "Necesario para multi-archivo y descarga de carpetas" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "Habilitar descarga en ZIP" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 significa ilimitado" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "Tamaño máximo para archivos ZIP de entrada" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Guardar" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Nuevo" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "Nuevo archivo de texto" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "Archivo de texto" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "Nueva carpeta" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "Carpeta" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "Desde enlace" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "Archivos eliminados" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "No tienes permisos para subir o crear archivos aquí." -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "No hay nada aquí. ¡Suba algo!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Descargar" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Eliminar" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Subida demasido grande" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Los archivos que estás intentando subir sobrepasan el tamaño máximo permitido en este servidor." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Los archivos están siendo escaneados, por favor espere." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Escaneo actual" diff --git a/l10n/es/files_external.po b/l10n/es/files_external.po index cb1fbff0c3b..15440edc23d 100644 --- a/l10n/es/files_external.po +++ b/l10n/es/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-03 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 15:20+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:30+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" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 0a625464a1d..9b0c0bf17ce 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -9,7 +9,7 @@ # ggam , 2013 # japaol , 2013 # Jose Luis Tirado , 2014 -# juanman , 2013 +# juanman , 2013-2014 # pablomillaquen , 2013 # Raul Fernandez Garcia , 2013 # qdneren , 2013 @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 22:10+0000\n" -"Last-Translator: Art O. Pal \n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 01:10+0000\n" +"Last-Translator: juanman \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" @@ -65,7 +65,7 @@ msgstr "Tiene que configurar su dirección de correo electrónico antes de poder msgid "Send mode" msgstr "Modo de envío" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "Cifrado" @@ -78,7 +78,7 @@ msgid "Unable to load list from App Store" msgstr "No se pudo cargar la lista desde el App Store" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Error de autenticación" @@ -140,32 +140,32 @@ msgstr "No se pudo eliminar al usuario del grupo %s" msgid "Couldn't update app." msgstr "No se pudo actualizar la aplicación." -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "Contraseña incorrecta" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "No se especificó un usuario" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "Por favor facilite una contraseña de recuperación de administrador, sino podrían perderse todos los datos de usuario" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "Contraseña de recuperación de administrador incorrecta. Por favor compruebe la contraseña e inténtelo de nuevo." -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "El back-end no soporta cambios de contraseña, pero la clave de cifrado del usuario ha sido actualizada satisfactoriamente." -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "No se ha podido cambiar la contraseña" @@ -183,7 +183,7 @@ msgstr "Documentación para administradores" #: js/apps.js:67 msgid "Update to {appversion}" -msgstr "Actualizado a {appversion}" +msgstr "Actualizar a {appversion}" #: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" @@ -217,7 +217,7 @@ msgstr "Error mientras se actualizaba la aplicación" msgid "Error" msgstr "Error" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "Actualizar" @@ -298,7 +298,7 @@ msgstr "Se debe proporcionar una contraseña válida" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Atención: el directorio de inicio para el usuario \"{user}\" ya existe." -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "Castellano" @@ -603,11 +603,11 @@ msgstr "Más" msgid "Less" msgstr "Menos" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "Versión" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "-licencia otorgada por " @@ -678,108 +678,108 @@ msgstr "Mostrar nuevamente el Asistente de ejecución inicial" msgid "You have used %s of the available %s" msgstr "Ha usado %s de los %s disponibles" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Contraseña" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "Su contraseña ha sido cambiada" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "No se ha podido cambiar su contraseña" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "Contraseña actual" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "Nueva contraseña" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "Cambiar contraseña" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "Nombre completo" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "Correo electrónico" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "Su dirección de correo" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Introducir una dirección de correo electrónico para activar la recuperación de contraseñas y recibir notificaciones" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "Foto de perfil" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "Subir otra" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "Seleccionar otra desde Archivos" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "Borrar imagen" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Archivo PNG o JPG. Preferiblemente cuadrado, pero tendrás la posibilidad de recortarlo." -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "Su avatar es proporcionado por su cuenta original." -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Cancelar" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "Seleccionar como imagen de perfil" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "Idioma" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "Ayúdanos a traducir" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Utilice esta dirección paraacceder a sus archivos a través de WebDAV" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "La aplicación de cifrado ya no está activada, descifre todos sus archivos" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "Contraseña de acceso" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "Descifrar archivos" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 02f0efea9be..4e4ff795968 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: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" @@ -46,7 +46,7 @@ msgid "" "allowed." msgstr "Nombre invalido, '\\', '/', '<', '>', ':', '\"', '|', '?' y '*' no están permitidos." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -67,12 +67,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "El servidor no está permitido abrir las URLs, por favor chequee la configuración del servidor" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Error mientras se descargaba %s a %s" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "Error al crear el archivo" @@ -84,62 +84,62 @@ msgstr "El nombre del directorio no puede estar vacío." msgid "Error when creating the folder" msgstr "Error al crear el directorio" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "No fue posible crear el directorio de subida." -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "Token Inválido" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "El archivo no fue subido. Error desconocido" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "No hay errores, el archivo fue subido con éxito" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "El archivo que intentás subir excede el tamaño definido por upload_max_filesize en el php.ini:" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "El archivo subido sobrepasa el valor MAX_FILE_SIZE especificada en el formulario HTML" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "El archivo fue subido parcialmente" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "No se subió ningún archivo " -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Falta un directorio temporal" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "Error al escribir en el disco" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "No hay suficiente almacenamiento" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "Falló la carga. No se pudo encontrar el archivo subido." -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "Falló la carga. No se pudo obtener la información del archivo." -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "Directorio inválido." @@ -173,79 +173,79 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "La subida del archivo está en proceso. Si salís de la página ahora, la subida se cancelará." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "La URL no puede estar vacía" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "En el directorio inicial 'Shared' es un nombre de archivo reservado" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} ya existe" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "No se pudo crear el archivo" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "No se pudo crear el directorio" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "Error al obtener la URL" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Compartir" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "Borrar permanentemente" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "Cambiar nombre" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "Error moviendo el archivo" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Error" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "Pendientes" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "No se pudo renombrar el archivo" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "se reemplazó {new_name} con {old_name}" - -#: js/filelist.js:591 -msgid "undo" -msgstr "deshacer" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "Error al borrar el archivo." -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n carpeta" msgstr[1] "%n carpetas" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n archivo" msgstr[1] "%n archivos" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "{carpetas} y {archivos}" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Subiendo %n archivo" @@ -282,29 +282,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "El proceso de cifrado se ha desactivado, pero los archivos aún están encriptados. Por favor, vaya a la configuración personal para descifrar los archivos." -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Tu descarga se está preparando. Esto puede demorar si los archivos son muy grandes." -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "Error moviendo el archivo" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "Error" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Nombre" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Tamaño" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Modificado" @@ -312,109 +304,109 @@ msgstr "Modificado" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Nombre de directorio inválido. 'Shared' está reservado." -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "No se pudo renombrar %s" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Subir" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "Tratamiento de archivos" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "Tamaño máximo de subida" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "máx. posible:" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "Es necesario para descargas multi-archivo y de directorios." -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "Habilitar descarga en formato ZIP" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 significa ilimitado" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "Tamaño máximo para archivos ZIP de entrada" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Guardar" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Nuevo" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "Nuevo archivo de texto" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "Archivo de texto" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "Nueva Carpeta" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "Carpeta" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "Desde enlace" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "Archivos borrados" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "No tienes permisos para subir o crear archivos aquí" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "No hay nada. ¡Subí contenido!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Descargar" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Borrar" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "El tamaño del archivo que querés subir es demasiado grande" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Los archivos que intentás subir sobrepasan el tamaño máximo " -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Se están escaneando los archivos, por favor esperá." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Escaneo actual" diff --git a/l10n/es_AR/files_external.po b/l10n/es_AR/files_external.po index d0b53890199..16581163453 100644 --- a/l10n/es_AR/files_external.po +++ b/l10n/es_AR/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05: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/es_CL/files.po b/l10n/es_CL/files.po index f84895926b9..c46a2cb830f 100644 --- a/l10n/es_CL/files.po +++ b/l10n/es_CL/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -17,48 +17,48 @@ msgstr "" "Language: es_CL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" @@ -68,74 +68,74 @@ msgstr "" msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "" @@ -156,92 +156,92 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Compartir" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 -msgid "Pending" +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" msgstr "" -#: js/filelist.js:456 -msgid "Could not rename file" -msgstr "" +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Error" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" +#: js/filelist.js:267 js/filelist.js:1113 +msgid "Pending" msgstr "" -#: js/filelist.js:591 -msgid "undo" +#: js/filelist.js:630 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -278,29 +278,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "Error" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "" @@ -308,109 +300,109 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Subir" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Descargar" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "" diff --git a/l10n/es_MX/files.po b/l10n/es_MX/files.po index e35ebde5b12..a0692579032 100644 --- a/l10n/es_MX/files.po +++ b/l10n/es_MX/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "Nombre inválido, los caracteres \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos " -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -63,12 +63,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "El servidor no puede acceder URLs; revise la configuración del servidor." -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Error mientras se descargaba %s a %s" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "Error al crear el archivo" @@ -80,62 +80,62 @@ msgstr "El nombre de la carpeta no puede estar vacío." msgid "Error when creating the folder" msgstr "Error al crear la carpeta." -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "Incapaz de crear directorio de subida." -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "Token Inválido" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "No se subió ningún archivo. Error desconocido" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "No hubo ningún problema, el archivo se subió con éxito" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "El archivo subido sobrepasa la directiva 'upload_max_filesize' en php.ini:" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "El archivo subido sobrepasa la directiva 'MAX_FILE_SIZE' especificada en el formulario HTML" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "El archivo subido fue sólo subido parcialmente" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "No se subió ningún archivo" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Falta la carpeta temporal" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "Falló al escribir al disco" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "No hay suficiente espacio disponible" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "Actualización fallida. No se pudo encontrar el archivo subido" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "Actualización fallida. No se pudo obtener información del archivo." -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "Directorio inválido." @@ -169,79 +169,79 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "La subida del archivo está en proceso. Si sale de la página ahora, la subida será cancelada." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "La dirección URL no puede estar vacía" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "En la carpeta de inicio, 'Shared' es un nombre reservado" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} ya existe" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "No se pudo crear el archivo" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "No se pudo crear la carpeta" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "Error al descargar URL." -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Compartir" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "Renombrar" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "Error moviendo archivo" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Error" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "Pendiente" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "No se pudo renombrar el archivo" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "reemplazado {new_name} con {old_name}" - -#: js/filelist.js:591 -msgid "undo" -msgstr "deshacer" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "Error borrando el archivo." -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n carpeta" msgstr[1] "%n carpetas" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n archivo" msgstr[1] "%n archivos" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "{dirs} y {files}" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Subiendo %n archivo" @@ -278,29 +278,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "El cifrado ha sido deshabilitado pero tus archivos permanecen cifrados. Por favor, ve a tus ajustes personales para descifrar tus archivos." -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Su descarga está siendo preparada. Esto podría tardar algo de tiempo si los archivos son grandes." -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "Error moviendo archivo" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "Error" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Nombre" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Tamaño" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Modificado" @@ -308,109 +300,109 @@ msgstr "Modificado" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Nombre de carpeta inválido. El uso de \"Shared\" esta reservado." -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "%s no pudo ser renombrado" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Subir" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "Administración de archivos" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "Tamaño máximo de subida" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "máx. posible:" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "Necesario para multi-archivo y descarga de carpetas" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "Habilitar descarga en ZIP" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 significa ilimitado" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "Tamaño máximo para archivos ZIP de entrada" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Guardar" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Nuevo" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "Nuevo archivo de texto" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "Archivo de texto" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "Nueva carpeta" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "Carpeta" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "Desde enlace" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "Archivos eliminados" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "No tienes permisos para subir o crear archivos aquí." -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "No hay nada aquí. ¡Suba algo!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Descargar" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Eliminar" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Subida demasido grande" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Los archivos que estás intentando subir sobrepasan el tamaño máximo permitido en este servidor." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Los archivos están siendo escaneados, por favor espere." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Escaneo actual" diff --git a/l10n/es_MX/files_external.po b/l10n/es_MX/files_external.po index 790802d2823..654db481cad 100644 --- a/l10n/es_MX/files_external.po +++ b/l10n/es_MX/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:30+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 43c490aed47..e687a378812 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-01 07:26+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "Vigane nimi, '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' pole lubatud." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Sihtkataloog on ümber tõstetud või kustutatud." @@ -65,12 +65,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Server ei võimalda URL-ide avamist, palun kontrolli serveri seadistust" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Viga %s allalaadimisel %s" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "Viga faili loomisel" @@ -82,62 +82,62 @@ msgstr "Kataloogi nimi ei saa olla tühi." msgid "Error when creating the folder" msgstr "Viga kataloogi loomisel" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "Üleslaadimiste kausta määramine ebaõnnestus." -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "Vigane kontrollkood" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "Ühtegi faili ei laetud üles. Tundmatu viga" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "Ühtegi tõrget polnud, fail on üles laetud" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Üleslaetava faili suurus ületab php.ini poolt määratud upload_max_filesize suuruse:" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Üleslaetud fail ületab MAX_FILE_SIZE suuruse, mis on HTML vormi jaoks määratud" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "Fail laeti üles ainult osaliselt" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "Ühtegi faili ei laetud üles" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Ajutiste failide kaust puudub" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "Kettale kirjutamine ebaõnnestus" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "Saadaval pole piisavalt ruumi" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "Üleslaadimine ebaõnnestus. Üleslaetud faili ei leitud" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "Üleslaadimine ebaõnnestus. Faili info hankimine ebaõnnestus." -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "Vigane kaust." @@ -171,27 +171,27 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Faili üleslaadimine on töös. Lehelt lahkumine katkestab selle üleslaadimise." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "URL ei saa olla tühi" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Kodukataloogis 'Shared' on reserveeritud failinimi" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} on juba olemas" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "Ei suuda luua faili" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "Ei suuda luua kataloogi" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "Viga URL-i haaramisel" @@ -207,43 +207,43 @@ msgstr "Kustuta jäädavalt" msgid "Rename" msgstr "Nimeta ümber" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "Viga faili eemaldamisel" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Viga" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "Ootel" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "Ei suuda faili ümber nimetada" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "asendas nime {old_name} nimega {new_name}" - -#: js/filelist.js:591 -msgid "undo" -msgstr "tagasi" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "Viga faili kustutamisel." -#: js/filelist.js:687 js/filelist.js:761 js/files.js:694 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n kataloog" msgstr[1] "%n kataloogi" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:700 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fail" msgstr[1] "%n faili" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "{dirs} ja {files}" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Laadin üles %n faili" @@ -280,29 +280,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "Krüpteering on keelatud, kuid sinu failid on endiselt krüpteeritud. Palun vaata oma personaalseid seadeid oma failide dekrüpteerimiseks." -#: js/files.js:382 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Valmistatakse allalaadimist. See võib võtta veidi aega, kui on tegu suurte failidega. " -#: js/files.js:613 js/files.js:657 -msgid "Error moving file" -msgstr "Viga faili eemaldamisel" - -#: js/files.js:613 js/files.js:657 -msgid "Error" -msgstr "Viga" - -#: js/files.js:675 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Nimi" -#: js/files.js:676 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Suurus" -#: js/files.js:677 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Muudetud" @@ -310,12 +302,12 @@ msgstr "Muudetud" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Vigane kausta nimi. Nime 'Shared' kasutamine on reserveeritud." -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "%s ümbernimetamine ebaõnnestus" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Lae üles" @@ -351,68 +343,68 @@ msgstr "Maksimaalne ZIP-faili sisestatava faili suurus" msgid "Save" msgstr "Salvesta" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Uus" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "Uus tekstifail" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "Tekstifail" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "Uus kaust" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "Kaust" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "Allikast" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "Kustutatud failid" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "Tühista üleslaadimine" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "Sul puuduvad õigused siia failide üleslaadimiseks või tekitamiseks" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Siin pole midagi. Lae midagi üles!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Lae alla" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Kustuta" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Üleslaadimine on liiga suur" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Failid, mida sa proovid üles laadida, ületab serveri poolt üleslaetavatele failidele määratud maksimaalse suuruse." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Faile skannitakse, palun oota." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Praegune skannimine" diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index 71ed263ff67..5997b64962b 100644 --- a/l10n/et_EE/files_external.po +++ b/l10n/et_EE/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:30+0000\n" "Last-Translator: I Robot\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 8245bccc029..7825ae31939 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: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "IZen aliogabea, '\\', '/', '<', '>', ':', '\"', '|', '?' eta '*' ez daude baimenduta." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -65,12 +65,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Zerbitzaria ez dago URLak irekitzeko baimendua, mesedez egiaztatu zerbitzariaren konfigurazioa" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Errorea %s %sra deskargatzerakoan" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "Errorea fitxategia sortzerakoan" @@ -82,62 +82,62 @@ msgstr "Karpeta izena ezin da hutsa izan." msgid "Error when creating the folder" msgstr "Errorea karpeta sortzerakoan" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "Ezin da igoera direktorioa ezarri." -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "Lekuko baliogabea" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "Ez da fitxategirik igo. Errore ezezaguna" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "Ez da errorerik egon, fitxategia ongi igo da" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Igotako fitxategiak php.ini fitxategian ezarritako upload_max_filesize muga gainditu du:" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Igotako fitxategia HTML formularioan zehaztutako MAX_FILE_SIZE direktiba baino handidagoa da." -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "Igotako fitxategiaren zati bat bakarrik igo da" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "Ez da fitxategirik igo" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Aldi bateko karpeta falta da" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "Errore bat izan da diskoan idazterakoan" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "Ez dago behar aina leku erabilgarri," -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "Igoerak huts egin du. Ezin izan da igotako fitxategia aurkitu" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "Igoerak huts egin du. Ezin izan da fitxategiaren informazioa eskuratu." -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "Baliogabeko karpeta." @@ -171,79 +171,79 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "URLa ezin da hutsik egon" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Etxeko (home) karpetan 'Shared' erreserbatutako fitxategi izena da" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} dagoeneko existitzen da" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "Ezin izan da fitxategia sortu" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "Ezin izan da karpeta sortu" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "Errorea URLa eskuratzerakoan" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Elkarbanatu" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "Ezabatu betirako" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "Berrizendatu" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "Errorea fitxategia mugitzean" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Errorea" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "Zain" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "Ezin izan da fitxategia berrizendatu" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr " {new_name}-k {old_name} ordezkatu du" - -#: js/filelist.js:591 -msgid "undo" -msgstr "desegin" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "Errorea fitxategia ezabatzerakoan." -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "karpeta %n" msgstr[1] "%n karpeta" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "fitxategi %n" msgstr[1] "%n fitxategi" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "{dirs} eta {files}" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Fitxategi %n igotzen" @@ -280,29 +280,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "Enkriptazioa desgaitua izan da baina zure fitxategiak oraindik enkriptatuta daude. Mesedez jo zure ezarpen pertsonaletara zure fitxategiak dekodifikatzeko." -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Zure deskarga prestatu egin behar da. Denbora bat har lezake fitxategiak handiak badira. " -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "Errorea fitxategia mugitzean" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "Errorea" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Izena" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Tamaina" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Aldatuta" @@ -310,109 +302,109 @@ msgstr "Aldatuta" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Baliogabeako karpeta izena. 'Shared' izena erreserbatuta dago." -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "%s ezin da berrizendatu" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Igo" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "Fitxategien kudeaketa" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "Igo daitekeen gehienezko tamaina" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "max, posiblea:" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "Beharrezkoa fitxategi-anitz eta karpeten deskargarako." -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "Gaitu ZIP-deskarga" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 mugarik gabe esan nahi du" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "ZIP fitxategien gehienezko tamaina" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Gorde" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Berria" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "Testu fitxategi berria" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "Testu fitxategia" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "Karpeta berria" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "Karpeta" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "Estekatik" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "Ezabatutako fitxategiak" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "Ezeztatu igoera" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "Ez duzu fitxategiak hona igotzeko edo hemen sortzeko baimenik" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Ez dago ezer. Igo zerbait!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Deskargatu" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Ezabatu" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Igoera handiegia da" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Igotzen saiatzen ari zaren fitxategiak zerbitzari honek igotzeko onartzen duena baino handiagoak dira." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Fitxategiak eskaneatzen ari da, itxoin mezedez." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Orain eskaneatzen ari da" diff --git a/l10n/eu/files_external.po b/l10n/eu/files_external.po index 8dcfb198e61..1a98ee665bf 100644 --- a/l10n/eu/files_external.po +++ b/l10n/eu/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05: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/eu_ES/files.po b/l10n/eu_ES/files.po index f57a7040ace..ee74198632a 100644 --- a/l10n/eu_ES/files.po +++ b/l10n/eu_ES/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -63,12 +63,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" @@ -80,62 +80,62 @@ msgstr "" msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "" @@ -169,79 +169,79 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 -msgid "Pending" +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" msgstr "" -#: js/filelist.js:456 -msgid "Could not rename file" +#: js/filelist.js:102 js/files.js:552 +msgid "Error" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" +#: js/filelist.js:267 js/filelist.js:1113 +msgid "Pending" msgstr "" -#: js/filelist.js:591 -msgid "undo" +#: js/filelist.js:630 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -278,29 +278,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "" @@ -308,109 +300,109 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Gorde" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Deskargatu" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Ezabatu" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 83011111feb..4d0ab7becaa 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "نام نامعتبر ، '\\', '/', '<', '>', ':', '\"', '|', '?' و '*' مجاز نمی باشند." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -65,12 +65,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" @@ -82,62 +82,62 @@ msgstr "" msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "قادر به تنظیم پوشه آپلود نمی باشد." -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "رمز نامعتبر" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "هیچ فایلی آپلود نشد.خطای ناشناس" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "هیچ خطایی نیست بارگذاری پرونده موفقیت آمیز بود" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "پرونده آپلود شده بیش ازدستور ماکزیمم_حجم فایل_برای آپلود در php.ini استفاده کرده است." -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "حداکثر حجم قابل بار گذاری از طریق HTML MAX_FILE_SIZE است" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "پرونده بارگذاری شده فقط تاحدودی بارگذاری شده" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "هیچ پروندهای بارگذاری نشده" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "یک پوشه موقت گم شده" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "نوشتن بر روی دیسک سخت ناموفق بود" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "فضای کافی در دسترس نیست" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "فهرست راهنما نامعتبر می باشد." @@ -171,77 +171,77 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "آپلودکردن پرونده در حال پیشرفت است. در صورت خروج از صفحه آپلود لغو میگردد. " -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{نام _جدید} در حال حاضر وجود دارد." -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "اشتراک‌گذاری" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "حذف قطعی" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "تغییرنام" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "خطا" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "در انتظار" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "{نام_جدید} با { نام_قدیمی} جایگزین شد." - -#: js/filelist.js:591 -msgid "undo" -msgstr "بازگشت" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "در حال بارگذاری %n فایل" @@ -277,29 +277,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "دانلود شما در حال آماده شدن است. در صورتیکه پرونده ها بزرگ باشند ممکن است مدتی طول بکشد." -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "خطا" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "نام" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "اندازه" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "تاریخ" @@ -307,109 +299,109 @@ msgstr "تاریخ" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "%s نمیتواند تغییر نام دهد." -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "بارگزاری" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "اداره پرونده ها" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "حداکثر اندازه بارگزاری" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "حداکثرمقدارممکن:" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "احتیاج پیدا خواهد شد برای چند پوشه و پرونده" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "فعال سازی بارگیری پرونده های فشرده" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 نامحدود است" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "حداکثرمقدار برای بار گزاری پرونده های فشرده" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "ذخیره" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "جدید" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "فایل متنی" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "پوشه جدید" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "پوشه" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "از پیوند" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "فایل های حذف شده" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "متوقف کردن بار گذاری" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "اینجا هیچ چیز نیست." -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "دانلود" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "حذف" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "سایز فایل برای آپلود زیاد است(م.تنظیمات در php.ini)" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "فایلها بیش از حد تعیین شده در این سرور هستند\nمترجم:با تغییر فایل php,ini میتوان این محدودیت را برطرف کرد" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "پرونده ها در حال بازرسی هستند لطفا صبر کنید" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "بازرسی کنونی" diff --git a/l10n/fa/files_external.po b/l10n/fa/files_external.po index 606827d01e9..da40a9ffa6f 100644 --- a/l10n/fa/files_external.po +++ b/l10n/fa/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05: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 8306890140f..94f8bbbdf85 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -45,7 +45,7 @@ msgid "" "allowed." msgstr "Virheellinen nimi, merkit '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' eivät ole sallittuja." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Kohdekansio on siirretty tai poistettu." @@ -66,12 +66,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Palvelimen ei ole lupa avata verkko-osoitteita. Tarkista palvelimen asetukset" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Virhe ladatessa kohdetta %s sijaintiin %s" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "Virhe tiedostoa luotaessa" @@ -83,62 +83,62 @@ msgstr "Kansion nimi ei voi olla tyhjä." msgid "Error when creating the folder" msgstr "Virhe kansiota luotaessa" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "Lähetyskansion asettaminen epäonnistui." -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "Tiedostoa ei lähetetty. Tuntematon virhe" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "Ei virheitä, tiedosto lähetettiin onnistuneesti" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Lähetetyn tiedoston koko ylittää php.ini-tiedoston upload_max_filesize-säännön:" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Lähetettävän tiedoston enimmäiskoko ylittää HTML-lomakkeessa määritellyn MAX_FILE_SIZE-säännön" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "Tiedoston lähetys onnistui vain osittain" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "Yhtäkään tiedostoa ei lähetetty" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Tilapäiskansio puuttuu" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "Levylle kirjoitus epäonnistui" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "Tallennustilaa ei ole riittävästi käytettävissä" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "Lähetys epäonnistui. Lähettävää tiedostoa ei löydetty." -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "Lähetys epäonnistui. Lähettävää tiedostoa ei löydetty." -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "Virheellinen kansio." @@ -172,79 +172,79 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedoston lähetyksen." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "Osoite ei voi olla tyhjä" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} on jo olemassa" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "Tiedoston luominen epäonnistui" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "Kansion luominen epäonnistui" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "Virhe noutaessa verkko-osoitetta" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Jaa" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "Poista pysyvästi" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "Nimeä uudelleen" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "Virhe tiedostoa siirrettäessä" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Virhe" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "Odottaa" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "Tiedoston nimeäminen uudelleen epäonnistui" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "" - -#: js/filelist.js:591 -msgid "undo" -msgstr "kumoa" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "Virhe tiedostoa poistaessa." -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n kansio" msgstr[1] "%n kansiota" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n tiedosto" msgstr[1] "%n tiedostoa" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "{dirs} ja {files}" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Lähetetään %n tiedosto" @@ -281,29 +281,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "Salaus poistettiin käytöstä, mutta tiedostosi ovat edelleen salattuina. Siirry henkilökohtaisiin asetuksiin avataksesi tiedostojesi salauksen." -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Lataustasi valmistellaan. Tämä saattaa kestää hetken, jos tiedostot ovat suuria kooltaan." -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "Virhe tiedostoa siirrettäessä" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "Virhe" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Nimi" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Koko" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Muokattu" @@ -311,109 +303,109 @@ msgstr "Muokattu" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Virheellinen kansion nimi. 'Shared':n käyttö on varattu." -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "kohteen %s nimeäminen uudelleen epäonnistui" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Lähetä" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "Tiedostonhallinta" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "Lähetettävän tiedoston suurin sallittu koko" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "suurin mahdollinen:" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "Tarvitaan useampien tiedostojen ja kansioiden latausta varten." -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "Ota ZIP-paketin lataaminen käytöön" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 on rajoittamaton" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "ZIP-tiedostojen enimmäiskoko" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Tallenna" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Uusi" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "Uusi tekstitiedosto" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "Tekstitiedosto" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "Uusi kansio" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "Kansio" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "Linkistä" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "Poistetut tiedostot" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "Peru lähetys" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "Käyttöoikeutesi eivät riitä tiedostojen lähettämiseen tai kansioiden luomiseen tähän sijaintiin" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Täällä ei ole mitään. Lähetä tänne jotakin!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Lataa" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Poista" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Lähetettävä tiedosto on liian suuri" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Lähetettäväksi valitsemasi tiedostot ylittävät palvelimen salliman tiedostokoon rajan." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Tiedostoja tarkistetaan, odota hetki." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Tämänhetkinen tutkinta" diff --git a/l10n/fi_FI/files_external.po b/l10n/fi_FI/files_external.po index d6334ce805a..50537fbfe78 100644 --- a/l10n/fi_FI/files_external.po +++ b/l10n/fi_FI/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-03 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 06:30+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05: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/fr/files.po b/l10n/fr/files.po index 9e3b0bca469..fcf0cda1b06 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: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" @@ -47,7 +47,7 @@ msgid "" "allowed." msgstr "Nom invalide, les caractères '\\', '/', '<', '>', ':', '\"', '|', '?' et '*' ne sont pas autorisés." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Le dossier cible a été déplacé ou supprimé." @@ -68,12 +68,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Le serveur n'est pas autorisé à ouvrir des URL, veuillez vérifier la configuration du serveur" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Erreur pendant le téléchargement de %s à %s" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "Erreur pendant la création du fichier" @@ -85,62 +85,62 @@ msgstr "Le nom de dossier ne peux pas être vide." msgid "Error when creating the folder" msgstr "Erreur pendant la création du dossier" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "Impossible de définir le dossier pour l'upload, charger." -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "Jeton non valide" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "Aucun fichier n'a été envoyé. Erreur inconnue" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "Aucune erreur, le fichier a été envoyé avec succès." -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Le fichier envoyé dépasse l'instruction upload_max_filesize située dans le fichier php.ini:" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Le fichier envoyé dépasse l'instruction MAX_FILE_SIZE qui est spécifiée dans le formulaire HTML." -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "Le fichier n'a été que partiellement envoyé." -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "Pas de fichier envoyé." -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Absence de dossier temporaire." -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "Erreur d'écriture sur le disque" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "Plus assez d'espace de stockage disponible" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "L'envoi a échoué. Impossible de trouver le fichier envoyé." -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "L'envoi a échoué. Impossible d'obtenir les informations du fichier." -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "Dossier invalide." @@ -174,79 +174,79 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "L'envoi du fichier est en cours. Quitter cette page maintenant annulera l'envoi du fichier." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "L'URL ne peut pas être vide" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Dans le dossier home, 'Partagé' est un nom de fichier réservé" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} existe déjà" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "Impossible de créer le fichier" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "Impossible de créer le dossier" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "Erreur d'accès à l'URL" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Partager" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "Supprimer de façon définitive" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "Renommer" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "Erreur lors du déplacement du fichier" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Erreur" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "En attente" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "Impossible de renommer le fichier" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "{new_name} a été remplacé par {old_name}" - -#: js/filelist.js:591 -msgid "undo" -msgstr "annuler" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "Erreur pendant la suppression du fichier." -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n dossier" msgstr[1] "%n dossiers" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fichier" msgstr[1] "%n fichiers" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "{dirs} et {files}" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Téléversement de %n fichier" @@ -283,29 +283,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "Le chiffrement était désactivé mais vos fichiers sont toujours chiffrés. Veuillez vous rendre sur vos Paramètres personnels pour déchiffrer vos fichiers." -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Votre téléchargement est cours de préparation. Ceci peut nécessiter un certain temps si les fichiers sont volumineux." -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "Erreur lors du déplacement du fichier" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "Erreur" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Nom" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Taille" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Modifié" @@ -313,109 +305,109 @@ msgstr "Modifié" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Nom de dossier invalide. L'utilisation du mot 'Shared' est réservée." -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "%s ne peut être renommé" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Envoyer" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "Gestion des fichiers" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "Taille max. d'envoi" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "Max. possible :" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "Nécessaire pour le téléchargement de plusieurs fichiers et de dossiers." -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "Activer le téléchargement ZIP" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 est illimité" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "Taille maximale pour les fichiers ZIP" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Sauvegarder" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Nouveau" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "Nouveau fichier texte" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "Fichier texte" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "Nouveau dossier" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "Dossier" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "Depuis le lien" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "Fichiers supprimés" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "Annuler l'envoi" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "Vous n'avez pas la permission de téléverser ou de créer des fichiers ici" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Il n'y a rien ici ! Envoyez donc quelque chose :)" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Télécharger" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Supprimer" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Téléversement trop volumineux" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Les fichiers que vous essayez d'envoyer dépassent la taille maximale permise par ce serveur." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Les fichiers sont en cours d'analyse, veuillez patienter." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Analyse en cours" diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index e7fc3c04159..5cc86b42bd3 100644 --- a/l10n/fr/files_external.po +++ b/l10n/fr/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:30+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" diff --git a/l10n/fr_CA/files.po b/l10n/fr_CA/files.po index 37eb098e711..72448b63f63 100644 --- a/l10n/fr_CA/files.po +++ b/l10n/fr_CA/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (Canada) (http://www.transifex.com/projects/p/owncloud/language/fr_CA/)\n" "MIME-Version: 1.0\n" @@ -17,48 +17,48 @@ msgstr "" "Language: fr_CA\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" @@ -68,74 +68,74 @@ msgstr "" msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "" @@ -156,92 +156,92 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 -msgid "Pending" +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" msgstr "" -#: js/filelist.js:456 -msgid "Could not rename file" +#: js/filelist.js:102 js/files.js:552 +msgid "Error" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" +#: js/filelist.js:267 js/filelist.js:1113 +msgid "Pending" msgstr "" -#: js/filelist.js:591 -msgid "undo" +#: js/filelist.js:630 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -278,29 +278,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "" @@ -308,109 +300,109 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 5d5e1a7178d..24d81be8934 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "Nome incorrecto, non se permite «\\», «/», «<», «>», «:», «\"», «|», «?» e «*»." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "O cartafol de destino foi movido ou eliminado." @@ -65,12 +65,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "O servidor non ten permisos para abrir os enderezos URL, comprobe a configuración do servidor" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Produciuse un erro ao descargar %s en %s" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "Produciuse un erro ao crear o ficheiro" @@ -82,62 +82,62 @@ msgstr "O nome de cartafol non pode estar baleiro." msgid "Error when creating the folder" msgstr "Produciuse un erro ao crear o cartafol" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "Non é posíbel configurar o directorio de envíos." -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "Marca incorrecta" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "Non se enviou ningún ficheiro. Produciuse un erro descoñecido." -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "Non houbo erros, o ficheiro enviouse correctamente" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "O ficheiro enviado excede a directiva indicada por upload_max_filesize de php.ini:" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "O ficheiro enviado excede da directiva MAX_FILE_SIZE especificada no formulario HTML" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "O ficheiro so foi parcialmente enviado" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "Non se enviou ningún ficheiro" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Falta o cartafol temporal" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "Produciuse un erro ao escribir no disco" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "Non hai espazo de almacenamento abondo" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "O envío fracasou. Non foi posíbel atopar o ficheiro enviado" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "O envío fracasou. Non foi posíbel obter información do ficheiro." -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "O directorio é incorrecto." @@ -171,79 +171,79 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "O envío do ficheiro está en proceso. Saír agora da páxina cancelará o envío." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "O URL non pode quedar en branco." -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "«Shared» dentro do cartafol persoal é un nome reservado" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "Xa existe un {new_name}" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "Non foi posíbel crear o ficheiro" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "Non foi posíbel crear o cartafol" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "Produciuse un erro ao obter o URL" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Compartir" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "Renomear" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "Produciuse un erro ao mover o ficheiro" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Erro" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "Pendentes" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "Non foi posíbel renomear o ficheiro" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "substituír {new_name} por {old_name}" - -#: js/filelist.js:591 -msgid "undo" -msgstr "desfacer" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "Produciuse un erro ao eliminar o ficheiro." -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n cartafol" msgstr[1] "%n cartafoles" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n ficheiro" msgstr[1] "%n ficheiros" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "{dirs} e {files}" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Cargando %n ficheiro" @@ -280,29 +280,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "O cifrado foi desactivado, mais os ficheiros están cifrados. Vaia á configuración persoal para descifrar os ficheiros." -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Está a prepararse a súa descarga. Isto pode levar bastante tempo se os ficheiros son grandes." -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "Produciuse un erro ao mover o ficheiro" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "Erro" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Nome" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Tamaño" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Modificado" @@ -310,109 +302,109 @@ msgstr "Modificado" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Nome de cartafol non válido. O uso de «Shared» está reservado." -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "%s non pode cambiar de nome" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Enviar" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "Manexo de ficheiro" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "Tamaño máximo do envío" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "máx. posíbel: " -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "Precísase para a descarga de varios ficheiros e cartafoles." -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "Activar a descarga ZIP" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 significa ilimitado" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "Tamaño máximo de descarga para os ficheiros ZIP" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Gardar" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Novo" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "Ficheiro novo de texto" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "Ficheiro de texto" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "Novo cartafol" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "Cartafol" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "Desde a ligazón" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "Ficheiros eliminados" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "Cancelar o envío" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "Non ten permisos para enviar ou crear ficheiros aquí." -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Aquí non hai nada. Envíe algo." -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Descargar" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Eliminar" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Envío demasiado grande" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Os ficheiros que tenta enviar exceden do tamaño máximo permitido neste servidor" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Estanse analizando os ficheiros. Agarde." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Análise actual" diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index 9d0df03eca6..85c08c4d881 100644 --- a/l10n/gl/files_external.po +++ b/l10n/gl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-03 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 11:07+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05: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/he/files.po b/l10n/he/files.po index fe83688b064..082677ed42c 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: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "השם שגוי, אסור להשתמש בתווים '\\', '/', '<', '>', ':', '\"', '|', '?' ו־'*'." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -65,12 +65,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" @@ -82,62 +82,62 @@ msgstr "" msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "לא הועלה קובץ. טעות בלתי מזוהה." -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "לא התרחשה שגיאה, הקובץ הועלה בהצלחה" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "הקבצים שנשלחו חורגים מהגודל שצוין בהגדרה upload_max_filesize שבקובץ php.ini:" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "הקובץ שהועלה גדוך מהערך MAX_FILE_SIZE שהוגדר בתופס HTML" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "הקובץ הועלה באופן חלקי בלבד" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "שום קובץ לא הועלה" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "תקיה זמנית חסרה" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "הכתיבה לכונן נכשלה" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "אין די שטח פנוי באחסון" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "העלאה נכשלה. לא ניתן להשיג את פרטי הקובץ." -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "תיקייה שגויה." @@ -171,79 +171,79 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "מתבצעת כעת העלאת קבצים. עזיבה של העמוד תבטל את ההעלאה." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} כבר קיים" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "שתף" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "מחק לצמיתות" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "שינוי שם" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "שגיאה" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "ממתין" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "{new_name} הוחלף ב־{old_name}" - -#: js/filelist.js:591 -msgid "undo" -msgstr "ביטול" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -280,29 +280,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "שגיאה" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "שם" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "גודל" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "זמן שינוי" @@ -310,109 +302,109 @@ msgstr "זמן שינוי" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "העלאה" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "טיפול בקבצים" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "גודל העלאה מקסימלי" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "המרבי האפשרי: " -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "נחוץ להורדה של ריבוי קבצים או תיקיות." -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "הפעלת הורדת ZIP" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 - ללא הגבלה" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "גודל הקלט המרבי לקובצי ZIP" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "שמירה" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "חדש" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "קובץ טקסט" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "תיקייה" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "מקישור" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "קבצים שנמחקו" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "ביטול ההעלאה" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "אין כאן שום דבר. אולי ברצונך להעלות משהו?" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "הורדה" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "מחיקה" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "העלאה גדולה מידי" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "הקבצים שניסית להעלות חרגו מהגודל המקסימלי להעלאת קבצים על שרת זה." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "הקבצים נסרקים, נא להמתין." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "הסריקה הנוכחית" diff --git a/l10n/he/files_external.po b/l10n/he/files_external.po index 495816f7967..ddda3471e5a 100644 --- a/l10n/he/files_external.po +++ b/l10n/he/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05: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/hi/files.po b/l10n/hi/files.po index 571ff8efa40..72e81b60380 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -63,12 +63,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" @@ -80,62 +80,62 @@ msgstr "" msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "" @@ -169,79 +169,79 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "साझा करें" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 -msgid "Pending" +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" msgstr "" -#: js/filelist.js:456 -msgid "Could not rename file" -msgstr "" +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "त्रुटि" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" +#: js/filelist.js:267 js/filelist.js:1113 +msgid "Pending" msgstr "" -#: js/filelist.js:591 -msgid "undo" +#: js/filelist.js:630 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -278,29 +278,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "त्रुटि" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "" @@ -308,109 +300,109 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "अपलोड " -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "सहेजें" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index 6670ab986cc..8af768de1fb 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -63,12 +63,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" @@ -80,62 +80,62 @@ msgstr "" msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "Nema pogreške, datoteka je poslana uspješno." -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Poslana datoteka prelazi veličinu prikazanu u MAX_FILE_SIZE direktivi u HTML formi" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "Poslana datoteka je parcijalno poslana" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "Datoteka nije poslana" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Nedostaje privremeni direktorij" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "Neuspjelo pisanje na disk" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "" @@ -169,81 +169,81 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Učitavanje datoteke. Napuštanjem stranice će prekinuti učitavanje." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Podijeli" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "Promjeni ime" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Greška" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "U tijeku" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "" - -#: js/filelist.js:591 -msgid "undo" -msgstr "vrati" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -281,29 +281,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "Greška" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Ime" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Veličina" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Zadnja promjena" @@ -311,109 +303,109 @@ msgstr "Zadnja promjena" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Učitaj" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "datoteka za rukovanje" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "Maksimalna veličina prijenosa" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "maksimalna moguća: " -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "Potrebno za preuzimanje više datoteke i mape" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "Omogući ZIP-preuzimanje" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 je \"bez limita\"" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "Maksimalna veličina za ZIP datoteke" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Snimi" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "novo" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "tekstualna datoteka" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "mapa" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "Prekini upload" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Nema ničega u ovoj mapi. Pošalji nešto!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Preuzimanje" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Obriši" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Prijenos je preobiman" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Datoteke koje pokušavate prenijeti prelaze maksimalnu veličinu za prijenos datoteka na ovom poslužitelju." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Datoteke se skeniraju, molimo pričekajte." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Trenutno skeniranje" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 6e63b3157d4..96f91fea063 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "Érvénytelen elnevezés. Ezek a karakterek nem használhatók: '\\', '/', '<', '>', ':', '\"', '|', '?' és '*'" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -65,12 +65,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "A kiszolgálón nincs engedélyezve URL-ek megnyitása, kérem ellenőrizze a beállításokat" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Hiba történt miközben %s-t letöltöttük %s-be" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "Hiba történt az állomány létrehozásakor" @@ -82,62 +82,62 @@ msgstr "A mappa neve nem maradhat kitöltetlenül" msgid "Error when creating the folder" msgstr "Hiba történt a mappa létrehozásakor" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "Nem található a mappa, ahova feltölteni szeretne." -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "Hibás mappacím" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "Nem történt feltöltés. Ismeretlen hiba" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "A fájlt sikerült feltölteni" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "A feltöltött fájl mérete meghaladja a php.ini állományban megadott upload_max_filesize paraméter értékét." -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "A feltöltött fájl mérete meghaladja a MAX_FILE_SIZE paramétert, ami a HTML formban került megadásra." -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "Az eredeti fájlt csak részben sikerült feltölteni." -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "Nem töltődött fel állomány" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Hiányzik egy ideiglenes mappa" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "Nem sikerült a lemezre történő írás" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "Nincs elég szabad hely." -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "A feltöltés nem sikerült. Nem található a feltöltendő állomány." -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "A feltöltés nem sikerült. Az állományt leíró információk nem érhetők el." -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "Érvénytelen mappa." @@ -171,79 +171,79 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fájlfeltöltés van folyamatban. Az oldal elhagyása megszakítja a feltöltést." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "Az URL-cím nem maradhat kitöltetlenül" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "A kiindulási mappában a 'Shared' egy belső használatra fenntartott név" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} már létezik" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "Az állomány nem hozható létre" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "A mappa nem hozható létre" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "A megadott URL-ről nem sikerül adatokat kapni" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Megosztás" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "Végleges törlés" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "Átnevezés" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "Az állomány áthelyezése nem sikerült." + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Hiba" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "Folyamatban" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "Az állomány nem nevezhető át" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "{new_name} fájlt kicseréltük ezzel: {old_name}" - -#: js/filelist.js:591 -msgid "undo" -msgstr "visszavonás" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "Hiba a file törlése közben." -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mappa" msgstr[1] "%n mappa" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n állomány" msgstr[1] "%n állomány" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "{dirs} és {files}" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n állomány feltöltése" @@ -280,29 +280,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "A titkosítási funkciót kikapcsolták, de az Ön állományai még mindig titkosított állapotban vannak. A személyes beállításoknál tudja a titkosítást feloldani." -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Készül a letöltendő állomány. Ez eltarthat egy ideig, ha nagyok a fájlok." -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "Az állomány áthelyezése nem sikerült." - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "Hiba" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Név" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Méret" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Módosítva" @@ -310,109 +302,109 @@ msgstr "Módosítva" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Érvénytelen mappanév. A 'Shared' a rendszer számára fenntartott elnevezés." -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "%s átnevezése nem sikerült" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Feltöltés" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "Fájlkezelés" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "Maximális feltölthető fájlméret" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "max. lehetséges: " -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "Kötegelt fájl- vagy mappaletöltéshez szükséges" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "A ZIP-letöltés engedélyezése" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 = korlátlan" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "ZIP-fájlok maximális kiindulási mérete" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Mentés" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Új" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "Új szöveges file" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "Szövegfájl" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "Új mappa" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "Mappa" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "Feltöltés linkről" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "Törölt fájlok" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "A feltöltés megszakítása" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "Önnek nincs jogosultsága ahhoz, hogy ide állományokat töltsön föl, vagy itt újakat hozzon létre" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Itt nincs semmi. Töltsön fel valamit!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Letöltés" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Törlés" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "A feltöltés túl nagy" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "A feltöltendő állományok mérete meghaladja a kiszolgálón megengedett maximális méretet." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "A fájllista ellenőrzése zajlik, kis türelmet!" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Ellenőrzés alatt" diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po index 63cfd310480..94eac12f85c 100644 --- a/l10n/hu_HU/files_external.po +++ b/l10n/hu_HU/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05: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/hy/files.po b/l10n/hy/files.po index b8176dd3744..83025c434df 100644 --- a/l10n/hy/files.po +++ b/l10n/hy/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -63,12 +63,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" @@ -80,62 +80,62 @@ msgstr "" msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "" @@ -169,79 +169,79 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 -msgid "Pending" +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" msgstr "" -#: js/filelist.js:456 -msgid "Could not rename file" +#: js/filelist.js:102 js/files.js:552 +msgid "Error" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" +#: js/filelist.js:267 js/filelist.js:1113 +msgid "Pending" msgstr "" -#: js/filelist.js:591 -msgid "undo" +#: js/filelist.js:630 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -278,29 +278,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "" @@ -308,109 +300,109 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Պահպանել" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Բեռնել" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Ջնջել" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 5b6b0d60760..caded4be34c 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -63,12 +63,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" @@ -80,62 +80,62 @@ msgstr "" msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "Le file incargate solmente esseva incargate partialmente" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "Nulle file esseva incargate." -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Manca un dossier temporari" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "" @@ -169,79 +169,79 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Compartir" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 -msgid "Pending" +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" msgstr "" -#: js/filelist.js:456 -msgid "Could not rename file" -msgstr "" +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Error" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" +#: js/filelist.js:267 js/filelist.js:1113 +msgid "Pending" msgstr "" -#: js/filelist.js:591 -msgid "undo" +#: js/filelist.js:630 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -278,29 +278,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "Error" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Nomine" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Dimension" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Modificate" @@ -308,109 +300,109 @@ msgstr "Modificate" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Incargar" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "Dimension maxime de incargamento" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Salveguardar" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Nove" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "File de texto" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "Dossier" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Nihil hic. Incarga alcun cosa!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Discargar" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Deler" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Incargamento troppo longe" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "" diff --git a/l10n/id/files.po b/l10n/id/files.po index 1f2f31785c9..8b63cc4291e 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" @@ -43,7 +43,7 @@ msgid "" "allowed." msgstr "Nama tidak valid, karakter '\\', '/', '<', '>', ':', '\"', '|', '?' dan '*' tidak diizinkan." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -64,12 +64,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Galat saat mengunduh %s ke %s" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "Galat saat membuat berkas" @@ -81,62 +81,62 @@ msgstr "Nama folder tidak bolh kosong." msgid "Error when creating the folder" msgstr "Galat saat membuat folder" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "Tidak dapat mengatur folder unggah" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "Token tidak sah" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "Tidak ada berkas yang diunggah. Galat tidak dikenal." -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "Tidak ada galat, berkas sukses diunggah" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Berkas yang diunggah melampaui direktif upload_max_filesize pada php.ini" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Berkas yang diunggah melampaui direktif MAX_FILE_SIZE yang ditentukan dalam formulir HTML." -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "Berkas hanya diunggah sebagian" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "Tidak ada berkas yang diunggah" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Folder sementara tidak ada" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "Gagal menulis ke disk" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "Ruang penyimpanan tidak mencukupi" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "Unggah gagal. Tidak menemukan berkas yang akan diunggah" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "Unggah gagal. Tidak mendapatkan informasi berkas." -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "Direktori tidak valid." @@ -170,77 +170,77 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Berkas sedang diunggah. Meninggalkan halaman ini akan membatalkan proses." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "URL tidak boleh kosong" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Pada folder home, 'Shared' adalah nama berkas yang sudah digunakan" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} sudah ada" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "Tidak dapat membuat berkas" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "Tidak dapat membuat folder" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Bagikan" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "Hapus secara permanen" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "Ubah nama" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "Galat saat memindahkan berkas" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Galat" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "Menunggu" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "Tidak dapat mengubah nama berkas" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "mengganti {new_name} dengan {old_name}" - -#: js/filelist.js:591 -msgid "undo" -msgstr "urungkan" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "Galat saat menghapus berkas." -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n folder" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n berkas" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "{dirs} dan {files}" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Mengunggah %n berkas" @@ -276,29 +276,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "Enskripi telah dinonaktifkan tetapi berkas anda tetap dienskripsi. Silakan menuju ke pengaturan pribadi untuk deskrip berkas anda." -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Unduhan Anda sedang disiapkan. Prosesnya dapat berlangsung agak lama jika ukuran berkasnya besar." -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "Galat saat memindahkan berkas" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "Galat" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Nama" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Ukuran" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Dimodifikasi" @@ -306,109 +298,109 @@ msgstr "Dimodifikasi" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Nama folder tidak sah. Menggunakan 'Shared' sudah digunakan." -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "%s tidak dapat diubah nama" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Unggah" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "Penanganan berkas" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "Ukuran pengunggahan maksimum" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "Kemungkinan maks.:" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "Dibutuhkan untuk pengunduhan multi-berkas dan multi-folder" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "Aktifkan unduhan ZIP" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 berarti tidak terbatas" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "Ukuran masukan maksimum untuk berkas ZIP" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Simpan" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Baru" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "Berkas teks baru" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "Berkas teks" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "Map baru" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "Folder" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "Dari tautan" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "Berkas yang dihapus" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "Batal pengunggahan" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "Anda tidak memiliki akses untuk mengunggah atau membuat berkas disini" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Tidak ada apa-apa di sini. Unggah sesuatu!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Unduh" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Hapus" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Yang diunggah terlalu besar" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Berkas yang dicoba untuk diunggah melebihi ukuran maksimum pengunggahan berkas di server ini." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Berkas sedang dipindai, silakan tunggu." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Yang sedang dipindai" diff --git a/l10n/id/files_external.po b/l10n/id/files_external.po index 973478f549c..3ac07bace7e 100644 --- a/l10n/id/files_external.po +++ b/l10n/id/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05: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 82f83fd1b11..bd2bbad19c8 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: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "Ógilt nafn, táknin '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' eru ekki leyfð." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -63,12 +63,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" @@ -80,62 +80,62 @@ msgstr "" msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "Engin skrá var send inn. Óþekkt villa." -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "Engin villa, innsending heppnaðist" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Innsend skrá er stærri en upload_max stillingin í php.ini:" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Innsenda skráin er stærri en MAX_FILE_SIZE sem skilgreint er í HTML sniðinu." -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "Einungis hluti af innsendri skrá skilaði sér" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "Engin skrá skilaði sér" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Vantar bráðabirgðamöppu" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "Tókst ekki að skrifa á disk" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "Ógild mappa." @@ -169,79 +169,79 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Innsending í gangi. Ef þú ferð af þessari síðu mun innsending misheppnast." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} er þegar til" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Deila" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "Endurskýra" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Villa" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "Bíður" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "yfirskrifaði {new_name} með {old_name}" - -#: js/filelist.js:591 -msgid "undo" -msgstr "afturkalla" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -278,29 +278,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "Villa" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Nafn" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Stærð" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Breytt" @@ -308,109 +300,109 @@ msgstr "Breytt" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Senda inn" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "Meðhöndlun skrár" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "Hámarks stærð innsendingar" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "hámark mögulegt: " -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "Nauðsynlegt til að sækja margar skrár og möppur í einu." -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "Virkja ZIP niðurhal." -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 er ótakmarkað" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "Hámarks inntaksstærð fyrir ZIP skrár" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Vista" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Nýtt" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "Texta skrá" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "Mappa" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "Af tengli" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "Hætta við innsendingu" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Ekkert hér. Settu eitthvað inn!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Niðurhal" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Eyða" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Innsend skrá er of stór" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Skrárnar sem þú ert að senda inn eru stærri en hámarks innsendingarstærð á þessum netþjóni." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Verið er að skima skrár, vinsamlegast hinkraðu." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Er að skima" diff --git a/l10n/is/files_external.po b/l10n/is/files_external.po index c3eed246e35..77acf36be51 100644 --- a/l10n/is/files_external.po +++ b/l10n/is/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05: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 2b729d50968..dca986f6c55 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: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "Nome non valido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non sono consentiti." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "La cartella di destinazione è stata spostata o eliminata." @@ -65,12 +65,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Al server non è permesso aprire URL, controlla la configurazione del server" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Errore durante lo scaricamento di %s su %s" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "Errore durante la creazione del file" @@ -82,62 +82,62 @@ msgstr "Il nome della cartella non può essere vuoto." msgid "Error when creating the folder" msgstr "Errore durante la creazione della cartella" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "Impossibile impostare una cartella di caricamento." -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "Token non valido" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "Nessun file è stato inviato. Errore sconosciuto" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "Non ci sono errori, il file è stato caricato correttamente" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Il file caricato supera la direttiva upload_max_filesize in php.ini:" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Il file inviato supera la direttiva MAX_FILE_SIZE specificata nel modulo HTML" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "Il file è stato caricato solo parzialmente" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "Nessun file è stato caricato" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Manca una cartella temporanea" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "Scrittura su disco non riuscita" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "Spazio di archiviazione insufficiente" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "Caricamento non riuscito. Impossibile trovare il file caricato." -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "Caricamento non riuscito. Impossibile ottenere informazioni sul file." -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "Cartella non valida." @@ -171,79 +171,79 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Caricamento del file in corso. La chiusura della pagina annullerà il caricamento." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "L'URL non può essere vuoto." -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Nella cartella home 'Shared' è un nome riservato" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} esiste già" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "Impossibile creare il file" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "Impossibile creare la cartella" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "Errore durante il recupero dello URL" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Condividi" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "Elimina definitivamente" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "Rinomina" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "Errore durante lo spostamento del file" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Errore" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "In corso" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "Impossibile rinominare il file" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "sostituito {new_name} con {old_name}" - -#: js/filelist.js:591 -msgid "undo" -msgstr "annulla" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "Errore durante l'eliminazione del file." -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n cartella" msgstr[1] "%n cartelle" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n file" msgstr[1] "%n file" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "{dirs} e {files}" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Caricamento di %n file in corso" @@ -280,29 +280,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "La cifratura è stata disabilitata ma i tuoi file sono ancora cifrati. Vai nelle impostazioni personali per decifrare i file." -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Il tuo scaricamento è in fase di preparazione. Ciò potrebbe richiedere del tempo se i file sono grandi." -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "Errore durante lo spostamento del file" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "Errore" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Nome" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Dimensione" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Modificato" @@ -310,109 +302,109 @@ msgstr "Modificato" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Nome della cartella non valido. L'uso di 'Shared' è riservato." -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "%s non può essere rinominato" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Carica" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "Gestione file" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "Dimensione massima upload" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "numero mass.: " -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "Necessario per lo scaricamento di file multipli e cartelle." -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "Abilita scaricamento ZIP" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 è illimitato" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "Dimensione massima per i file ZIP" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Salva" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Nuovo" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "Nuovo file di testo" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "File di testo" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "Nuova cartella" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "Cartella" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "Da collegamento" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "File eliminati" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "Annulla invio" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "Qui non hai i permessi di caricare o creare file" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Non c'è niente qui. Carica qualcosa!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Scarica" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Elimina" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Caricamento troppo grande" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "I file che stai provando a caricare superano la dimensione massima consentita su questo server." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Scansione dei file in corso, attendi" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Scansione corrente" diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index fc9d04fac63..7b6a0f18694 100644 --- a/l10n/it/files_external.po +++ b/l10n/it/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-03 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 17:41+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05: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 2edd7721bcf..e02fc127bd9 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: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 12:01+0000\n" -"Last-Translator: Paolo Velati \n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-03 20:20+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" @@ -55,7 +55,7 @@ msgstr "Devi impostare l'indirizzo del tuo utente prima di poter provare l'invio msgid "Send mode" msgstr "Modalità di invio" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "Cifratura" @@ -68,7 +68,7 @@ msgid "Unable to load list from App Store" msgstr "Impossibile caricare l'elenco dall'App Store" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Errore di autenticazione" @@ -130,32 +130,32 @@ msgstr "Impossibile rimuovere l'utente dal gruppo %s" msgid "Couldn't update app." msgstr "Impossibile aggiornate l'applicazione." -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "Password errata" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "Non è stato fornito alcun utente" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "Fornisci una password amministrativa di ripristino altrimenti tutti i dati degli utenti saranno persi." -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "Password amministrativa di ripristino errata. Controlla la password e prova ancora." -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "Il motore non supporta la modifica della password, ma la chiave di cifratura dell'utente è stata aggiornata correttamente." -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "Impossibile cambiare la password" @@ -207,7 +207,7 @@ msgstr "Errore durante l'aggiornamento" msgid "Error" msgstr "Errore" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "Aggiorna" @@ -288,7 +288,7 @@ msgstr "Deve essere fornita una password valida" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Avviso: la cartella home dell'utente \"{user}\" esiste già" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "Italiano" @@ -440,11 +440,11 @@ msgstr "L'ultimo cron è stato eseguito alle %s." msgid "" "Last cron was executed at %s. This is more than an hour ago, something seems" " wrong." -msgstr "L'ultimo cron è stato eseguito alle %s. È più di un ora fa, qualcosa sembra sbagliato." +msgstr "L'ultimo cron è stato eseguito alle %s. È più di un'ora fa, potrebbe esserci qualche problema." #: templates/admin.php:174 msgid "Cron was not executed yet!" -msgstr "Cron non è ancora stato eseguito!" +msgstr "Cron non è stato ancora eseguito!" #: templates/admin.php:184 msgid "Execute one task with each page loaded" @@ -593,11 +593,11 @@ msgstr "Altro" msgid "Less" msgstr "Meno" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "Versione" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "-licenziato da " @@ -668,108 +668,108 @@ msgstr "Mostra nuovamente la procedura di primo avvio" msgid "You have used %s of the available %s" msgstr "Hai utilizzato %s dei %s disponibili" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Password" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "La tua password è cambiata" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "Modifica password non riuscita" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "Password attuale" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "Nuova password" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "Modifica password" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "Nome completo" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "Posta elettronica" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "Il tuo indirizzo email" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Inserisci il tuo indirizzo di posta per abilitare il recupero della password e ricevere notifiche" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "Immagine del profilo" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "Carica nuova" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "Seleziona nuova da file" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "Rimuovi immagine" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Sia png che jpg. Preferibilmente quadrata, ma potrai ritagliarla." -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "Il tuo avatar è ottenuto dal tuo account originale." -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Annulla" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "Scegli come immagine del profilo" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "Lingua" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "Migliora la traduzione" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Utilizza questo indirizzo per accedere ai tuoi file con WebDAV" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "L'applicazione di cifratura non è più abilitata, decifra tutti i tuoi file" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "Password di accesso" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "Decifra tutti i file" diff --git a/l10n/ja/files.po b/l10n/ja/files.po index 02c744dddc1..0ac2ef5d918 100644 --- a/l10n/ja/files.po +++ b/l10n/ja/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" @@ -49,7 +49,7 @@ msgid "" "allowed." msgstr "無効な名前、'\\', '/', '<', '>', ':', '\"', '|', '?', '*' は使用できません。" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "目標のフォルダは移動されたか、削除されました。" @@ -70,12 +70,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "サーバーは、URLを開くことは許されません。サーバーの設定をチェックしてください。" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "%s から %s へのダウンロードエラー" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "ファイルの生成エラー" @@ -87,62 +87,62 @@ msgstr "フォルダー名は空にできません" msgid "Error when creating the folder" msgstr "フォルダーの生成エラー" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "アップロードディレクトリを設定できません。" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "無効なトークン" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "ファイルは何もアップロードされていません。不明なエラー" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "エラーはありません。ファイルのアップロードは成功しました" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "アップロードされたファイルはphp.ini の upload_max_filesize に設定されたサイズを超えています:" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "アップロードファイルはHTMLフォームで指定された MAX_FILE_SIZE の制限を超えています" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "アップロードファイルは一部分だけアップロードされました" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "ファイルはアップロードされませんでした" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "一時保存フォルダーが見つかりません" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "ディスクへの書き込みに失敗しました" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "ストレージに十分な空き容量がありません" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "アップロードに失敗。アップロード済みのファイルを見つけることができませんでした。" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "アップロードに失敗。ファイル情報を取得できませんでした。" -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "無効なディレクトリです。" @@ -176,77 +176,77 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。" -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "URL は空にできません" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "ホームフォルダーでは、'Shared' はシステムが使用する予約済みのファイル名です" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} はすでに存在します" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "ファイルを作成できませんでした" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "フォルダーを作成できませんでした" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "URL取得エラー" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "共有" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "完全に削除する" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "名前の変更" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "ファイルの移動エラー" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "エラー" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "中断" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "ファイルの名前変更ができませんでした" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "{old_name} を {new_name} に置換" - -#: js/filelist.js:591 -msgid "undo" -msgstr "元に戻す" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "ファイルの削除エラー。" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n 個のフォルダー" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n 個のファイル" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "{dirs} と {files}" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n 個のファイルをアップロード中" @@ -282,29 +282,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "暗号化の機能は無効化されましたが、ファイルはすでに暗号化されています。個人設定からファイルを複合を行ってください。" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "ダウンロードの準備中です。ファイルサイズが大きい場合は少し時間がかかるかもしれません。" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "ファイルの移動エラー" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "エラー" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "名前" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "サイズ" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "更新日時" @@ -312,109 +304,109 @@ msgstr "更新日時" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "無効なフォルダー名。「Shared」の利用は予約されています。" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "%sの名前を変更できませんでした" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "アップロード" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "ファイル操作" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "最大アップロードサイズ" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "最大容量: " -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "複数ファイルおよびフォルダーのダウンロードに必要" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "ZIP形式のダウンロードを有効にする" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0を指定した場合は無制限" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "ZIPファイルでの最大入力サイズ" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "保存" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "新規作成" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "新規のテキストファイル作成" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "テキストファイル" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "新しいフォルダー" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "フォルダー" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "リンク" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "ゴミ箱" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "アップロードをキャンセル" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "ここにファイルをアップロードもしくは作成する権限がありません" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "ここには何もありません。何かアップロードしてください。" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "ダウンロード" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "削除" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "アップロードには大きすぎます。" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "アップロードしようとしているファイルは、サーバーで規定された最大サイズを超えています。" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "ファイルをスキャンしています、しばらくお待ちください。" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "スキャン中" diff --git a/l10n/ja/files_external.po b/l10n/ja/files_external.po index 0fae2657083..937aeede4d7 100644 --- a/l10n/ja/files_external.po +++ b/l10n/ja/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05: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 227a54b6dd7..71cff17cdab 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: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "არადაშვებადი სახელი, '\\', '/', '<', '>', ':', '\"', '|', '?' და '*' არ არის დაიშვებული." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -63,12 +63,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" @@ -80,62 +80,62 @@ msgstr "" msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "ფაილი არ აიტვირთა. უცნობი შეცდომა" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "ჭოცდომა არ დაფიქსირდა, ფაილი წარმატებით აიტვირთა" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "ატვირთული ფაილი აჭარბებს upload_max_filesize დირექტივას php.ini ფაილში" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "ატვირთული ფაილი აჭარბებს MAX_FILE_SIZE დირექტივას, რომელიც მითითებულია HTML ფორმაში" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "ატვირთული ფაილი მხოლოდ ნაწილობრივ აიტვირთა" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "ფაილი არ აიტვირთა" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "დროებითი საქაღალდე არ არსებობს" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "შეცდომა დისკზე ჩაწერისას" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "საცავში საკმარისი ადგილი არ არის" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "დაუშვებელი დირექტორია." @@ -169,77 +169,77 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "მიმდინარეობს ფაილის ატვირთვა. სხვა გვერდზე გადასვლა გამოიწვევს ატვირთვის შეჩერებას" -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} უკვე არსებობს" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "გაზიარება" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "სრულად წაშლა" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "გადარქმევა" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "შეცდომა" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "მოცდის რეჟიმში" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "{new_name} შეცვლილია {old_name}–ით" - -#: js/filelist.js:591 -msgid "undo" -msgstr "დაბრუნება" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -275,29 +275,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "გადმოწერის მოთხოვნა მუშავდება. ის მოითხოვს გარკვეულ დროს რაგდან ფაილები არის დიდი ზომის." -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "შეცდომა" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "სახელი" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "ზომა" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "შეცვლილია" @@ -305,109 +297,109 @@ msgstr "შეცვლილია" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "ატვირთვა" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "ფაილის დამუშავება" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "მაქსიმუმ ატვირთის ზომა" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "მაქს. შესაძლებელი:" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "საჭიროა მულტი ფაილ ან საქაღალდის ჩამოტვირთვა." -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "ZIP-Download–ის ჩართვა" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 is unlimited" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "ZIP ფაილების მაქსიმუმ დასაშვები ზომა" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "შენახვა" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "ახალი" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "ტექსტური ფაილი" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "ახალი ფოლდერი" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "საქაღალდე" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "მისამართიდან" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "წაშლილი ფაილები" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "ატვირთვის გაუქმება" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "აქ არაფერი არ არის. ატვირთე რამე!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "ჩამოტვირთვა" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "წაშლა" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "ასატვირთი ფაილი ძალიან დიდია" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "ფაილის ზომა რომლის ატვირთვასაც თქვენ აპირებთ, აჭარბებს სერვერზე დაშვებულ მაქსიმუმს." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "მიმდინარეობს ფაილების სკანირება, გთხოვთ დაელოდოთ." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "მიმდინარე სკანირება" diff --git a/l10n/ka_GE/files_external.po b/l10n/ka_GE/files_external.po index 49078b2b1af..fbdafbd0c7e 100644 --- a/l10n/ka_GE/files_external.po +++ b/l10n/ka_GE/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05: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/km/files.po b/l10n/km/files.po index 828078cedad..ac62c9a40c5 100644 --- a/l10n/km/files.po +++ b/l10n/km/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -63,12 +63,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" @@ -80,62 +80,62 @@ msgstr "" msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "" @@ -169,77 +169,77 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "ចែក​រំលែក" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 -msgid "Pending" +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" msgstr "" -#: js/filelist.js:456 -msgid "Could not rename file" -msgstr "" +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "កំហុស" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" +#: js/filelist.js:267 js/filelist.js:1113 +msgid "Pending" msgstr "" -#: js/filelist.js:591 -msgid "undo" -msgstr "មិន​ធ្វើ​វិញ" +#: js/filelist.js:630 +msgid "Could not rename file" +msgstr "" -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -275,29 +275,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "កំហុស" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "ឈ្មោះ" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "ទំហំ" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "" @@ -305,109 +297,109 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "ផ្ទុក​ឡើង" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "រក្សាទុក" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "ថត​ថ្មី" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "ថត" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "ទាញយក" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "លុប" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "" diff --git a/l10n/km/files_external.po b/l10n/km/files_external.po index fe223709085..ccb2b335ee0 100644 --- a/l10n/km/files_external.po +++ b/l10n/km/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:30+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/kn/files.po b/l10n/kn/files.po index 7d748ebfa9a..0476da9576d 100644 --- a/l10n/kn/files.po +++ b/l10n/kn/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -17,48 +17,48 @@ msgstr "" "Language: kn\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" @@ -68,74 +68,74 @@ msgstr "" msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "" @@ -156,90 +156,90 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 -msgid "Pending" +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" msgstr "" -#: js/filelist.js:456 -msgid "Could not rename file" +#: js/filelist.js:102 js/files.js:552 +msgid "Error" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" +#: js/filelist.js:267 js/filelist.js:1113 +msgid "Pending" msgstr "" -#: js/filelist.js:591 -msgid "undo" +#: js/filelist.js:630 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -275,29 +275,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "" @@ -305,109 +297,109 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 45ee79b1c1a..5374b3edc40 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" @@ -48,7 +48,7 @@ msgid "" "allowed." msgstr "폴더 이름이 올바르지 않습니다. 이름에 문자 '\\', '/', '<', '>', ':', '\"', '|', '? ', '*'는 사용할 수 없습니다." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -69,12 +69,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "서버에서 URL을 열 수 없습니다. 서버 설정을 확인하십시오" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "%s을(를) %s(으)로 다운로드하는 중 오류 발생" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "파일 생성 중 오류 발생" @@ -86,62 +86,62 @@ msgstr "폴더 이름이 비어있을 수 없습니다." msgid "Error when creating the folder" msgstr "폴더 생성 중 오류 발생" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "업로드 디렉터리를 설정할 수 없습니다." -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "잘못된 토큰" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "파일이 업로드 되지 않았습니다. 알 수 없는 오류입니다" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "파일 업로드에 성공하였습니다." -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "업로드한 파일이 php.ini의 upload_max_filesize보다 큽니다:" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "업로드한 파일 크기가 HTML 폼의 MAX_FILE_SIZE보다 큼" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "파일의 일부분만 업로드됨" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "파일이 업로드되지 않았음" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "임시 폴더가 없음" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "디스크에 쓰지 못했습니다" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "저장소가 용량이 충분하지 않습니다." -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "업로드에 실패했습니다. 업로드할 파일을 찾을 수 없습니다" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "업로드에 실패했습니다. 파일 정보를 가져올 수 없습니다." -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "올바르지 않은 디렉터리입니다." @@ -175,77 +175,77 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "파일 업로드가 진행 중입니다. 이 페이지를 벗어나면 업로드가 취소됩니다." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "URL이 비어있을 수 없음" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "'공유됨'은 홈 폴더의 예약된 파일 이름임" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name}이(가) 이미 존재함" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "파일을 만들 수 없음" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "폴더를 만들 수 없음" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "URL을 가져올 수 없음" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "공유" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "영구히 삭제" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "이름 바꾸기" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "파일 이동 오류" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "오류" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "대기 중" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "이름을 변경할 수 없음" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "{old_name}이(가) {new_name}(으)로 대체됨" - -#: js/filelist.js:591 -msgid "undo" -msgstr "실행 취소" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "파일 삭제 오류." -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "폴더 %n개" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "파일 %n개" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "{dirs} 그리고 {files}" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "파일 %n개 업로드 중" @@ -281,29 +281,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "암호화는 해제되어 있지만, 파일은 아직 암호화되어 있습니다. 개인 설정에서 파일을 복호화하십시오." -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "다운로드 준비 중입니다. 파일 크기가 크면 시간이 오래 걸릴 수도 있습니다." -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "파일 이동 오류" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "오류" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "이름" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "크기" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "수정됨" @@ -311,109 +303,109 @@ msgstr "수정됨" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "폴더 이름이 잘못되었습니다. '공유됨'은 예약된 폴더 이름입니다." -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "%s의 이름을 변경할 수 없습니다" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "업로드" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "파일 처리" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "최대 업로드 크기" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "최대 가능:" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "다중 파일 및 폴더 다운로드에 필요합니다." -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "ZIP 다운로드 허용" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0은 무제한입니다" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "ZIP 파일 최대 크기" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "저장" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "새로 만들기" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "새 텍스트 파일" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "텍스트 파일" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "새 폴더" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "폴더" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "링크에서" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "삭제된 파일" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "업로드 취소" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "여기에 파일을 업로드하거나 만들 권한이 없습니다" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "내용이 없습니다. 업로드할 수 있습니다!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "다운로드" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "삭제" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "업로드한 파일이 너무 큼" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "이 파일이 서버에서 허용하는 최대 업로드 가능 용량보다 큽니다." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "파일을 검색하고 있습니다. 기다려 주십시오." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "현재 검색" diff --git a/l10n/ko/files_external.po b/l10n/ko/files_external.po index 81367021f76..25627c2645a 100644 --- a/l10n/ko/files_external.po +++ b/l10n/ko/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05: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/ku_IQ/files.po b/l10n/ku_IQ/files.po index 36645752f11..5f3a1447686 100644 --- a/l10n/ku_IQ/files.po +++ b/l10n/ku_IQ/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:55+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -63,12 +63,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" @@ -80,62 +80,62 @@ msgstr "" msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "" @@ -169,79 +169,79 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "هاوبەشی کردن" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 -msgid "Pending" +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" msgstr "" -#: js/filelist.js:456 -msgid "Could not rename file" -msgstr "" +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "هه‌ڵه" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" +#: js/filelist.js:267 js/filelist.js:1113 +msgid "Pending" msgstr "" -#: js/filelist.js:591 -msgid "undo" +#: js/filelist.js:630 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -278,29 +278,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "هه‌ڵه" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "ناو" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "" @@ -308,109 +300,109 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "بارکردن" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "پاشکه‌وتکردن" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "بوخچه" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "داگرتن" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "" diff --git a/l10n/ku_IQ/files_external.po b/l10n/ku_IQ/files_external.po index 1fa3126886f..a82954cda7b 100644 --- a/l10n/ku_IQ/files_external.po +++ b/l10n/ku_IQ/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:30+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" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 9f74628eee0..98509d0c5cf 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -63,12 +63,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" @@ -80,62 +80,62 @@ msgstr "" msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "Keen Feeler, Datei ass komplett ropgelueden ginn" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Déi ropgelueden Datei ass méi grouss wei d'MAX_FILE_SIZE Eegenschaft déi an der HTML form uginn ass" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "Déi ropgelueden Datei ass nëmmen hallef ropgelueden ginn" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "Et ass kee Fichier ropgeluede ginn" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Et feelt en temporären Dossier" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "Konnt net op den Disk schreiwen" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "" @@ -169,79 +169,79 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "File Upload am gaang. Wann's de des Säit verléiss gëtt den Upload ofgebrach." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Deelen" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "Ëm-benennen" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 -msgid "Pending" +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" msgstr "" -#: js/filelist.js:456 -msgid "Could not rename file" -msgstr "" +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Fehler" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" +#: js/filelist.js:267 js/filelist.js:1113 +msgid "Pending" msgstr "" -#: js/filelist.js:591 -msgid "undo" -msgstr "réckgängeg man" +#: js/filelist.js:630 +msgid "Could not rename file" +msgstr "" -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -278,29 +278,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "Fehler" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Numm" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Gréisst" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Geännert" @@ -308,109 +300,109 @@ msgstr "Geännert" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Eroplueden" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "Fichier handling" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "Maximum Upload Gréisst " -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "max. méiglech:" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "Gett gebraucht fir multi-Fichier an Dossier Downloads." -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "ZIP-download erlaben" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 ass onlimitéiert" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "Maximal Gréisst fir ZIP Fichieren" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Späicheren" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Nei" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "Text Fichier" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "Dossier" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "Upload ofbriechen" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Hei ass näischt. Lued eppes rop!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Download" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Läschen" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Upload ze grouss" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Déi Dateien déi Dir probéiert erop ze lueden sinn méi grouss wei déi Maximal Gréisst déi op dësem Server erlaabt ass." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Fichieren gi gescannt, war weg." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Momentane Scan" diff --git a/l10n/lb/files_external.po b/l10n/lb/files_external.po index 4c85dc9b81b..c0982f45a98 100644 --- a/l10n/lb/files_external.po +++ b/l10n/lb/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:30+0000\n" "Last-Translator: I Robot\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 7d183402126..8d013e7a1ab 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: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" @@ -45,7 +45,7 @@ msgid "" "allowed." msgstr "Neleistinas pavadinimas, '\\', '/', '<', '>', ':', '\"', '|', '?' ir '*' yra neleidžiami." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -66,12 +66,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Serveriui neleidžiama atverti URL, prašome patikrinti serverio konfigūraciją" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Klaida siunčiant %s į %s" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "Klaida kuriant failą" @@ -83,62 +83,62 @@ msgstr "Aplanko pavadinimas negali būti tuščias." msgid "Error when creating the folder" msgstr "Klaida kuriant aplanką" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "Nepavyksta nustatyti įkėlimų katalogo." -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "Netinkamas ženklas" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "Failai nebuvo įkelti dėl nežinomos priežasties" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "Failas įkeltas sėkmingai, be klaidų" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Įkeliamas failas yra didesnis nei leidžia upload_max_filesize php.ini faile:" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Įkeliamo failo dydis viršija MAX_FILE_SIZE nustatymą, kuris naudojamas HTML formoje." -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "Failas buvo įkeltas tik dalinai" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "Nebuvo įkeltas joks failas" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Nėra laikinojo katalogo" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "Nepavyko įrašyti į diską" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "Nepakanka vietos serveryje" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "Įkėlimas nepavyko. Nepavyko rasti įkelto failo" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "Įkėlimas nepavyko. Nepavyko gauti failo informacijos." -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "Neteisingas aplankas" @@ -172,81 +172,81 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Failo įkėlimas pradėtas. Jei paliksite šį puslapį, įkėlimas nutrūks." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "URL negali būti tuščias." -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Pradiniame aplanke failo pavadinimas „Shared“ yra rezervuotas" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} jau egzistuoja" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "Neįmanoma sukurti failo" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "Neįmanoma sukurti aplanko" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "Klauda gaunant URL" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Dalintis" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "Ištrinti negrįžtamai" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "Pervadinti" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "Klaida perkeliant failą" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Klaida" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "Laukiantis" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "Neįmanoma pervadinti failo" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "pakeiskite {new_name} į {old_name}" - -#: js/filelist.js:591 -msgid "undo" -msgstr "anuliuoti" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "Klaida trinant failą." -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n aplankas" msgstr[1] "%n aplankai" msgstr[2] "%n aplankų" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n failas" msgstr[1] "%n failai" msgstr[2] "%n failų" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "{dirs} ir {files}" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Įkeliamas %n failas" @@ -284,29 +284,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "Šifravimas buvo išjungtas, bet Jūsų failai vis dar užšifruoti. Prašome eiti į asmeninius nustatymus ir iššifruoti savo failus." -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Jūsų atsisiuntimas yra paruošiamas. tai gali užtrukti jei atsisiunčiamas didelis failas." -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "Klaida perkeliant failą" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "Klaida" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Pavadinimas" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Dydis" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Pakeista" @@ -314,109 +306,109 @@ msgstr "Pakeista" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Netinkamas aplanko pavadinimas. „Shared“ pavadinimas yra rezervuotas." -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "%s negali būti pervadintas" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Įkelti" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "Failų tvarkymas" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "Maksimalus įkeliamo failo dydis" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "maks. galima:" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "Reikalinga daugybinui failų ir aplankalų atsisiuntimui." -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "Įjungti atsisiuntimą ZIP archyvu" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 yra neribotas" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "Maksimalus ZIP archyvo failo dydis" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Išsaugoti" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Naujas" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "Naujas tekstinis failas" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "Teksto failas" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "Naujas aplankas" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "Katalogas" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "Iš nuorodos" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "Ištrinti failai" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "Atšaukti siuntimą" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "Jūs neturite leidimo čia įkelti arba kurti failus" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Čia tuščia. Įkelkite ką nors!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Atsisiųsti" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Ištrinti" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Įkėlimui failas per didelis" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Bandomų įkelti failų dydis viršija maksimalų, kuris leidžiamas šiame serveryje" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Skenuojami failai, prašome palaukti." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Šiuo metu skenuojama" diff --git a/l10n/lt_LT/files_external.po b/l10n/lt_LT/files_external.po index 70e715d7350..d3494e5e92d 100644 --- a/l10n/lt_LT/files_external.po +++ b/l10n/lt_LT/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05: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 23f5f3998b0..8c47b755a3c 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: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" @@ -43,7 +43,7 @@ msgid "" "allowed." msgstr "Nederīgs nosaukums, nav atļauti '\\', '/', '<', '>', ':', '\"', '|', '?' un '*'." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -64,12 +64,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" @@ -81,62 +81,62 @@ msgstr "" msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "Nevar uzstādīt augšupielādes mapi." -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "Nepareiza pilnvara" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "Netika augšupielādēta neviena datne. Nezināma kļūda" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "Viss kārtībā, datne augšupielādēta veiksmīga" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Augšupielādētā datne pārsniedz upload_max_filesize norādījumu php.ini datnē:" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Augšupielādētā datne pārsniedz MAX_FILE_SIZE norādi, kas ir norādīta HTML formā" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "Augšupielādētā datne ir tikai daļēji augšupielādēta" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "Neviena datne netika augšupielādēta" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Trūkst pagaidu mapes" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "Neizdevās saglabāt diskā" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "Nav pietiekami daudz vietas" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "Nederīga direktorija." @@ -170,81 +170,81 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Notiek augšupielāde. Pametot lapu tagad, tiks atcelta augšupielāde." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} jau eksistē" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Dalīties" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "Dzēst pavisam" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "Pārsaukt" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Kļūda" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "Gaida savu kārtu" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "aizvietoja {new_name} ar {old_name}" - -#: js/filelist.js:591 -msgid "undo" -msgstr "atsaukt" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mapes" msgstr[1] "%n mape" msgstr[2] "%n mapes" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n faili" msgstr[1] "%n fails" msgstr[2] "%n faili" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n" @@ -282,29 +282,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "Šifrēšana tika atslēgta, tomēr jūsu faili joprojām ir šifrēti. Atšifrēt failus var Personiskajos uzstādījumos." -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Tiek sagatavota lejupielāde. Tas var aizņemt kādu laiciņu, ja datnes ir lielas." -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "Kļūda" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Nosaukums" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Izmērs" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Mainīts" @@ -312,109 +304,109 @@ msgstr "Mainīts" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "%s nevar tikt pārsaukts" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Augšupielādēt" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "Datņu pārvaldība" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "Maksimālais datņu augšupielādes apjoms" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "maksimālais iespējamais:" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "Vajadzīgs vairāku datņu un mapju lejupielādēšanai." -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "Aktivēt ZIP lejupielādi" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 ir neierobežots" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "Maksimālais ievades izmērs ZIP datnēm" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Saglabāt" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Jauna" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "Teksta datne" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "Jauna mape" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "Mape" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "No saites" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "Dzēstās datnes" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "Atcelt augšupielādi" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Te vēl nekas nav. Rīkojies, sāc augšupielādēt!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Lejupielādēt" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Dzēst" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Datne ir par lielu, lai to augšupielādētu" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Augšupielādējamās datnes pārsniedz servera pieļaujamo datņu augšupielādes apjomu" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Datnes šobrīd tiek caurskatītas, lūdzu, uzgaidiet." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Šobrīd tiek caurskatīts" diff --git a/l10n/lv/files_external.po b/l10n/lv/files_external.po index 018b1a84aad..ce94ed49e8a 100644 --- a/l10n/lv/files_external.po +++ b/l10n/lv/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05: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 7f907ff611e..72dd6a1caf7 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: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" @@ -43,7 +43,7 @@ msgid "" "allowed." msgstr "Неправилно име. , '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' не се дозволени." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -64,12 +64,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Грешка додека преземам %s to %s" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "Грешка при креирање на датотека" @@ -81,62 +81,62 @@ msgstr "Името на папката не може да биде празно. msgid "Error when creating the folder" msgstr "Грешка при креирање на папка" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "Не може да се постави папката за префрлање на податоци." -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "Грешен токен" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "Ниту еден фајл не се вчита. Непозната грешка" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "Датотеката беше успешно подигната." -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Подигнатата датотека ја надминува upload_max_filesize директивата во php.ini:" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Големината на датотеката ја надминува MAX_FILE_SIZE директивата која беше специфицирана во HTML формата" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "Датотеката беше само делумно подигната." -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "Не беше подигната датотека." -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Недостасува привремена папка" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "Неуспеав да запишам на диск" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "Нема доволно слободен сториџ" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "Префрлањето е неуспешно. Не можам да го најдам префрлената датотека." -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "Погрешна папка." @@ -170,79 +170,79 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Подигање на датотека е во тек. Напуштење на страницата ќе го прекине." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "URL-то не може да биде празно" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Во домашната папка, 'Shared' е резервирано има на датотека/папка" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} веќе постои" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "Не множам да креирам датотека" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "Не можам да креирам папка" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Сподели" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "Трајно избришани" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "Преименувај" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "Грешка при префрлање на датотека" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Грешка" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "Чека" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "Не можам да ја преименувам датотеката" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "заменета {new_name} со {old_name}" - -#: js/filelist.js:591 -msgid "undo" -msgstr "врати" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "{dirs} и {files}" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -279,29 +279,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Вашето преземање се подготвува. Ова може да потрае до колку датотеките се големи." -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "Грешка при префрлање на датотека" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "Грешка" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Име" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Големина" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Променето" @@ -309,109 +301,109 @@ msgstr "Променето" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "%s не може да биде преименуван" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Подигни" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "Ракување со датотеки" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "Максимална големина за подигање" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "макс. можно:" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "Потребно за симнување повеќе-датотеки и папки." -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "Овозможи ZIP симнување " -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 е неограничено" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "Максимална големина за внес на ZIP датотеки" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Сними" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Ново" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "Текстуална датотека" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "Папка" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "Од врска" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "Избришани датотеки" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "Откажи прикачување" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Тука нема ништо. Снимете нешто!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Преземи" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Избриши" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Фајлот кој се вчитува е преголем" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Датотеките кои се обидувате да ги подигнете ја надминуваат максималната големина за подигнување датотеки на овој сервер." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Се скенираат датотеки, ве молам почекајте." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Моментално скенирам" diff --git a/l10n/mk/files_external.po b/l10n/mk/files_external.po index 1b4e33ad67a..9355e9e35f7 100644 --- a/l10n/mk/files_external.po +++ b/l10n/mk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05: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/ml/files.po b/l10n/ml/files.po index 219f522da5f..6d8c4b14482 100644 --- a/l10n/ml/files.po +++ b/l10n/ml/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" "MIME-Version: 1.0\n" @@ -17,48 +17,48 @@ msgstr "" "Language: ml\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" @@ -68,74 +68,74 @@ msgstr "" msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "" @@ -156,92 +156,92 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 -msgid "Pending" +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" msgstr "" -#: js/filelist.js:456 -msgid "Could not rename file" +#: js/filelist.js:102 js/files.js:552 +msgid "Error" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" +#: js/filelist.js:267 js/filelist.js:1113 +msgid "Pending" msgstr "" -#: js/filelist.js:591 -msgid "undo" +#: js/filelist.js:630 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -278,29 +278,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "" @@ -308,109 +300,109 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "" diff --git a/l10n/ml_IN/files.po b/l10n/ml_IN/files.po index d8c2c527a13..73eaed182fe 100644 --- a/l10n/ml_IN/files.po +++ b/l10n/ml_IN/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -17,48 +17,48 @@ msgstr "" "Language: ml_IN\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" @@ -68,74 +68,74 @@ msgstr "" msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "" @@ -156,92 +156,92 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 -msgid "Pending" +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" msgstr "" -#: js/filelist.js:456 -msgid "Could not rename file" +#: js/filelist.js:102 js/files.js:552 +msgid "Error" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" +#: js/filelist.js:267 js/filelist.js:1113 +msgid "Pending" msgstr "" -#: js/filelist.js:591 -msgid "undo" +#: js/filelist.js:630 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -278,29 +278,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "" @@ -308,109 +300,109 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "" diff --git a/l10n/mn/files.po b/l10n/mn/files.po index 7a3e02d962c..a1d5b8b6598 100644 --- a/l10n/mn/files.po +++ b/l10n/mn/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" "MIME-Version: 1.0\n" @@ -17,48 +17,48 @@ msgstr "" "Language: mn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" @@ -68,74 +68,74 @@ msgstr "" msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "" @@ -156,92 +156,92 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 -msgid "Pending" +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" msgstr "" -#: js/filelist.js:456 -msgid "Could not rename file" +#: js/filelist.js:102 js/files.js:552 +msgid "Error" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" +#: js/filelist.js:267 js/filelist.js:1113 +msgid "Pending" msgstr "" -#: js/filelist.js:591 -msgid "undo" +#: js/filelist.js:630 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -278,29 +278,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "" @@ -308,109 +300,109 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index ceca8d5e295..8338e168bb9 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -63,12 +63,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" @@ -80,62 +80,62 @@ msgstr "" msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "Tiada fail dimuatnaik. Ralat tidak diketahui." -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "Tiada ralat berlaku, fail berjaya dimuatnaik" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Saiz fail yang dimuatnaik melebihi MAX_FILE_SIZE yang ditetapkan dalam borang HTML" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "Fail yang dimuatnaik tidak lengkap" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "Tiada fail dimuatnaik" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Direktori sementara hilang" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "Gagal untuk disimpan" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "" @@ -169,77 +169,77 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Kongsi" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "Namakan" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Ralat" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "Dalam proses" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "" - -#: js/filelist.js:591 -msgid "undo" -msgstr "" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -275,29 +275,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "Ralat" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Nama" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Saiz" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Dimodifikasi" @@ -305,109 +297,109 @@ msgstr "Dimodifikasi" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Muat naik" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "Pengendalian fail" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "Saiz maksimum muat naik" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "maksimum:" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "Diperlukan untuk muatturun fail pelbagai " -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "Aktifkan muatturun ZIP" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 adalah tanpa had" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "Saiz maksimum input untuk fail ZIP" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Simpan" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Baru" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "Fail teks" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "Folder" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "Batal muat naik" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Tiada apa-apa di sini. Muat naik sesuatu!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Muat turun" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Padam" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Muatnaik terlalu besar" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Fail yang cuba dimuat naik melebihi saiz maksimum fail upload server" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Fail sedang diimbas, harap bersabar." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Imbasan semasa" diff --git a/l10n/my_MM/files.po b/l10n/my_MM/files.po index f61e76675eb..d9b7a04a282 100644 --- a/l10n/my_MM/files.po +++ b/l10n/my_MM/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -17,48 +17,48 @@ msgstr "" "Language: my_MM\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" @@ -68,74 +68,74 @@ msgstr "" msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "" @@ -156,90 +156,90 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 -msgid "Pending" +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" msgstr "" -#: js/filelist.js:456 -msgid "Could not rename file" +#: js/filelist.js:102 js/files.js:552 +msgid "Error" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" +#: js/filelist.js:267 js/filelist.js:1113 +msgid "Pending" msgstr "" -#: js/filelist.js:591 -msgid "undo" +#: js/filelist.js:630 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -275,29 +275,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "" @@ -305,109 +297,109 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "ဒေါင်းလုတ်" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index d81379a26d1..abaede9501c 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" @@ -46,7 +46,7 @@ msgid "" "allowed." msgstr "Ugyldig navn, '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' er ikke tillatt." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -67,12 +67,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Serveren har ikke lov til å åpne URL-er. Sjekk konfigurasjon av server" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Feil ved nedlasting av %s til %s" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "Feil ved oppretting av filen" @@ -84,62 +84,62 @@ msgstr "Mappenavn kan ikke være tomt." msgid "Error when creating the folder" msgstr "Feil ved oppretting av mappen" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "Kunne ikke sette opplastingskatalog." -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "Ugyldig nøkkel" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "Ingen filer ble lastet opp. Ukjent feil." -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "Pust ut, ingen feil. Filen ble lastet opp problemfritt" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Filstørrelsen overskrider maksgrensedirektivet upload_max_filesize i php.ini-konfigurasjonen." -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Filen du prøvde å laste opp var større enn grensen satt i MAX_FILE_SIZE i HTML-skjemaet." -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "Filen du prøvde å laste opp ble kun delvis lastet opp" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "Ingen filer ble lastet opp" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Mangler midlertidig mappe" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "Klarte ikke å skrive til disk" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "Ikke nok lagringsplass" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "Opplasting feilet. Fant ikke opplastet fil." -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "Opplasting feilet. Klarte ikke å finne informasjon om fil." -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "Ugyldig katalog." @@ -173,79 +173,79 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Filopplasting pågår. Forlater du siden nå avbrytes opplastingen." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "URL kan ikke være tom" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "I hjemmemappen er 'Shared' et reservert filnavn" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} finnes allerede" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "Klarte ikke å opprette fil" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "Klarte ikke å opprette mappe" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "Feil ved henting av URL" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Del" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "Slett permanent" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "Gi nytt navn" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "Feil ved flytting av fil" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Feil" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "Ventende" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "Klarte ikke å gi nytt navn til fil" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "erstattet {new_name} med {old_name}" - -#: js/filelist.js:591 -msgid "undo" -msgstr "angre" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "Feil ved sletting av fil." -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mappe" msgstr[1] "%n mapper" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fil" msgstr[1] "%n filer" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "{dirs} og {files}" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Laster opp %n fil" @@ -282,29 +282,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "Kryptering ble slått av men filene dine er fremdeles kryptert. Gå til dine personlige innstillinger for å dekryptere filene dine." -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Nedlastingen din klargjøres. Hvis filene er store kan dette ta litt tid." -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "Feil ved flytting av fil" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "Feil" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Navn" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Størrelse" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Endret" @@ -312,109 +304,109 @@ msgstr "Endret" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Ulovlig mappenavn. Bruken av 'Shared' er reservert." -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "Kunne ikke gi nytt navn til %s" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Last opp" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "Filhåndtering" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "Maksimum opplastingsstørrelse" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "max. mulige:" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "Nødvendig for å laste ned mapper og mer enn én fil om gangen." -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "Aktiver nedlasting av ZIP" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 er ubegrenset" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "Maksimal størrelse på ZIP-filer" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Lagre" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Ny" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "Ny tekstfil" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "Tekstfil" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "Ny mappe" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "Mappe" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "Fra link" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "Slettede filer" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "Avbryt opplasting" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "Du har ikke tillatelse til å laste opp eller opprette filer her" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Ingenting her. Last opp noe!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Last ned" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Slett" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Filen er for stor" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Filene du prøver å laste opp er for store for å laste opp til denne serveren." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Skanner filer, vennligst vent." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Pågående skanning" diff --git a/l10n/nb_NO/files_external.po b/l10n/nb_NO/files_external.po index feb831e6fdb..9a0fce131c9 100644 --- a/l10n/nb_NO/files_external.po +++ b/l10n/nb_NO/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05: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/nds/files.po b/l10n/nds/files.po index 3d928e12423..734a69de904 100644 --- a/l10n/nds/files.po +++ b/l10n/nds/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Low German (http://www.transifex.com/projects/p/owncloud/language/nds/)\n" "MIME-Version: 1.0\n" @@ -17,48 +17,48 @@ msgstr "" "Language: nds\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" @@ -68,74 +68,74 @@ msgstr "" msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "" @@ -156,92 +156,92 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 -msgid "Pending" +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" msgstr "" -#: js/filelist.js:456 -msgid "Could not rename file" +#: js/filelist.js:102 js/files.js:552 +msgid "Error" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" +#: js/filelist.js:267 js/filelist.js:1113 +msgid "Pending" msgstr "" -#: js/filelist.js:591 -msgid "undo" +#: js/filelist.js:630 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -278,29 +278,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "" @@ -308,109 +300,109 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "" diff --git a/l10n/ne/files.po b/l10n/ne/files.po index 56d8f5dab45..a36e68e7d45 100644 --- a/l10n/ne/files.po +++ b/l10n/ne/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -17,48 +17,48 @@ msgstr "" "Language: ne\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" @@ -68,74 +68,74 @@ msgstr "" msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "" @@ -156,92 +156,92 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 -msgid "Pending" +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" msgstr "" -#: js/filelist.js:456 -msgid "Could not rename file" +#: js/filelist.js:102 js/files.js:552 +msgid "Error" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" +#: js/filelist.js:267 js/filelist.js:1113 +msgid "Pending" msgstr "" -#: js/filelist.js:591 -msgid "undo" +#: js/filelist.js:630 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -278,29 +278,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "" @@ -308,109 +300,109 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index d478170f83b..1ce4270a6a9 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: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "Onjuiste naam; '\\', '/', '<', '>', ':', '\"', '|', '?' en '*' zijn niet toegestaan." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "De doelmap is verplaatst of verwijderd." @@ -65,12 +65,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Server mag geen URS's openen, controleer de server configuratie" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Fout bij downloaden %s naar %s" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "Fout bij creëren bestand" @@ -82,62 +82,62 @@ msgstr "Mapnaam mag niet leeg zijn." msgid "Error when creating the folder" msgstr "Fout bij aanmaken map" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "Kan upload map niet instellen." -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "Ongeldig Token" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "Er was geen bestand geladen. Onbekende fout" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "De upload van het bestand is goedgegaan." -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Het geüploade bestand overscheidt de upload_max_filesize optie in php.ini:" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Het bestand overschrijdt de MAX_FILE_SIZE instelling dat is opgegeven in het HTML formulier" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "Het bestand is gedeeltelijk geüpload" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "Er is geen bestand geüpload" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Er ontbreekt een tijdelijke map" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "Schrijven naar schijf mislukt" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "Niet genoeg opslagruimte beschikbaar" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "Upload mislukt. Kon ge-uploade bestand niet vinden" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "Upload mislukt, Kon geen bestandsinfo krijgen." -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "Ongeldige directory." @@ -171,79 +171,79 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Bestandsupload is bezig. Wanneer de pagina nu verlaten wordt, stopt de upload." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "URL mag niet leeg zijn" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "in de home map 'Shared' is een gereserveerde bestandsnaam" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} bestaat al" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "Kon bestand niet creëren" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "Kon niet creëren map" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "Fout bij ophalen URL" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Delen" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "Verwijder definitief" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "Hernoem" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "Fout bij verplaatsen bestand" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Fout" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "In behandeling" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "Kon niet hernoemen bestand" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "verving {new_name} met {old_name}" - -#: js/filelist.js:591 -msgid "undo" -msgstr "ongedaan maken" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "Fout bij verwijderen bestand." -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "%n mappen" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "%n bestanden" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "{dirs} en {files}" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n bestand aan het uploaden" @@ -280,29 +280,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "Encryptie is uitgeschakeld maar uw bestanden zijn nog steeds versleuteld. Ga naar uw persoonlijke instellingen om uw bestanden te decoderen." -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Uw download wordt voorbereid. Dit kan enige tijd duren bij grote bestanden." -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "Fout bij verplaatsen bestand" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "Fout" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Naam" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Grootte" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Aangepast" @@ -310,109 +302,109 @@ msgstr "Aangepast" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Ongeldige mapnaam. Gebruik van 'Shared' is gereserveerd." -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "%s kon niet worden hernoemd" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Uploaden" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "Bestand" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "Maximale bestandsgrootte voor uploads" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "max. mogelijk: " -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "Nodig voor meerdere bestanden en mappen downloads." -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "Zet ZIP-download aan" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 is ongelimiteerd" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "Maximale grootte voor ZIP bestanden" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Bewaren" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Nieuw" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "Nieuw tekstbestand" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "Tekstbestand" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "Nieuwe map" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "Map" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "Vanaf link" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "Verwijderde bestanden" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "Upload afbreken" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "U hebt geen toestemming om hier te uploaden of bestanden te maken" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Er bevindt zich hier niets. Upload een bestand!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Downloaden" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Verwijder" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Upload is te groot" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "De bestanden die u probeert te uploaden zijn groter dan de maximaal toegestane bestandsgrootte voor deze server." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Bestanden worden gescand, even wachten." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Er wordt gescand" diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index af9d2bb2e2d..890ec557209 100644 --- a/l10n/nl/files_external.po +++ b/l10n/nl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-03 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 07:50+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05: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 9f4fa5869fa..9abd909682b 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: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" @@ -45,7 +45,7 @@ msgid "" "allowed." msgstr "Ugyldig namn, «\\», «/», «<», «>», «:», «\"», «|», «?» og «*» er ikkje tillate." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -66,12 +66,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" @@ -83,62 +83,62 @@ msgstr "" msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "Klarte ikkje å endra opplastingsmappa." -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "Ugyldig token" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "Ingen filer lasta opp. Ukjend feil" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "Ingen feil, fila vart lasta opp" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Fila du lasta opp er større enn det «upload_max_filesize» i php.ini tillater: " -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Den opplasta fila er større enn variabelen MAX_FILE_SIZE i HTML-skjemaet" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "Fila vart berre delvis lasta opp" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "Ingen filer vart lasta opp" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Manglar ei mellombels mappe" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "Klarte ikkje skriva til disk" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "Ikkje nok lagringsplass tilgjengeleg" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "Feil ved opplasting. Klarte ikkje å finna opplasta fil." -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "Feil ved opplasting. Klarte ikkje å henta filinfo." -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "Ugyldig mappe." @@ -172,79 +172,79 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fila lastar no opp. Viss du forlèt sida no vil opplastinga verta avbroten." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} finst allereie" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Del" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "Slett for godt" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "Endra namn" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "Feil ved flytting av fil" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Feil" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "Under vegs" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "bytte ut {new_name} med {old_name}" - -#: js/filelist.js:591 -msgid "undo" -msgstr "angre" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mappe" msgstr[1] "%n mapper" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fil" msgstr[1] "%n filer" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "{dirs} og {files}" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Lastar opp %n fil" @@ -281,29 +281,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "Kryptering er skrudd av, men filene dine er enno krypterte. Du kan dekryptera filene i personlege innstillingar." -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Gjer klar nedlastinga di. Dette kan ta ei stund viss filene er store." -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "Feil ved flytting av fil" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "Feil" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Namn" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Storleik" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Endra" @@ -311,109 +303,109 @@ msgstr "Endra" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "Klarte ikkje å omdøypa på %s" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Last opp" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "Filhandtering" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "Maksimal opplastingsstorleik" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "maks. moglege:" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "Nødvendig for fleirfils- og mappenedlastingar." -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "Slå på ZIP-nedlasting" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 er ubegrensa" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "Maksimal storleik for ZIP-filer" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Lagre" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Ny" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "Tekst fil" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "Mappe" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "Frå lenkje" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "Sletta filer" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "Avbryt opplasting" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Ingenting her. Last noko opp!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Last ned" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Slett" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "For stor opplasting" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Filene du prøver å lasta opp er større enn maksgrensa til denne tenaren." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Skannar filer, ver venleg og vent." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Køyrande skanning" diff --git a/l10n/nqo/files.po b/l10n/nqo/files.po index 5a44f766a23..abf737189e4 100644 --- a/l10n/nqo/files.po +++ b/l10n/nqo/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -17,48 +17,48 @@ msgstr "" "Language: nqo\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" @@ -68,74 +68,74 @@ msgstr "" msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "" @@ -156,90 +156,90 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 -msgid "Pending" +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" msgstr "" -#: js/filelist.js:456 -msgid "Could not rename file" +#: js/filelist.js:102 js/files.js:552 +msgid "Error" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" +#: js/filelist.js:267 js/filelist.js:1113 +msgid "Pending" msgstr "" -#: js/filelist.js:591 -msgid "undo" +#: js/filelist.js:630 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -275,29 +275,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "" @@ -305,109 +297,109 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index 7f609bb3b07..b957e1ad486 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -63,12 +63,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" @@ -80,62 +80,62 @@ msgstr "" msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "Amontcargament capitat, pas d'errors" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Lo fichièr amontcargat es mai gròs que la directiva «MAX_FILE_SIZE» especifiada dins lo formulari HTML" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "Lo fichièr foguèt pas completament amontcargat" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "Cap de fichièrs son estats amontcargats" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Un dorsièr temporari manca" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "L'escriptura sul disc a fracassat" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "" @@ -169,79 +169,79 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Un amontcargar es a se far. Daissar aquesta pagina ara tamparà lo cargament. " -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Parteja" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "Torna nomenar" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Error" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "Al esperar" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "" - -#: js/filelist.js:591 -msgid "undo" -msgstr "defar" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -278,29 +278,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "Error" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Nom" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Talha" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Modificat" @@ -308,109 +300,109 @@ msgstr "Modificat" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Amontcarga" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "Manejament de fichièr" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "Talha maximum d'amontcargament" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "max. possible: " -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "Requesit per avalcargar gropat de fichièrs e dorsièr" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "Activa l'avalcargament de ZIP" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 es pas limitat" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "Talha maximum de dintrada per fichièrs ZIP" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Enregistra" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Nòu" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "Fichièr de tèxte" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "Dorsièr" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr " Anulla l'amontcargar" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Pas res dedins. Amontcarga qualquaren" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Avalcarga" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Escafa" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Amontcargament tròp gròs" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Los fichièrs que sias a amontcargar son tròp pesucs per la talha maxi pel servidor." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Los fiichièrs son a èsser explorats, " -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Exploracion en cors" diff --git a/l10n/pa/files.po b/l10n/pa/files.po index dc8e95181a7..f991fea8626 100644 --- a/l10n/pa/files.po +++ b/l10n/pa/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -17,48 +17,48 @@ msgstr "" "Language: pa\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" @@ -68,74 +68,74 @@ msgstr "" msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "" @@ -156,92 +156,92 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "ਸਾਂਝਾ ਕਰੋ" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "ਨਾਂ ਬਦਲੋ" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 -msgid "Pending" +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" msgstr "" -#: js/filelist.js:456 -msgid "Could not rename file" -msgstr "" +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "ਗਲਤੀ" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" +#: js/filelist.js:267 js/filelist.js:1113 +msgid "Pending" msgstr "" -#: js/filelist.js:591 -msgid "undo" -msgstr "ਵਾਪਸ" +#: js/filelist.js:630 +msgid "Could not rename file" +msgstr "" -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -278,29 +278,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "ਗਲਤੀ" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "" @@ -308,109 +300,109 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "ਅੱਪਲੋਡ" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "ਅੱਪਲੋਡ ਰੱਦ ਕਰੋ" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "ਡਾਊਨਲੋਡ" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "ਹਟਾਓ" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 9473672b266..068fbdf5b67 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" @@ -48,7 +48,7 @@ msgid "" "allowed." msgstr "Nieprawidłowa nazwa. Znaki '\\', '/', '<', '>', ':', '\"', '|', '?' oraz '*' są niedozwolone." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Folder docelowy został przeniesiony lub usunięty" @@ -69,12 +69,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Serwer nie mógł otworzyć adresów URL, należy sprawdzić konfigurację serwera" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Błąd podczas pobierania %s do %S" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "Błąd przy tworzeniu pliku" @@ -86,62 +86,62 @@ msgstr "Nazwa folderu nie może być pusta." msgid "Error when creating the folder" msgstr "Błąd przy tworzeniu folderu" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "Nie można ustawić katalog wczytywania." -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "Nieprawidłowy Token" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "Żaden plik nie został załadowany. Nieznany błąd" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "Nie było błędów, plik wysłano poprawnie." -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Wgrany plik przekracza wartość upload_max_filesize zdefiniowaną w php.ini: " -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Wysłany plik przekracza wielkość dyrektywy MAX_FILE_SIZE określonej w formularzu HTML" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "Załadowany plik został wysłany tylko częściowo." -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "Nie wysłano żadnego pliku" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Brak folderu tymczasowego" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "Błąd zapisu na dysk" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "Za mało dostępnego miejsca" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "Nieudane przesłanie. Nie można znaleźć przesyłanego pliku" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "Nieudane przesłanie. Nie można pobrać informacji o pliku." -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "Zła ścieżka." @@ -175,81 +175,81 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Wysyłanie pliku jest w toku. Jeśli opuścisz tę stronę, wysyłanie zostanie przerwane." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "URL nie może być pusty" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "W katalogu domowym \"Shared\" jest zarezerwowana nazwa pliku" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} już istnieje" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "Nie można utworzyć pliku" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "Nie można utworzyć folderu" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "Błąd przy pobieraniu adresu URL" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Udostępnij" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "Trwale usuń" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "Zmień nazwę" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "Błąd prz przenoszeniu pliku" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Błąd" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "Oczekujące" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "Nie można zmienić nazwy pliku" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "zastąpiono {new_name} przez {old_name}" - -#: js/filelist.js:591 -msgid "undo" -msgstr "cofnij" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "Błąd podczas usuwania pliku" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n katalog" msgstr[1] "%n katalogi" msgstr[2] "%n katalogów" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n plik" msgstr[1] "%n pliki" msgstr[2] "%n plików" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "{dirs} i {files}" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Wysyłanie %n pliku" @@ -287,29 +287,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "Szyfrowanie zostało wyłączone, ale nadal pliki są zaszyfrowane. Przejdź do ustawień osobistych i tam odszyfruj pliki." -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Pobieranie jest przygotowywane. Może to zająć trochę czasu jeśli pliki są duże." -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "Błąd prz przenoszeniu pliku" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "Błąd" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Nazwa" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Rozmiar" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Modyfikacja" @@ -317,109 +309,109 @@ msgstr "Modyfikacja" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Niepoprawna nazwa folderu. Wykorzystanie \"Shared\" jest zarezerwowane." -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "%s nie można zmienić nazwy" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Wyślij" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "Zarządzanie plikami" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "Maksymalny rozmiar wysyłanego pliku" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "maks. możliwy:" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "Wymagany do pobierania wielu plików i folderów" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "Włącz pobieranie ZIP-paczki" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 - bez limitów" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "Maksymalna wielkość pliku wejściowego ZIP " -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Zapisz" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Nowy" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "Nowy plik tekstowy" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "Plik tekstowy" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "Nowy folder" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "Folder" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "Z odnośnika" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "Pliki usunięte" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "Anuluj wysyłanie" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "Nie masz uprawnień do wczytywania lub tworzenia plików w tym miejscu" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Pusto. Wyślij coś!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Pobierz" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Usuń" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Ładowany plik jest za duży" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Pliki, które próbujesz przesłać, przekraczają maksymalną dopuszczalną wielkość." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Skanowanie plików, proszę czekać." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Aktualnie skanowane" diff --git a/l10n/pl/files_external.po b/l10n/pl/files_external.po index 73749054af3..b7e402d12aa 100644 --- a/l10n/pl/files_external.po +++ b/l10n/pl/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-03 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 11:10+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:30+0000\n" "Last-Translator: bobie \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 127cadb9b98..7134687faec 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: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" @@ -45,7 +45,7 @@ msgid "" "allowed." msgstr "Nome inválido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "A pasta de destino foi movida ou excluída." @@ -66,12 +66,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Não é permitido ao servidor abrir URLs, por favor verificar a configuração do servidor." -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Erro ao baixar %s para %s" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "Erro ao criar o arquivo" @@ -83,62 +83,62 @@ msgstr "O nome da pasta não pode estar vazio." msgid "Error when creating the folder" msgstr "Erro ao criar a pasta" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "Impossível configurar o diretório de upload" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "Token inválido" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "Nenhum arquivo foi enviado. Erro desconhecido" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "Sem erros, o arquivo foi enviado com sucesso" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "O arquivo enviado excede a diretiva upload_max_filesize no php.ini: " -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "O arquivo carregado excede o argumento MAX_FILE_SIZE especificado no formulário HTML" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "O arquivo foi parcialmente enviado" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "Nenhum arquivo enviado" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Pasta temporária não encontrada" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "Falha ao escrever no disco" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "Espaço de armazenamento insuficiente" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "Falha no envio. Não foi possível encontrar o arquivo enviado" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "Falha no envio. Não foi possível obter informações do arquivo." -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "Diretório inválido." @@ -172,79 +172,79 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Upload em andamento. Sair da página agora resultará no cancelamento do envio." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "URL não pode estar vazia" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Na pasta home 'Shared- Compartilhada' é um nome reservado" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} já existe" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "Não foi possível criar o arquivo" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "Não foi possível criar a pasta" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "Erro ao buscar URL" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Compartilhar" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "Excluir permanentemente" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "Renomear" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "Erro movendo o arquivo" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Erro" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "Pendente" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "Não foi possível renomear o arquivo" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "Substituído {old_name} por {new_name} " - -#: js/filelist.js:591 -msgid "undo" -msgstr "desfazer" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "Erro eliminando o arquivo." -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n pasta" msgstr[1] "%n pastas" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n arquivo" msgstr[1] "%n arquivos" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "{dirs} e {files}" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Enviando %n arquivo" @@ -281,29 +281,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "Encriptação foi desabilitada mas seus arquivos continuam encriptados. Por favor vá a suas configurações pessoais para descriptar seus arquivos." -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Seu download está sendo preparado. Isto pode levar algum tempo se os arquivos forem grandes." -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "Erro movendo o arquivo" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "Erro" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Nome" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Tamanho" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Modificado" @@ -311,109 +303,109 @@ msgstr "Modificado" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Nome da pasta inválido. Uso de 'Shared' é reservado." -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "%s não pode ser renomeado" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Upload" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "Tratamento de Arquivo" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "Tamanho máximo para carregar" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "max. possível:" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "Necessário para download de múltiplos arquivos e diretórios." -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "Habilitar ZIP-download" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 para ilimitado" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "Tamanho máximo para arquivo ZIP" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Guardar" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Novo" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "Novo arquivo texto" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "Arquivo texto" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "Nova pasta" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "Pasta" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "Do link" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "Arquivos apagados" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "Cancelar upload" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "Você não tem permissão para carregar ou criar arquivos aqui" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Nada aqui.Carrege alguma coisa!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Baixar" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Excluir" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Upload muito grande" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Os arquivos que você está tentando carregar excedeu o tamanho máximo para arquivos no servidor." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Arquivos sendo escaneados, por favor aguarde." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Scanning atual" diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index 5e3198d3c4b..2c968ce5987 100644 --- a/l10n/pt_BR/files_external.po +++ b/l10n/pt_BR/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-03 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 11:30+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05: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 aed155f7491..8b7fc8e6093 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-28 01:55-0400\n" -"PO-Revision-Date: 2014-03-27 19:31+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-03 12:40+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" @@ -53,7 +53,7 @@ msgstr "Você precisa configurar seu e-mail de usuário antes de ser capaz de en msgid "Send mode" msgstr "Modo enviar" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "Criptografia" @@ -66,7 +66,7 @@ msgid "Unable to load list from App Store" msgstr "Não foi possível carregar lista da App Store" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Erro de autenticação" @@ -128,32 +128,32 @@ msgstr "Não foi possível remover usuário do grupo %s" msgid "Couldn't update app." msgstr "Não foi possível atualizar a app." -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "Senha errada" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "Nenhum usuário fornecido" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "Por favor, forneça uma senha de recuperação admin, caso contrário todos os dados do usuário serão perdidos" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "Senha de recuperação do administrador errada. Por favor verifique a senha e tente novamente." -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "Back-end não suporta alteração de senha, mas a chave de criptografia de usuários foi atualizado com sucesso...." -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "Impossível modificar senha" @@ -205,7 +205,7 @@ msgstr "Erro ao atualizar aplicativo" msgid "Error" msgstr "Erro" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "Atualizar" @@ -286,7 +286,7 @@ msgstr "Forneça uma senha válida" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Aviso: O diretório home para o usuário \"{user}\" já existe" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "Português (Brasil)" @@ -591,11 +591,11 @@ msgstr "Mais" msgid "Less" msgstr "Menos" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "Versão" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "-licenciado por " @@ -666,108 +666,108 @@ msgstr "Mostrar este Assistente de novo" msgid "You have used %s of the available %s" msgstr "Você usou %s do seu espaço de %s" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Senha" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "Sua senha foi alterada" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "Não é possivel alterar a sua senha" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "Senha atual" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "Nova senha" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "Alterar senha" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "Nome Completo" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "E-mail" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "Seu endereço de e-mail" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Preencha com um e-mail para permitir a recuperação de senha e receber notificações" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "Imagem para o perfil" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "Enviar nova foto" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "Selecinar uma nova dos Arquivos" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "Remover imagem" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Ou png ou jpg. O ideal é quadrado, mas você vai ser capaz de cortá-la." -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "Seu avatar é fornecido por sua conta original." -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Cancelar" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "Escolha como imagem para o perfil" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "Idioma" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "Ajude a traduzir" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Use este endereço para ter acesso a seus Arquivos via WebDAV" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "O aplicativo de criptografia não está habilitado, por favor descriptar todos os seus arquivos" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "Senha de login" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "Decripti todos os Arquivos" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 5d3d9a8a8dc..c6587d1998a 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" @@ -46,7 +46,7 @@ msgid "" "allowed." msgstr "Nome Inválido, os caracteres '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -67,12 +67,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "O servidor não consegue abrir URLs, por favor verifique a configuração do servidor" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Erro ao transferir %s para %s" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "Erro ao criar o ficheiro" @@ -84,62 +84,62 @@ msgstr "O nome da pasta não pode estar vazio." msgid "Error when creating the folder" msgstr "Erro ao criar a pasta" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "Não foi possível criar o diretório de upload" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "Token inválido" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "Nenhum ficheiro foi carregado. Erro desconhecido" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "Não ocorreram erros, o ficheiro foi submetido com sucesso" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "O ficheiro enviado excede o limite permitido na directiva do php.ini upload_max_filesize" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "O tamanho do ficheiro carregado ultrapassa o valor MAX_FILE_SIZE definido no formulário HTML" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "O ficheiro seleccionado foi apenas carregado parcialmente" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "Nenhum ficheiro foi submetido" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Está a faltar a pasta temporária" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "Falhou a escrita no disco" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "Não há espaço suficiente em disco" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "Falhou o envio. Não conseguiu encontrar o ficheiro enviado" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "O carregamento falhou. Não foi possível obter a informação do ficheiro." -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "Directório Inválido" @@ -173,79 +173,79 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Envio de ficheiro em progresso. Irá cancelar o envio se sair da página agora." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "URL não pode estar vazio" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Na pasta pessoal \"Partilhado\" é um nome de ficheiro reservado" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "O nome {new_name} já existe" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "Não pôde criar ficheiro" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "Não pôde criar pasta" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "Erro ao obter URL" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Partilhar" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "Renomear" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "Erro ao mover o ficheiro" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Erro" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "Pendente" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "Não pôde renomear o ficheiro" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "substituido {new_name} por {old_name}" - -#: js/filelist.js:591 -msgid "undo" -msgstr "desfazer" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "Erro ao apagar o ficheiro." -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n pasta" msgstr[1] "%n pastas" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n ficheiro" msgstr[1] "%n ficheiros" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "{dirs} e {files}" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "A carregar %n ficheiro" @@ -282,29 +282,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "A encriptação foi desactivada mas os seus ficheiros continuam encriptados. Por favor consulte as suas definições pessoais para desencriptar os ficheiros." -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "O seu download está a ser preparado. Este processo pode demorar algum tempo se os ficheiros forem grandes." -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "Erro ao mover o ficheiro" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "Erro" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Nome" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Tamanho" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Modificado" @@ -312,109 +304,109 @@ msgstr "Modificado" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Nome de pasta inválido. Utilização de \"Partilhado\" está reservada." -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "%s não pode ser renomeada" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Carregar" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "Manuseamento de ficheiros" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "Tamanho máximo de envio" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "max. possivel: " -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "Necessário para multi download de ficheiros e pastas" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "Permitir descarregar em ficheiro ZIP" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 é ilimitado" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "Tamanho máximo para ficheiros ZIP" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Guardar" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Novo" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "Novo ficheiro de texto" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "Ficheiro de texto" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "Nova Pasta" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "Pasta" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "Da ligação" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "Ficheiros eliminados" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "Cancelar envio" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "Você não tem permissão para enviar ou criar ficheiros aqui" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Vazio. Envie alguma coisa!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Transferir" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Eliminar" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Upload muito grande" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Os ficheiro que está a tentar enviar excedem o tamanho máximo de envio neste servidor." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Os ficheiros estão a ser analisados, por favor aguarde." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Análise actual" diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index 77a85dc2ed6..d465a9a2992 100644 --- a/l10n/pt_PT/files_external.po +++ b/l10n/pt_PT/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05: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 488cd5cf9c2..6dbdb8198fa 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-01 11:50+0000\n" -"Last-Translator: andreiacob \n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -49,7 +49,7 @@ msgid "" "allowed." msgstr "Nume nevalide, '\\', '/', '<', '>', ':', '\"', '|', '?' și '*' nu sunt permise." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -70,12 +70,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Eroare la descarcarea %s in %s" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "Eroare la crearea fisierului" @@ -87,62 +87,62 @@ msgstr "Numele folderului nu poate fi liber." msgid "Error when creating the folder" msgstr "Eroare la crearea folderului" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "Imposibil de a seta directorul pentru incărcare." -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "Jeton Invalid" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "Niciun fișier nu a fost încărcat. Eroare necunoscută" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "Nu a apărut nici o eroare, fișierul a fost încărcat cu succes" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Fișierul încărcat depășește directiva upload_max_filesize din php.ini:" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Fișierul încărcat depășește directiva MAX_FILE_SIZE specificată în formularul HTML" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "Fișierul a fost încărcat doar parțial" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "Nu a fost încărcat niciun fișier" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Lipsește un dosar temporar" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "Eroare la scrierea pe disc" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "Nu este disponibil suficient spațiu" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "Încărcare eșuată. Nu se poate găsi fișierul încărcat" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "Încărcare eșuată. Nu se pot obține informații despre fișier." -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "Dosar nevalid." @@ -176,27 +176,27 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fișierul este în curs de încărcare. Părăsirea paginii va întrerupe încărcarea." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "URL nu poate fi gol" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} există deja" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "Nu s-a putut crea fisierul" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "Nu s-a putut crea folderul" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" @@ -212,45 +212,45 @@ msgstr "Șterge permanent" msgid "Rename" msgstr "Redenumește" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "Eroare la mutarea fișierului" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Eroare" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "În așteptare" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "Nu s-a putut redenumi fisierul" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "{new_name} a fost înlocuit cu {old_name}" - -#: js/filelist.js:591 -msgid "undo" -msgstr "desfă" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:694 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n director" msgstr[1] "%n directoare" msgstr[2] "%n directoare" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:700 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fișier" msgstr[1] "%n fișiere" msgstr[2] "%n fișiere" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "{dirs} și {files}" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Se încarcă %n fișier." @@ -288,29 +288,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "criptarea a fost disactivata dar fisierele sant inca criptate.va rog intrati in setarile personale pentru a decripta fisierele" -#: js/files.js:382 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Se pregătește descărcarea. Aceasta poate dura ceva timp dacă fișierele sunt mari." -#: js/files.js:613 js/files.js:657 -msgid "Error moving file" -msgstr "Eroare la mutarea fișierului" - -#: js/files.js:613 js/files.js:657 -msgid "Error" -msgstr "Eroare" - -#: js/files.js:675 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Nume" -#: js/files.js:676 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Mărime" -#: js/files.js:677 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Modificat" @@ -318,12 +310,12 @@ msgstr "Modificat" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "%s nu a putut fi redenumit" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Încărcă" @@ -359,68 +351,68 @@ msgstr "Dimensiunea maximă de intrare pentru fișierele ZIP" msgid "Save" msgstr "Salvează" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Nou" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "Fișier text" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "Dosar" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "De la adresa" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "Fișiere șterse" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "Anulează încărcarea" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "Nu aveti permisiunea de a incarca sau crea fisiere aici" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Nimic aici. Încarcă ceva!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Descarcă" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Șterge" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Fișierul încărcat este prea mare" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Fișierele pe care încerci să le încarci depășesc limita de încărcare maximă admisă pe acest server." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Fișierele sunt scanate, te rog așteaptă." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "În curs de scanare" diff --git a/l10n/ro/files_external.po b/l10n/ro/files_external.po index 93854e5f0de..295b3572c49 100644 --- a/l10n/ro/files_external.po +++ b/l10n/ro/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05: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 4b5c985dfc9..41b0e3084ba 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-28 01:55-0400\n" -"PO-Revision-Date: 2014-03-27 14:22+0000\n" -"Last-Translator: Swab \n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -54,7 +54,7 @@ msgid "" "allowed." msgstr "Неправильное имя: символы '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' недопустимы." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Целевой каталог был перемещен или удален." @@ -75,12 +75,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Сервер не позволяет открывать URL-адреса, пожалуйста, проверьте настройки сервера" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Ошибка при скачивании %s в %s" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "Ошибка при создании файла" @@ -92,62 +92,62 @@ msgstr "Имя папки не может быть пустым." msgid "Error when creating the folder" msgstr "Ошибка создания каталога" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "Не удалось установить каталог загрузки." -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "Недопустимый маркер" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "Файл не был загружен. Неизвестная ошибка" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "Файл загружен успешно." -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Файл превышает размер, установленный параметром upload_max_filesize в php.ini:" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Загруженный файл превышает размер, установленный параметром MAX_FILE_SIZE в HTML-форме" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "Файл загружен лишь частично" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "Ни одного файла загружено не было" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Отсутствует временный каталог" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "Ошибка записи на диск" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "Недостаточно доступного места в хранилище" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "Загрузка не удалась. Невозможно найти загружаемый файл" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "Загрузка не удалась. Невозможно получить информацию о файле" -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "Неверный каталог." @@ -181,81 +181,81 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Идёт загрузка файла. Покинув страницу, вы прервёте загрузку." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "Ссылка не может быть пустой." -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "'Shared' - это зарезервированное имя файла в домашнем каталоге" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} уже существует" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "Не удалось создать файл" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "Не удалось создать каталог" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "Ошибка получения URL" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Открыть доступ" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "Удалить окончательно" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "Переименовать" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "Ошибка при перемещении файла" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Ошибка" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "Ожидание" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "Не удалось переименовать файл" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "заменено {new_name} на {old_name}" - -#: js/filelist.js:591 -msgid "undo" -msgstr "отмена" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "Ошибка при удалении файла." -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n каталог" msgstr[1] "%n каталога" msgstr[2] "%n каталогов" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n файл" msgstr[1] "%n файла" msgstr[2] "%n файлов" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "{dirs} и {files}" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Закачка %n файла" @@ -293,29 +293,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "Шифрование было отключено, но ваши файлы остались зашифрованными. Зайдите на страницу личных настроек для того, чтобы расшифровать их." -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Идёт подготовка к скачиванию. Это может занять некоторое время, если файлы большого размера." -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "Ошибка при перемещении файла" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "Ошибка" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Имя" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Размер" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Дата изменения" @@ -323,109 +315,109 @@ msgstr "Дата изменения" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Неправильное имя каталога. Имя 'Shared' зарезервировано." -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "%s не может быть переименован" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Загрузка" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "Управление файлами" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "Максимальный размер загружаемого файла" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "макс. возможно: " -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "Требуется для скачивания нескольких файлов и папок" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "Включить скачивание в виде архивов ZIP" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 - без ограничений" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "Максимальный исходный размер для ZIP файлов" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Сохранить" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Новый" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "Новый текстовый файл" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "Текстовый файл" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "Новый каталог" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "Каталог" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "Объект по ссылке" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "Удалённые файлы" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "Отменить загрузку" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "У вас нет прав для загрузки или создания файлов здесь." -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Здесь ничего нет. Загрузите что-нибудь!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Скачать" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Удалить" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Файл слишком велик" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Файлы, которые вы пытаетесь загрузить, превышают лимит максимального размера на этом сервере." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Подождите, файлы сканируются." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Текущее сканирование" diff --git a/l10n/ru/files_external.po b/l10n/ru/files_external.po index 950c0f0bb1c..2779b06cd5a 100644 --- a/l10n/ru/files_external.po +++ b/l10n/ru/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:30+0000\n" "Last-Translator: I Robot\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index 4d19ae87f3e..80c2555ba9b 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_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: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -63,12 +63,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" @@ -80,62 +80,62 @@ msgstr "" msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "ගොනුවක් උඩුගත නොවුනි. නොහැඳිනු දෝෂයක්" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "දෝෂයක් නොමැත. සාර්ථකව ගොනුව උඩුගත කෙරුණි" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "උඩුගත කළ ගොනුවේ විශාලත්වය HTML පෝරමයේ නියම කළ ඇති MAX_FILE_SIZE විශාලත්වයට වඩා වැඩිය" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "උඩුගත කළ ගොනුවේ කොටසක් පමණක් උඩුගත විය" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "ගොනුවක් උඩුගත නොවුණි" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "තාවකාලික ෆොල්ඩරයක් අතුරුදහන්" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "තැටිගත කිරීම අසාර්ථකයි" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "" @@ -169,79 +169,79 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "උඩුගතකිරීමක් සිදුවේ. පිටුව හැර යාමෙන් එය නැවතෙනු ඇත" -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "බෙදා හදා ගන්න" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "නැවත නම් කරන්න" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 -msgid "Pending" +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" msgstr "" -#: js/filelist.js:456 -msgid "Could not rename file" -msgstr "" +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "දෝෂයක්" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" +#: js/filelist.js:267 js/filelist.js:1113 +msgid "Pending" msgstr "" -#: js/filelist.js:591 -msgid "undo" -msgstr "නිෂ්ප්‍රභ කරන්න" +#: js/filelist.js:630 +msgid "Could not rename file" +msgstr "" -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -278,29 +278,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "දෝෂයක්" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "නම" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "ප්‍රමාණය" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "වෙනස් කළ" @@ -308,109 +300,109 @@ msgstr "වෙනස් කළ" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "උඩුගත කරන්න" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "ගොනු පරිහරණය" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "උඩුගත කිරීමක උපරිම ප්‍රමාණය" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "හැකි උපරිමය:" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "බහු-ගොනු හා ෆොල්ඩර බාගත කිරීමට අවශ්‍යයි" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "ZIP-බාගත කිරීම් සක්‍රිය කරන්න" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 යනු සීමාවක් නැති බවය" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "ZIP ගොනු සඳහා දැමිය හැකි උපරිම විශාලතවය" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "සුරකින්න" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "නව" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "පෙළ ගොනුව" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "ෆෝල්ඩරය" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "යොමුවෙන්" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "උඩුගත කිරීම අත් හරින්න" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "මෙහි කිසිවක් නොමැත. යමක් උඩුගත කරන්න" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "බාන්න" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "මකා දමන්න" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "උඩුගත කිරීම විශාල වැඩිය" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "ඔබ උඩුගත කිරීමට තැත් කරන ගොනු මෙම සේවාදායකයා උඩුගත කිරීමට ඉඩදී ඇති උපරිම ගොනු විශාලත්වයට වඩා වැඩිය" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "ගොනු පරික්ෂා කෙරේ. මඳක් රැඳී සිටින්න" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "වර්තමාන පරික්ෂාව" diff --git a/l10n/si_LK/files_external.po b/l10n/si_LK/files_external.po index f4f9b47fdf3..6f76a09b3f9 100644 --- a/l10n/si_LK/files_external.po +++ b/l10n/si_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:30+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk/files.po b/l10n/sk/files.po index d705cf64c22..6f6661a4078 100644 --- a/l10n/sk/files.po +++ b/l10n/sk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -63,12 +63,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" @@ -80,62 +80,62 @@ msgstr "" msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "" @@ -169,81 +169,81 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Zdieľať" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 -msgid "Pending" +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" msgstr "" -#: js/filelist.js:456 -msgid "Could not rename file" +#: js/filelist.js:102 js/files.js:552 +msgid "Error" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" +#: js/filelist.js:267 js/filelist.js:1113 +msgid "Pending" msgstr "" -#: js/filelist.js:591 -msgid "undo" +#: js/filelist.js:630 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -281,29 +281,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "" @@ -311,109 +303,109 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Uložiť" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Stiahnuť" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Odstrániť" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 8694064b152..01efcb33fae 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: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" @@ -43,7 +43,7 @@ msgid "" "allowed." msgstr "Nesprávne meno, '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nie sú povolené hodnoty." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -64,12 +64,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Server nie je oprávnený otvárať adresy URL. Overte nastavenia servera." -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Chyba pri sťahovaní súboru %s do %s" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "Chyba pri vytváraní súboru" @@ -81,62 +81,62 @@ msgstr "Názov priečinka nemôže byť prázdny." msgid "Error when creating the folder" msgstr "Chyba pri vytváraní priečinka" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "Nemožno nastaviť priečinok pre nahrané súbory." -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "Neplatný token" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "Žiaden súbor nebol nahraný. Neznáma chyba" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "Nenastala žiadna chyba, súbor bol úspešne nahraný" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Nahraný súbor prekročil limit nastavený v upload_max_filesize v súbore php.ini:" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Ukladaný súbor prekračuje nastavenie MAX_FILE_SIZE z volieb HTML formulára." -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "Ukladaný súbor sa nahral len čiastočne" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "Žiadny súbor nebol uložený" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Chýba dočasný priečinok" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "Zápis na disk sa nepodaril" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "Nedostatok dostupného úložného priestoru" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "Nahrávanie zlyhalo. Nepodarilo sa nájsť nahrávaný súbor" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "Nahrávanie zlyhalo. Nepodarilo sa získať informácie o súbore." -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "Neplatný priečinok." @@ -170,81 +170,81 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Opustenie stránky zruší práve prebiehajúce odosielanie súboru." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "URL nemôže byť prázdna" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "V domovskom priečinku je názov \"Shared\" vyhradený názov súboru" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} už existuje" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "Nemožno vytvoriť súbor" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "Nemožno vytvoriť priečinok" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "Chyba pri načítavaní URL" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Zdieľať" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "Zmazať trvalo" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "Premenovať" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "Chyba pri presúvaní súboru" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Chyba" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "Prebieha" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "Nemožno premenovať súbor" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "prepísaný {new_name} súborom {old_name}" - -#: js/filelist.js:591 -msgid "undo" -msgstr "vrátiť" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "Chyba pri mazaní súboru." -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n priečinok" msgstr[1] "%n priečinky" msgstr[2] "%n priečinkov" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n súbor" msgstr[1] "%n súbory" msgstr[2] "%n súborov" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "{dirs} a {files}" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Nahrávam %n súbor" @@ -282,29 +282,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "Šifrovanie bolo zakázané, ale vaše súbory sú stále zašifrované. Prosím, choďte do osobného nastavenia pre dešifrovanie súborov." -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Vaše sťahovanie sa pripravuje. Ak sú sťahované súbory veľké, môže to chvíľu trvať." -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "Chyba pri presúvaní súboru" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "Chyba" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Názov" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Veľkosť" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Upravené" @@ -312,109 +304,109 @@ msgstr "Upravené" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Názov priečinka je chybný. Použitie názvu 'Shared' nie je povolené." -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "%s nemohol byť premenovaný" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Odoslať" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "Nastavenie správania sa k súborom" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "Maximálna veľkosť odosielaného súboru" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "najväčšie možné:" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "Vyžadované pre sťahovanie viacerých súborov a priečinkov." -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "Povoliť sťahovanie ZIP súborov" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 znamená neobmedzené" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "Najväčšia veľkosť ZIP súborov" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Uložiť" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Nový" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "Nový textový súbor" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "Textový súbor" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "Nový priečinok" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "Priečinok" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "Z odkazu" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "Zmazané súbory" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "Zrušiť odosielanie" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "Nemáte oprávnenie sem nahrávať alebo vytvoriť súbory" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Žiadny súbor. Nahrajte niečo!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Sťahovanie" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Zmazať" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Nahrávanie je príliš veľké" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Súbory, ktoré sa snažíte nahrať, presahujú maximálnu veľkosť pre nahratie súborov na tento server." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Čakajte, súbory sú prehľadávané." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Práve prezerané" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index 8160290e67b..b281580a65c 100644 --- a/l10n/sk_SK/files_external.po +++ b/l10n/sk_SK/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:30+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" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 9966a2785bb..973e7e04a88 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: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "Neveljavno ime; znaki '\\', '/', '<', '>', ':', '\"', '|', '?' in '*' niso dovoljeni." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Ciljna mapa je premaknjena ali izbrisana." @@ -65,12 +65,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Odpiranje naslovov URL preko strežnika ni dovoljeno. Preverite nastavitve strežnika." -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Napaka med prejemanjem %s v mapo %s" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "Napaka med ustvarjanjem datoteke" @@ -82,62 +82,62 @@ msgstr "Ime mape ne more biti prazna vrednost." msgid "Error when creating the folder" msgstr "Napaka med ustvarjanjem mape" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "Mapo, v katero boste prenašali dokumente, ni mogoče določiti" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "Neveljaven žeton" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "Ni poslane datoteke. Neznana napaka." -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "Datoteka je uspešno naložena." -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Poslana datoteka presega dovoljeno velikost, ki je določena z možnostjo upload_max_filesize v datoteki php.ini:" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Poslana datoteka presega velikost, ki jo določa parameter največje dovoljene velikosti v obrazcu HTML." -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "Poslan je le del datoteke." -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "Ni poslane datoteke" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Manjka začasna mapa" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "Pisanje na disk je spodletelo" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "Na voljo ni dovolj prostora" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "Pošiljanje je spodletelo. Ni mogoče najti poslane datoteke." -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "Pošiljanje je spodletelo. Ni mogoče pridobiti podrobnosti datoteke." -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "Neveljavna mapa." @@ -171,63 +171,63 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "V teku je pošiljanje datoteke. Če zapustite to stran zdaj, bo pošiljanje preklicano." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "Polje naslova URL ne sme biti prazno" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "V domači mapi ni dovoljeno ustvariti mape z imenom 'Souporabe', saj je ime zadržano za javno mapo." -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} že obstaja" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "Ni mogoče ustvariti datoteke" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "Ni mogoče ustvariti mape" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "Napaka pridobivanja naslova URL" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Souporaba" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "Izbriši dokončno" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "Preimenuj" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "Napaka premikanja datoteke" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Napaka" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "V čakanju ..." -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "Ni mogoče preimenovati datoteke" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "preimenovano ime {new_name} z imenom {old_name}" - -#: js/filelist.js:591 -msgid "undo" -msgstr "razveljavi" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "Napaka brisanja datoteke." -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mapa" @@ -235,7 +235,7 @@ msgstr[1] "%n mapi" msgstr[2] "%n mape" msgstr[3] "%n map" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n datoteka" @@ -243,11 +243,11 @@ msgstr[1] "%n datoteki" msgstr[2] "%n datoteke" msgstr[3] "%n datotek" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "{dirs} in {files}" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Posodabljanje %n datoteke" @@ -286,29 +286,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "Šifriranje je onemogočeno, datoteke pa so še vedno šifrirane. Odšifrirajte jih med nastavitvami." -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Postopek priprave datoteke za prejem je lahko dolgotrajen, kadar je datoteka zelo velika." -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "Napaka premikanja datoteke" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "Napaka" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Ime" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Velikost" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Spremenjeno" @@ -316,109 +308,109 @@ msgstr "Spremenjeno" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Neveljavno ime mape. Ime 'Souporaba' je zadržana za javno mapo." -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "%s ni mogoče preimenovati" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Pošlji" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "Upravljanje z datotekami" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "Največja velikost za pošiljanja" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "največ mogoče:" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "Uporabljeno za prejem več datotek in map." -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "Omogoči prejemanje arhivov ZIP" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 predstavlja neomejeno vrednost" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "Največja vhodna velikost za datoteke ZIP" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Shrani" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Novo" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "Nova besedilna datoteka" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "Besedilna datoteka" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "Nova mapa" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "Mapa" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "Iz povezave" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "Izbrisane datoteke" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "Prekliči pošiljanje" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "Ni ustreznih dovoljenj za pošiljanje ali ustvarjanje datotek na tem mestu." -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Tukaj še ni ničesar. Najprej je treba kakšno datoteko poslati v oblak!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Prejmi" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Izbriši" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Prekoračenje omejitve velikosti" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Datoteke, ki jih želite poslati, presegajo največjo dovoljeno velikost na strežniku." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Poteka preučevanje datotek, počakajte ..." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Trenutno poteka preučevanje" diff --git a/l10n/sl/files_external.po b/l10n/sl/files_external.po index 43c9665edab..e9332610e13 100644 --- a/l10n/sl/files_external.po +++ b/l10n/sl/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05: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" @@ -84,7 +84,7 @@ msgstr "Možnosti" #: templates/settings.php:12 msgid "Available for" -msgstr "" +msgstr "Na voljo za" #: templates/settings.php:32 msgid "Add storage" @@ -92,7 +92,7 @@ msgstr "Dodaj shrambo" #: templates/settings.php:92 msgid "No user or group" -msgstr "" +msgstr "Ni uporabnika ali skupine" #: templates/settings.php:95 msgid "All Users" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index dbde28d85dd..84a5d4921dd 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-30 01:55-0400\n" -"PO-Revision-Date: 2014-03-29 20:50+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-03 19:40+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -30,7 +30,7 @@ msgstr "Shranjeno" #: admin/controller.php:90 msgid "test email settings" -msgstr "" +msgstr "preizkusi nastavitve elektronske pošte" #: admin/controller.php:91 msgid "If you received this email, the settings seem to be correct." @@ -53,7 +53,7 @@ msgstr "" msgid "Send mode" msgstr "Način pošiljanja" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "Šifriranje" @@ -205,7 +205,7 @@ msgstr "Prišlo je do napake med posodabljanjem programa." msgid "Error" msgstr "Napaka" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "Posodobi" @@ -591,11 +591,11 @@ msgstr "Več" msgid "Less" msgstr "Manj" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "Različica" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "-z dovoljenjem " @@ -666,108 +666,108 @@ msgstr "Zaženi čarovnika prvega zagona" msgid "You have used %s of the available %s" msgstr "Uporabljenega je %s od razpoložljivih %s prostora." -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Geslo" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "Geslo je spremenjeno" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "Gesla ni mogoče spremeniti." -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "Trenutno geslo" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "Novo geslo" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "Spremeni geslo" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "Polno ime" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "Elektronski naslov" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "Osebni elektronski naslov" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "Slika profila" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "Pošlji novo" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "Izberi novo iz menija datotek" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "Odstrani sliko" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Slika je lahko png ali jpg. Slika naj bo kvadratna, ni pa to pogoj, saj jo bo mogoče obrezati." -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "Podoba je podana v izvornem računu." -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Prekliči" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "Izberi kot sliko profila" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "Jezik" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "Sodelujte pri prevajanju" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Uporabite naslov za dostop do datotek rpeko sistema WebDAV." -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Program za šifriranje ni več omogočen. Odšifrirati je treba vse datoteke." -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "Prijavno geslo" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "Odšifriraj vse datoteke" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index 10f0a0a3fc5..d1ac372f741 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "Emër jo i vlefshëm, '\\', '/', '<', '>', ':', '\"', '|', '?' dhe '*' nuk lejohen." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -65,12 +65,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" @@ -82,62 +82,62 @@ msgstr "" msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "E pa mundur të vendoset dosja e ngarkimit" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "Shenjë e gabuar" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "Asnjë skedar nuk u dërgua. Gabim i pa njohur" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "Skedari u ngarkua me sukses" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Skedari i ngarkuar tejkalon limitin hapsirës së lejuar në php.ini" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Skedari i ngarkuar tejlakon vlerën MAX_FILE_SIZE të përcaktuar në formën HTML" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "Skedari është ngakruar vetëm pjesërisht" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "Asnjë skedar nuk është ngarkuar" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Mungon dosja e përkohshme" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "Dështoi shkrimi në disk" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "Hapsira e arkivimit e pamjaftueshme" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "Dosje e pavlefshme" @@ -171,79 +171,79 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Skedari duke u ngarkuar. Largimi nga faqja do të anullojë ngarkimin" -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "URL-i nuk mund të jetë bosh" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} është ekzistues " -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "I pamundur krijimi i kartelës" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Ndaj" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "Fshi përfundimisht" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "Riemëro" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "Gabim lëvizjen dokumentave" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Gabim" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "Në vijim" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "u zëvendësua {new_name} me {old_name}" - -#: js/filelist.js:591 -msgid "undo" -msgstr "anullo" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n dosje" msgstr[1] "%n dosje" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n skedar" msgstr[1] "%n skedarë" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "{dirs} dhe {files}" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Po ngarkoj %n skedar" @@ -280,29 +280,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "Kodifikimi u çaktivizua por skedarët tuaj vazhdojnë të jenë të kodifikuar. Ju lutem shkoni tek parametrat personale për të dekodifikuar skedarët tuaj." -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Shkarkimi juaj është duke u përgatitur. Kjo mund të kërkojë kohë nëse skedarët janë të mëdhenj." -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "Gabim lëvizjen dokumentave" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "Gabim" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Emri" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Madhësia" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Ndryshuar" @@ -310,109 +302,109 @@ msgstr "Ndryshuar" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "Nuk është i mundur riemërtimi i %s" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Ngarko" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "Trajtimi i Skedarëve" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "Madhësia maksimale e nagarkimit" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "maks i mundshëm" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "Nevojitej shkarkim i shumë skedarëve dhe dosjeve" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "Mundëso skarkimin e ZIP" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "o është pa limit" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "Maksimumi hyrës i skedarëve ZIP" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Ruaj" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "E re" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "Skedar tekst" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "Dosje e're" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "Dosje" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "Nga lidhja" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "Skedarë të fshirë " -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "Anullo ngarkimin" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Këtu nuk ka asgje. Ngarko dicka" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Shkarko" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Fshi" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Ngarkimi shumë i madh" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Skedarët që po mundoheni të ngarkoni e tejkalojnë madhësinë maksimale të lejuar nga serveri." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Skanerizimi i skedarit në proces. Ju lutem prisni." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Skanimi aktual" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index eb157cd5a79..c7edf1b2774 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: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "Неисправан назив. Следећи знакови нису дозвољени: \\, /, <, >, :, \", |, ? и *." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -63,12 +63,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" @@ -80,62 +80,62 @@ msgstr "" msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "Ниједна датотека није отпремљена услед непознате грешке" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "Није дошло до грешке. Датотека је успешно отпремљена." -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Отпремљена датотека прелази смерницу upload_max_filesize у датотеци php.ini:" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Отпремљена датотека прелази смерницу MAX_FILE_SIZE која је наведена у HTML обрасцу" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "Датотека је делимично отпремљена" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "Датотека није отпремљена" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Недостаје привремена фасцикла" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "Не могу да пишем на диск" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "Нема довољно простора" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "неисправна фасцикла." @@ -169,81 +169,81 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Отпремање датотеке је у току. Ако сада напустите страницу, прекинућете отпремање." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} већ постоји" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Дели" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "Обриши за стално" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "Преименуј" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Грешка" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "На чекању" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "замењено {new_name} са {old_name}" - -#: js/filelist.js:591 -msgid "undo" -msgstr "опозови" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -281,29 +281,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Припремам преузимање. Ово може да потраје ако су датотеке велике." -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "Грешка" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Име" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Величина" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Измењено" @@ -311,109 +303,109 @@ msgstr "Измењено" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Отпреми" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "Управљање датотекама" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "Највећа величина датотеке" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "највећа величина:" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "Неопходно за преузимање вишеделних датотека и фасцикли." -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "Омогући преузимање у ZIP-у" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 је неограничено" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "Највећа величина ZIP датотека" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Сачувај" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Нова" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "текстуална датотека" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "фасцикла" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "Са везе" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "Обрисане датотеке" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "Прекини отпремање" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Овде нема ничег. Отпремите нешто!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Преузми" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Обриши" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Датотека је превелика" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Датотеке које желите да отпремите прелазе ограничење у величини." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Скенирам датотеке…" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Тренутно скенирање" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index 04923e48049..b4de486ab40 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -63,12 +63,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" @@ -80,62 +80,62 @@ msgstr "" msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "Nema greške, fajl je uspešno poslat" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Poslati fajl prevazilazi direktivu MAX_FILE_SIZE koja je navedena u HTML formi" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "Poslati fajl je samo delimično otpremljen!" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "Nijedan fajl nije poslat" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Nedostaje privremena fascikla" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "" @@ -169,81 +169,81 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Podeli" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "Preimenij" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 -msgid "Pending" +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" msgstr "" -#: js/filelist.js:456 -msgid "Could not rename file" -msgstr "" +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Greška" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" +#: js/filelist.js:267 js/filelist.js:1113 +msgid "Pending" msgstr "" -#: js/filelist.js:591 -msgid "undo" +#: js/filelist.js:630 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -281,29 +281,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "Greška" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Ime" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Veličina" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Zadnja izmena" @@ -311,109 +303,109 @@ msgstr "Zadnja izmena" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Pošalji" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "Maksimalna veličina pošiljke" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Snimi" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Ovde nema ničeg. Pošaljite nešto!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Preuzmi" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Obriši" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Pošiljka je prevelika" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Fajlovi koje želite da pošaljete prevazilaze ograničenje maksimalne veličine pošiljke na ovom serveru." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "" diff --git a/l10n/su/files.po b/l10n/su/files.po index cb2cdbaca34..f02bfd4f577 100644 --- a/l10n/su/files.po +++ b/l10n/su/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" "MIME-Version: 1.0\n" @@ -17,48 +17,48 @@ msgstr "" "Language: su\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" @@ -68,74 +68,74 @@ msgstr "" msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "" @@ -156,90 +156,90 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 -msgid "Pending" +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" msgstr "" -#: js/filelist.js:456 -msgid "Could not rename file" +#: js/filelist.js:102 js/files.js:552 +msgid "Error" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" +#: js/filelist.js:267 js/filelist.js:1113 +msgid "Pending" msgstr "" -#: js/filelist.js:591 -msgid "undo" +#: js/filelist.js:630 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -275,29 +275,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "" @@ -305,109 +297,109 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 337141babf3..59e566d5dec 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: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" @@ -50,7 +50,7 @@ msgid "" "allowed." msgstr "Ogiltigt namn, '\\', '/', '<', '>', ':', '\"', '|', '?' och '*' är inte tillåtet." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -71,12 +71,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Fel under nerladdning från %s till %s" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "Fel under skapande utav filen" @@ -88,62 +88,62 @@ msgstr "Katalognamn kan ej vara tomt." msgid "Error when creating the folder" msgstr "Fel under skapande utav en katalog" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "Kan inte sätta mapp för uppladdning." -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "Ogiltig token" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "Ingen fil uppladdad. Okänt fel" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "Inga fel uppstod. Filen laddades upp utan problem." -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Den uppladdade filen överskrider upload_max_filesize direktivet php.ini:" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Den uppladdade filen överskrider MAX_FILE_SIZE direktivet som har angetts i HTML formuläret" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "Den uppladdade filen var endast delvis uppladdad" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "Ingen fil laddades upp" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "En temporär mapp saknas" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "Misslyckades spara till disk" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "Inte tillräckligt med lagringsutrymme tillgängligt" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "Uppladdning misslyckades. Kunde inte hitta den uppladdade filen" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "Uppladdning misslyckades. Gick inte att hämta filinformation." -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "Felaktig mapp." @@ -177,79 +177,79 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "URL kan ej vara tomt" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "I hemma katalogen 'Delat' är ett reserverat filnamn" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} finns redan" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "Kunde ej skapa fil" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "Kunde ej skapa katalog" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Dela" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "Radera permanent" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "Byt namn" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "Fel uppstod vid flyttning av fil" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Fel" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "Väntar" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "Kan ej byta filnamn" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "ersatt {new_name} med {old_name}" - -#: js/filelist.js:591 -msgid "undo" -msgstr "ångra" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "Kunde inte ta bort filen." -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mapp" msgstr[1] "%n mappar" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fil" msgstr[1] "%n filer" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "{dirs} och {files}" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Laddar upp %n fil" @@ -286,29 +286,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "Kryptering inaktiverades men dina filer är fortfarande krypterade. Vänligen gå till sidan för dina personliga inställningar för att dekryptera dina filer." -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Din nedladdning förbereds. Det kan ta tid om det är stora filer." -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "Fel uppstod vid flyttning av fil" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "Fel" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Namn" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Storlek" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Ändrad" @@ -316,109 +308,109 @@ msgstr "Ändrad" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Ogiltigt mappnamn. Användande av 'Shared' är reserverat av ownCloud" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "%s kunde inte namnändras" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Ladda upp" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "Filhantering" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "Maximal storlek att ladda upp" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "max. möjligt:" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "Krävs för nerladdning av flera mappar och filer." -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "Aktivera ZIP-nerladdning" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 är oändligt" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "Största tillåtna storlek för ZIP-filer" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Spara" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Ny" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "Textfil" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "Ny mapp" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "Mapp" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "Från länk" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "Raderade filer" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "Avbryt uppladdning" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "Du har ej tillåtelse att ladda upp eller skapa filer här" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Ingenting här. Ladda upp något!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Ladda ner" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Radera" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "För stor uppladdning" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Filerna du försöker ladda upp överstiger den maximala storleken för filöverföringar på servern." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Filer skannas, var god vänta" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Aktuell skanning" diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index 2f08b1df5c2..a21782b2813 100644 --- a/l10n/sv/files_external.po +++ b/l10n/sv/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05: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/sw_KE/files.po b/l10n/sw_KE/files.po index 24c934753a5..e98284e51f3 100644 --- a/l10n/sw_KE/files.po +++ b/l10n/sw_KE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -17,48 +17,48 @@ msgstr "" "Language: sw_KE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" @@ -68,74 +68,74 @@ msgstr "" msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "" @@ -156,92 +156,92 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 -msgid "Pending" +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" msgstr "" -#: js/filelist.js:456 -msgid "Could not rename file" +#: js/filelist.js:102 js/files.js:552 +msgid "Error" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" +#: js/filelist.js:267 js/filelist.js:1113 +msgid "Pending" msgstr "" -#: js/filelist.js:591 -msgid "undo" +#: js/filelist.js:630 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -278,29 +278,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "" @@ -308,109 +300,109 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 0dacc830107..6c806272a49 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: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "செல்லுபடியற்ற பெயர்,'\\', '/', '<', '>', ':', '\"', '|', '?' மற்றும் '*' ஆகியன அனுமதிக்கப்படமாட்டாது." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -63,12 +63,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" @@ -80,62 +80,62 @@ msgstr "" msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "ஒரு கோப்பும் பதிவேற்றப்படவில்லை. அறியப்படாத வழு" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "இங்கு வழு இல்லை, கோப்பு வெற்றிகரமாக பதிவேற்றப்பட்டது" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "பதிவேற்றப்பட்ட கோப்பானது HTML படிவத்தில் குறிப்பிடப்பட்டுள்ள MAX_FILE_SIZE directive ஐ விட கூடியது" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "பதிவேற்றப்பட்ட கோப்பானது பகுதியாக மட்டுமே பதிவேற்றப்பட்டுள்ளது" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "எந்த கோப்பும் பதிவேற்றப்படவில்லை" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "ஒரு தற்காலிகமான கோப்புறையை காணவில்லை" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "வட்டில் எழுத முடியவில்லை" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "" @@ -169,79 +169,79 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "கோப்பு பதிவேற்றம் செயல்பாட்டில் உள்ளது. இந்தப் பக்கத்திலிருந்து வெறியேறுவதானது பதிவேற்றலை இரத்து செய்யும்." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} ஏற்கனவே உள்ளது" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "பகிர்வு" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "பெயர்மாற்றம்" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "வழு" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "நிலுவையிலுள்ள" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "{new_name} ஆனது {old_name} இனால் மாற்றப்பட்டது" - -#: js/filelist.js:591 -msgid "undo" -msgstr "முன் செயல் நீக்கம் " - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -278,29 +278,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "வழு" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "பெயர்" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "அளவு" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "மாற்றப்பட்டது" @@ -308,109 +300,109 @@ msgstr "மாற்றப்பட்டது" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "பதிவேற்றுக" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "கோப்பு கையாளுதல்" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "பதிவேற்றக்கூடிய ஆகக்கூடிய அளவு " -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "ஆகக் கூடியது:" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "பல்வேறுப்பட்ட கோப்பு மற்றும் கோப்புறைகளை பதிவிறக்க தேவையானது." -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "ZIP பதிவிறக்கலை இயலுமைப்படுத்துக" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 ஆனது எல்லையற்றது" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "ZIP கோப்புகளுக்கான ஆகக்கூடிய உள்ளீட்டு அளவு" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "சேமிக்க " -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "புதிய" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "கோப்பு உரை" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "கோப்புறை" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "இணைப்பிலிருந்து" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "பதிவேற்றலை இரத்து செய்க" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "இங்கு ஒன்றும் இல்லை. ஏதாவது பதிவேற்றுக!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "பதிவிறக்குக" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "நீக்குக" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "பதிவேற்றல் மிகப்பெரியது" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "நீங்கள் பதிவேற்ற முயற்சிக்கும் கோப்புகளானது இந்த சேவையகத்தில் கோப்பு பதிவேற்றக்கூடிய ஆகக்கூடிய அளவிலும் கூடியது." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "கோப்புகள் வருடப்படுகின்றன, தயவுசெய்து காத்திருங்கள்." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "தற்போது வருடப்படுபவை" diff --git a/l10n/ta_LK/files_external.po b/l10n/ta_LK/files_external.po index 1b56d02310c..ef329183d19 100644 --- a/l10n/ta_LK/files_external.po +++ b/l10n/ta_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05: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/te/files.po b/l10n/te/files.po index 23e4494a55d..97c2ad4d8dd 100644 --- a/l10n/te/files.po +++ b/l10n/te/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -63,12 +63,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" @@ -80,62 +80,62 @@ msgstr "" msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "" @@ -169,79 +169,79 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "శాశ్వతంగా తొలగించు" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 -msgid "Pending" +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" msgstr "" -#: js/filelist.js:456 -msgid "Could not rename file" -msgstr "" +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "పొరపాటు" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" +#: js/filelist.js:267 js/filelist.js:1113 +msgid "Pending" msgstr "" -#: js/filelist.js:591 -msgid "undo" +#: js/filelist.js:630 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -278,29 +278,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "పొరపాటు" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "పేరు" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "పరిమాణం" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "" @@ -308,109 +300,109 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "భద్రపరచు" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "కొత్త సంచయం" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "సంచయం" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "తొలగించు" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "" diff --git a/l10n/te/files_external.po b/l10n/te/files_external.po index 3b57d8abda0..9be6a7bbaec 100644 --- a/l10n/te/files_external.po +++ b/l10n/te/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:30+0000\n" "Last-Translator: I Robot\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index e57534fed5b..83b1d8f3aeb 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: 2014-04-03 01:55-0400\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -135,63 +135,63 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "" -#: js/js.js:543 +#: js/js.js:564 msgid "Saving..." msgstr "" -#: js/js.js:1103 +#: js/js.js:1124 msgid "seconds ago" msgstr "" -#: js/js.js:1104 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1106 +#: js/js.js:1127 msgid "today" msgstr "" -#: js/js.js:1107 +#: js/js.js:1128 msgid "yesterday" msgstr "" -#: js/js.js:1108 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1109 +#: js/js.js:1130 msgid "last month" msgstr "" -#: js/js.js:1110 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1111 +#: js/js.js:1132 msgid "months ago" msgstr "" -#: js/js.js:1112 +#: js/js.js:1133 msgid "last year" msgstr "" -#: js/js.js:1113 +#: js/js.js:1134 msgid "years ago" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 32001038044..ecaa7d3fb75 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: 2014-04-03 01:55-0400\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -43,7 +43,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -63,12 +63,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" @@ -80,62 +80,62 @@ msgstr "" msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "" @@ -169,27 +169,27 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" @@ -205,43 +205,43 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 -msgid "Pending" +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" msgstr "" -#: js/filelist.js:456 -msgid "Could not rename file" +#: js/filelist.js:102 js/files.js:552 +msgid "Error" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" +#: js/filelist.js:267 js/filelist.js:1113 +msgid "Pending" msgstr "" -#: js/filelist.js:591 -msgid "undo" +#: js/filelist.js:630 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:694 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:700 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -277,29 +277,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:382 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:613 js/files.js:657 -msgid "Error moving file" -msgstr "" - -#: js/files.js:613 js/files.js:657 -msgid "Error" -msgstr "" - -#: js/files.js:675 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:676 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:677 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "" @@ -307,12 +299,12 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "" @@ -348,68 +340,68 @@ msgstr "" msgid "Save" msgstr "" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 547d55849db..535a51360ff 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: 2014-04-03 01:55-0400\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\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 f5f737dac80..311d698d046 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: 2014-04-03 01:55-0400\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\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 fe8bbde326b..393ec651fb8 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: 2014-04-03 01:55-0400\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: js/share.js:13 +#: js/share.js:33 msgid "Shared by {owner}" msgstr "" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index cc837ef6d36..834d4cb14ce 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: 2014-04-03 01:55-0400\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -27,38 +27,38 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "" -#: js/trash.js:16 js/trash.js:108 js/trash.js:157 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "" +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "" + #: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 +#: templates/index.php:18 msgid "Name" msgstr "" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:21 templates/index.php:23 msgid "Restore" msgstr "" -#: templates/index.php:31 +#: templates/index.php:29 msgid "Deleted" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:32 templates/index.php:33 msgid "Delete" msgstr "" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 10bf11cd4b9..c4e4dc6dc85 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: 2014-04-03 01:55-0400\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\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 8f7656f4f22..ffa34f094b4 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: 2014-04-03 01:55-0400\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -279,8 +279,8 @@ msgstr "" msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index f50460d212d..3a473ed96a3 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: 2014-04-03 01:55-0400\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -272,7 +272,7 @@ msgstr "" msgid "Please double check the installation guides." msgstr "" -#: share/mailnotifications.php:73 share/mailnotifications.php:119 +#: share/mailnotifications.php:72 share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 21bb0d4c5e2..d053872e687 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: 2014-04-03 01:55-0400\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\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 cf61da7c93f..df6b7027c45 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: 2014-04-03 01:55-0400\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\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 669ce82b01d..34b50a06562 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: 2014-04-03 01:55-0400\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\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 7cb40f38e77..3c11a5cfddd 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: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "ชื่อที่ใช้ไม่ถูกต้อง, '\\', '/', '<', '>', ':', '\"', '|', '?' และ '*' ไม่ได้รับอนุญาตให้ใช้งานได้" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -63,12 +63,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" @@ -80,62 +80,62 @@ msgstr "" msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "ยังไม่มีไฟล์ใดที่ถูกอัพโหลด เกิดข้อผิดพลาดที่ไม่ทราบสาเหตุ" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "ไม่พบข้อผิดพลาดใดๆ, ไฟล์ถูกอัพโหลดเรียบร้อยแล้ว" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "ขนาดไฟล์ที่อัพโหลดมีขนาดเกิน upload_max_filesize ที่ระบุไว้ใน php.ini" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "ไฟล์ที่อัพโหลดมีขนาดไฟล์ใหญ่เกินจำนวนที่กำหนดไว้ในคำสั่ง MAX_FILE_SIZE ที่ถูกระบุไว้ในรูปแบบของ HTML" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "ไฟล์ถูกอัพโหลดได้เพียงบางส่วนเท่านั้น" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "ไม่มีไฟล์ที่ถูกอัพโหลด" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "โฟลเดอร์ชั่วคราวเกิดการสูญหาย" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "เขียนข้อมูลลงแผ่นดิสก์ล้มเหลว" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "เหลือพื้นที่ไม่เพียงสำหรับใช้งาน" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "ไดเร็กทอรี่ไม่ถูกต้อง" @@ -169,77 +169,77 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "การอัพโหลดไฟล์กำลังอยู่ในระหว่างดำเนินการ การออกจากหน้าเว็บนี้จะทำให้การอัพโหลดถูกยกเลิก" -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} มีอยู่แล้วในระบบ" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "แชร์" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "เปลี่ยนชื่อ" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "ข้อผิดพลาด" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "อยู่ระหว่างดำเนินการ" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "แทนที่ {new_name} ด้วย {old_name} แล้ว" - -#: js/filelist.js:591 -msgid "undo" -msgstr "เลิกทำ" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -275,29 +275,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "กำลังเตรียมดาวน์โหลดข้อมูล หากไฟล์มีขนาดใหญ่ อาจใช้เวลาสักครู่" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "ข้อผิดพลาด" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "ชื่อ" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "ขนาด" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "แก้ไขแล้ว" @@ -305,109 +297,109 @@ msgstr "แก้ไขแล้ว" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "อัพโหลด" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "การจัดกาไฟล์" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "ขนาดไฟล์สูงสุดที่อัพโหลดได้" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "จำนวนสูงสุดที่สามารถทำได้: " -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "จำเป็นต้องใช้สำหรับการดาวน์โหลดไฟล์พร้อมกันหลายๆไฟล์หรือดาวน์โหลดทั้งโฟลเดอร์" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "อนุญาตให้ดาวน์โหลดเป็นไฟล์ ZIP ได้" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 หมายถึงไม่จำกัด" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "ขนาดไฟล์ ZIP สูงสุด" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "บันทึก" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "อัพโหลดไฟล์ใหม่" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "ไฟล์ข้อความ" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "โฟลเดอร์ใหม่" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "แฟ้มเอกสาร" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "จากลิงก์" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "ยกเลิกการอัพโหลด" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "ยังไม่มีไฟล์ใดๆอยู่ที่นี่ กรุณาอัพโหลดไฟล์!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "ดาวน์โหลด" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "ลบ" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "ไฟล์ที่อัพโหลดมีขนาดใหญ่เกินไป" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "ไฟล์ที่คุณพยายามที่จะอัพโหลดมีขนาดเกินกว่าขนาดสูงสุดที่กำหนดไว้ให้อัพโหลดได้สำหรับเซิร์ฟเวอร์นี้" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "ไฟล์กำลังอยู่ระหว่างการสแกน, กรุณารอสักครู่." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "ไฟล์ที่กำลังสแกนอยู่ขณะนี้" diff --git a/l10n/th_TH/files_external.po b/l10n/th_TH/files_external.po index cfcbd4d5b5f..ac2c87850a3 100644 --- a/l10n/th_TH/files_external.po +++ b/l10n/th_TH/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05: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 cc0a8208714..c457d0acab9 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-03 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 12:00+0000\n" -"Last-Translator: volkangezer \n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" @@ -46,7 +46,7 @@ msgid "" "allowed." msgstr "Geçersiz isim, '\\', '/', '<', '>', ':', '\"', '|', '?' ve '*' karakterlerine izin verilmemektedir." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Hedef klasör taşındı veya silindi." @@ -67,12 +67,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Sunucunun adresleri açma izi yok, lütfen sunucu yapılandırmasını denetleyin" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "%s, %s içine indirilirken hata" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "Dosya oluşturulurken hata" @@ -84,62 +84,62 @@ msgstr "Klasör adı boş olamaz." msgid "Error when creating the folder" msgstr "Klasör oluşturulurken hata" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "Yükleme dizini tanımlanamadı." -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "Geçersiz Simge" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "Dosya yüklenmedi. Bilinmeyen hata" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "Dosya başarıyla yüklendi, hata oluşmadı" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "php.ini dosyasında upload_max_filesize ile belirtilen dosya yükleme sınırı aşıldı." -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Yüklenecek dosyanın boyutu HTML formunda belirtilen MAX_FILE_SIZE limitini aşıyor" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "Dosya kısmen karşıya yüklenebildi" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "Hiç dosya gönderilmedi" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Geçici dizin eksik" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "Diske yazılamadı" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "Yeterli disk alanı yok" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "Yükleme başarısız. Yüklenen dosya bulunamadı" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "Yükleme başarısız. Dosya bilgisi alınamadı." -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "Geçersiz dizin." @@ -173,27 +173,27 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dosya yükleme işlemi sürüyor. Şimdi sayfadan ayrılırsanız işleminiz iptal olur." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "URL boş olamaz" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Ev klasöründeki 'Paylaşılan', ayrılmış bir dosya adıdır" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} zaten mevcut" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "Dosya oluşturulamadı" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "Klasör oluşturulamadı" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "Adres getirilirken hata" @@ -209,43 +209,43 @@ msgstr "Kalıcı olarak sil" msgid "Rename" msgstr "İsim değiştir." -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "Dosya taşıma hatası" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Hata" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "Bekliyor" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "Dosya adlandırılamadı" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "{new_name} ismi {old_name} ile değiştirildi" - -#: js/filelist.js:591 -msgid "undo" -msgstr "geri al" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "Dosya silinirken hata." -#: js/filelist.js:687 js/filelist.js:761 js/files.js:694 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n dizin" msgstr[1] "%n dizin" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:700 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n dosya" msgstr[1] "%n dosya" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "{dirs} ve {files}" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n dosya yükleniyor" @@ -282,29 +282,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "Şifreleme işlemi durduruldu ancak dosyalarınız şifreli. Dosyalarınızın şifresini kaldırmak için lütfen kişisel ayarlar kısmına geçin." -#: js/files.js:382 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "İndirmeniz hazırlanıyor. Dosya büyük ise biraz zaman alabilir." -#: js/files.js:613 js/files.js:657 -msgid "Error moving file" -msgstr "Dosya taşıma hatası" - -#: js/files.js:613 js/files.js:657 -msgid "Error" -msgstr "Hata" - -#: js/files.js:675 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "İsim" -#: js/files.js:676 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Boyut" -#: js/files.js:677 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Değiştirilme" @@ -312,12 +304,12 @@ msgstr "Değiştirilme" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Geçersiz dizin adı. 'Shared' ismi ayrılmıştır." -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "%s yeniden adlandırılamadı" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Yükle" @@ -353,68 +345,68 @@ msgstr "ZIP dosyaları için en fazla girdi boyutu" msgid "Save" msgstr "Kaydet" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Yeni" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "Yeni metin dosyası" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "Metin dosyası" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "Yeni klasör" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "Klasör" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "Bağlantıdan" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "Silinmiş dosyalar" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "Yüklemeyi iptal et" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "Buraya dosya yükleme veya oluşturma izniniz yok" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Burada hiçbir şey yok. Bir şeyler yükleyin!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "İndir" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Sil" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Yükleme çok büyük" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Yüklemeye çalıştığınız dosyalar bu sunucudaki maksimum yükleme boyutunu aşıyor." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Dosyalar taranıyor, lütfen bekleyin." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Güncel tarama" diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index 2076251ca04..42d161b5c54 100644 --- a/l10n/tr/files_external.po +++ b/l10n/tr/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-03 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 11:07+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05: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/tzm/files.po b/l10n/tzm/files.po index 77cf8572123..0e5165652ec 100644 --- a/l10n/tzm/files.po +++ b/l10n/tzm/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Central Atlas Tamazight (http://www.transifex.com/projects/p/owncloud/language/tzm/)\n" "MIME-Version: 1.0\n" @@ -17,48 +17,48 @@ msgstr "" "Language: tzm\n" "Plural-Forms: nplurals=2; plural=(n == 0 || n == 1 || (n > 10 && n < 100) ? 0 : 1;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" @@ -68,74 +68,74 @@ msgstr "" msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "" @@ -156,92 +156,92 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 -msgid "Pending" +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" msgstr "" -#: js/filelist.js:456 -msgid "Could not rename file" +#: js/filelist.js:102 js/files.js:552 +msgid "Error" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" +#: js/filelist.js:267 js/filelist.js:1113 +msgid "Pending" msgstr "" -#: js/filelist.js:591 -msgid "undo" +#: js/filelist.js:630 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -278,29 +278,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "" @@ -308,109 +300,109 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index 99023de9b63..35888bf4d05 100644 --- a/l10n/ug/files.po +++ b/l10n/ug/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -63,12 +63,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" @@ -80,62 +80,62 @@ msgstr "" msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "ھېچقانداق ھۆججەت يۈكلەنمىدى. يوچۇن خاتالىق" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "ھېچقانداق ھۆججەت يۈكلەنمىدى" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "ۋاقىتلىق قىسقۇچ كەم." -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "دىسكىغا يازالمىدى" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "يېتەرلىك ساقلاش بوشلۇقى يوق" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "" @@ -169,77 +169,77 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ھۆججەت يۈكلەش مەشغۇلاتى ئېلىپ بېرىلىۋاتىدۇ. Leaving the page now will cancel the upload." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} مەۋجۇت" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "ھەمبەھىر" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "مەڭگۈلۈك ئۆچۈر" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "ئات ئۆزگەرت" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "خاتالىق" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "كۈتۈۋاتىدۇ" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "" - -#: js/filelist.js:591 -msgid "undo" -msgstr "يېنىۋال" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -275,29 +275,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "خاتالىق" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "ئاتى" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "چوڭلۇقى" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "ئۆزگەرتكەن" @@ -305,109 +297,109 @@ msgstr "ئۆزگەرتكەن" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "يۈكلە" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "ساقلا" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "يېڭى" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "تېكىست ھۆججەت" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "يېڭى قىسقۇچ" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "قىسقۇچ" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "ئۆچۈرۈلگەن ھۆججەتلەر" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "يۈكلەشتىن ۋاز كەچ" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "بۇ جايدا ھېچنېمە يوق. Upload something!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "چۈشۈر" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "ئۆچۈر" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "يۈكلەندىغىنى بەك چوڭ" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "" diff --git a/l10n/ug/files_external.po b/l10n/ug/files_external.po index 3c67e9f9bb5..dc93cbadcf0 100644 --- a/l10n/ug/files_external.po +++ b/l10n/ug/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:30+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 310553d9484..5b0573fee74 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: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" @@ -43,7 +43,7 @@ msgid "" "allowed." msgstr "Невірне ім'я, '\\', '/', '<', '>', ':', '\"', '|', '?' та '*' не дозволені." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -64,12 +64,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" @@ -81,62 +81,62 @@ msgstr "Ім'я теки не може бути порожнім." msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "Не вдалося встановити каталог завантаження." -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "Не завантажено жодного файлу. Невідома помилка" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "Файл успішно вивантажено без помилок." -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Розмір звантаження перевищує upload_max_filesize параметра в php.ini: " -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Розмір відвантаженого файлу перевищує директиву MAX_FILE_SIZE вказану в HTML формі" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "Файл відвантажено лише частково" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "Не відвантажено жодного файлу" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Відсутній тимчасовий каталог" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "Невдалося записати на диск" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "Місця більше немає" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "Невірний каталог." @@ -170,81 +170,81 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Виконується завантаження файлу. Закриття цієї сторінки приведе до відміни завантаження." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "URL не може бути порожнім" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} вже існує" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "Не вдалося створити файл" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "Не вдалося створити теку" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Поділитися" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "Видалити назавжди" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "Перейменувати" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "Помилка переміщення файлу" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Помилка" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "Очікування" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "Неможливо перейменувати файл" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "замінено {new_name} на {old_name}" - -#: js/filelist.js:591 -msgid "undo" -msgstr "відмінити" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n тека" msgstr[1] "%n тека" msgstr[2] "%n теки" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n файл" msgstr[1] "%n файлів" msgstr[2] "%n файли" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -282,29 +282,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Ваше завантаження готується. Це може зайняти деякий час, якщо файли завеликі." -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "Помилка переміщення файлу" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "Помилка" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Ім'я" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Розмір" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Змінено" @@ -312,109 +304,109 @@ msgstr "Змінено" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "%s не може бути перейменований" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Вивантажити" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "Робота з файлами" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "Максимальний розмір відвантажень" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "макс.можливе:" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "Необхідно для мульти-файлового та каталогового завантаження." -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "Активувати ZIP-завантаження" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 є безліміт" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "Максимальний розмір завантажуємого ZIP файлу" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Зберегти" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Створити" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "Текстовий файл" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "Нова тека" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "Тека" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "З посилання" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "Видалено файлів" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "Перервати завантаження" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Тут нічого немає. Відвантажте що-небудь!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Завантажити" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Видалити" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Файл занадто великий" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Файли,що ви намагаєтесь відвантажити перевищують максимальний дозволений розмір файлів на цьому сервері." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Файли скануються, зачекайте, будь-ласка." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Поточне сканування" diff --git a/l10n/uk/files_external.po b/l10n/uk/files_external.po index c3a2dcb2ca5..ac1a791472a 100644 --- a/l10n/uk/files_external.po +++ b/l10n/uk/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05: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/ur/files.po b/l10n/ur/files.po index c8212b63c8b..7b6b3cbb2c0 100644 --- a/l10n/ur/files.po +++ b/l10n/ur/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -17,48 +17,48 @@ msgstr "" "Language: ur\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" @@ -68,74 +68,74 @@ msgstr "" msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "" @@ -156,92 +156,92 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 -msgid "Pending" +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" msgstr "" -#: js/filelist.js:456 -msgid "Could not rename file" +#: js/filelist.js:102 js/files.js:552 +msgid "Error" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" +#: js/filelist.js:267 js/filelist.js:1113 +msgid "Pending" msgstr "" -#: js/filelist.js:591 -msgid "undo" +#: js/filelist.js:630 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -278,29 +278,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "" @@ -308,109 +300,109 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "" diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index a30d1be9663..4a9be83d4b0 100644 --- a/l10n/ur_PK/files.po +++ b/l10n/ur_PK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:55+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" @@ -17,48 +17,48 @@ msgstr "" "Language: ur_PK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" @@ -68,74 +68,74 @@ msgstr "" msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "" @@ -156,92 +156,92 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 -msgid "Pending" +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" msgstr "" -#: js/filelist.js:456 -msgid "Could not rename file" -msgstr "" +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "ایرر" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" +#: js/filelist.js:267 js/filelist.js:1113 +msgid "Pending" msgstr "" -#: js/filelist.js:591 -msgid "undo" +#: js/filelist.js:630 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -278,29 +278,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "ایرر" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "" @@ -308,109 +300,109 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "" diff --git a/l10n/uz/files.po b/l10n/uz/files.po index a432f0ef9c6..cbb3c8601e9 100644 --- a/l10n/uz/files.po +++ b/l10n/uz/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uzbek (http://www.transifex.com/projects/p/owncloud/language/uz/)\n" "MIME-Version: 1.0\n" @@ -17,48 +17,48 @@ msgstr "" "Language: uz\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" @@ -68,74 +68,74 @@ msgstr "" msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "" @@ -156,90 +156,90 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 -msgid "Pending" +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" msgstr "" -#: js/filelist.js:456 -msgid "Could not rename file" +#: js/filelist.js:102 js/files.js:552 +msgid "Error" msgstr "" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" +#: js/filelist.js:267 js/filelist.js:1113 +msgid "Pending" msgstr "" -#: js/filelist.js:591 -msgid "undo" +#: js/filelist.js:630 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -275,29 +275,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "" @@ -305,109 +297,109 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index b049eef635c..709b3b848ff 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" @@ -46,7 +46,7 @@ msgid "" "allowed." msgstr "Tên không hợp lệ, '\\', '/', '<', '>', ':', '\"', '|', '?' và '*' thì không được phép dùng." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -67,12 +67,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Server cấm mở URLs, vui lòng kiểm tra lại cấu hình server" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Lỗi trong trong quá trình tải %s từ %s" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "Lỗi khi tạo file" @@ -84,62 +84,62 @@ msgstr "Tên thư mục không thể để trống" msgid "Error when creating the folder" msgstr "Lỗi khi tạo thư mục" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "Không thể thiết lập thư mục tải lên." -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "Xác thực không hợp lệ" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "Không có tập tin nào được tải lên. Lỗi không xác định" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "Không có lỗi, các tập tin đã được tải lên thành công" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Tập tin được tải lên vượt quá MAX_FILE_SIZE được quy định trong mẫu HTML" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "Các tập tin được tải lên chỉ tải lên được một phần" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "Chưa có file nào được tải lên" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "Không tìm thấy thư mục tạm" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "Không thể ghi " -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "Không đủ không gian lưu trữ" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "Tải lên thất bại. Không thể tìm thấy tập tin được tải lên" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "Tải lên thất bại. Không thể có được thông tin tập tin." -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "Thư mục không hợp lệ" @@ -173,77 +173,77 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Tập tin tải lên đang được xử lý. Nếu bạn rời khỏi trang bây giờ sẽ hủy quá trình này." -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "URL không thể để trống" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} đã tồn tại" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "Không thể tạo file" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "Không thể tạo thư mục" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "Chia sẻ" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "Xóa vĩnh vễn" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "Sửa tên" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "Lỗi di chuyển tập tin" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "Lỗi" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "Đang chờ" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "Không thể đổi tên file" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "đã thay thế {new_name} bằng {old_name}" - -#: js/filelist.js:591 -msgid "undo" -msgstr "lùi lại" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "Lỗi xóa file," -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n thư mục" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n tập tin" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "{dirs} và {files}" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Đang tải lên %n tập tin" @@ -279,29 +279,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "Mã hóa đã bị vô hiệu nhưng những tập tin của bạn vẫn được mã hóa. Vui lòng vào phần thiết lập cá nhân để giải mã chúng." -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Your download is being prepared. This might take some time if the files are big." -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "Lỗi di chuyển tập tin" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "Lỗi" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "Tên" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "Kích cỡ" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "Thay đổi" @@ -309,109 +301,109 @@ msgstr "Thay đổi" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "%s không thể đổi tên" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "Tải lên" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "Xử lý tập tin" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "Kích thước tối đa " -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "tối đa cho phép:" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "Cần thiết cho tải nhiều tập tin và thư mục." -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "Cho phép ZIP-download" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 là không giới hạn" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "Kích thước tối đa cho các tập tin ZIP" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "Lưu" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Tạo mới" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "File text mới" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "Tập tin văn bản" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "Tạo thư mục" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "Thư mục" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "Từ liên kết" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "File đã bị xóa" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "Hủy upload" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "Bạn không có quyền upload hoặc tạo files ở đây" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Không có gì ở đây .Hãy tải lên một cái gì đó !" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "Tải về" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Xóa" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "Tập tin tải lên quá lớn" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Các tập tin bạn đang tải lên vượt quá kích thước tối đa cho phép trên máy chủ ." -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "Tập tin đang được quét ,vui lòng chờ." -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "Hiện tại đang quét" diff --git a/l10n/vi/files_external.po b/l10n/vi/files_external.po index 8a526dd6ac5..b9a6fd2e3ec 100644 --- a/l10n/vi/files_external.po +++ b/l10n/vi/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05: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 79cc25eb3ea..6d47ffa6b6c 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" @@ -46,7 +46,7 @@ msgid "" "allowed." msgstr "无效名称,'\\', '/', '<', '>', ':', '\"', '|', '?' 和 '*' 不被允许使用。" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -67,12 +67,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "服务器没有允许打开URL网址,请检查服务器配置" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "当下载 %s 到 %s 时出错" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "当创建文件是出错" @@ -84,62 +84,62 @@ msgstr "文件夹名称不能为空" msgid "Error when creating the folder" msgstr "创建文件夹出错" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "无法设置上传文件夹。" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "无效密匙" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "没有文件被上传。未知错误" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "文件上传成功,没有错误发生" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "上传文件大小已超过php.ini中upload_max_filesize所规定的值" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "上传的文件长度超出了 HTML 表单中 MAX_FILE_SIZE 的限制" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "已上传文件只上传了部分(不完整)" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "没有文件被上传" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "缺少临时目录" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "写入磁盘失败" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "没有足够的存储空间" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "上传失败。不能发现上传的文件" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "上传失败。不能获取文件信息。" -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "无效文件夹。" @@ -173,77 +173,77 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "文件正在上传中。现在离开此页会导致上传动作被取消。" -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "URL不能为空" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "主目录里 'Shared' 是系统预留目录名" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} 已存在" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "不能创建文件" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "不能创建文件夹" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "获取URL出错" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "分享" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "永久删除" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "重命名" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "移动文件错误" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "错误" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "等待" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "不能重命名文件" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "已将 {old_name}替换成 {new_name}" - -#: js/filelist.js:591 -msgid "undo" -msgstr "撤销" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "删除文件出错。" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n 文件夹" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n个文件" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "{dirs} 和 {files}" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "上传 %n 个文件" @@ -279,29 +279,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "加密是被禁用的,但是您的文件还是被加密了。请到您的个人配置里设置文件加密选项。" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "下载正在准备中。如果文件较大可能会花费一些时间。" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "移动文件错误" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "错误" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "名称" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "大小" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "修改日期" @@ -309,109 +301,109 @@ msgstr "修改日期" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "无效的文件夹名。”Shared“ 是 Owncloud 预留的文件夹" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "%s 不能被重命名" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "上传" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "文件处理" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "最大上传大小" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "最大允许: " -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "多文件和文件夹下载需要此项。" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "启用 ZIP 下载" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0 为无限制" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "ZIP 文件的最大输入大小" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "保存" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "新建" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "创建文本文件" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "文本文件" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "添加文件夹" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "文件夹" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "来自链接" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "已删除文件" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "取消上传" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "您没有权限来上传湖州哦和创建文件" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "这里还什么都没有。上传些东西吧!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "下载" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "删除" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "上传文件过大" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "您正尝试上传的文件超过了此服务器可以上传的最大容量限制" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "文件正在被扫描,请稍候。" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "当前扫描" diff --git a/l10n/zh_CN/files_external.po b/l10n/zh_CN/files_external.po index 3985276d633..83bdb930480 100644 --- a/l10n/zh_CN/files_external.po +++ b/l10n/zh_CN/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05: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_HK/files.po b/l10n/zh_HK/files.po index af3a338f965..f42c481a557 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -63,12 +63,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "" @@ -80,62 +80,62 @@ msgstr "" msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "" @@ -169,77 +169,77 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "分享" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 -msgid "Pending" +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" msgstr "" -#: js/filelist.js:456 -msgid "Could not rename file" -msgstr "" +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "錯誤" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" +#: js/filelist.js:267 js/filelist.js:1113 +msgid "Pending" msgstr "" -#: js/filelist.js:591 -msgid "undo" +#: js/filelist.js:630 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -275,29 +275,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "錯誤" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "名稱" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "" @@ -305,109 +297,109 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "上傳" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "儲存" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "下載" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "刪除" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index a83f1fff465..c2eeb6fc27e 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: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05:56+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" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "檔名不合法,不允許 \\ / < > : \" | ? * 字元" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -65,12 +65,12 @@ msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:119 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "下載 %s 到 %s 失敗" -#: ajax/newfile.php:156 +#: ajax/newfile.php:146 msgid "Error when creating the file" msgstr "建立檔案失敗" @@ -82,62 +82,62 @@ msgstr "資料夾名稱不能留空" msgid "Error when creating the folder" msgstr "建立資料夾失敗" -#: ajax/upload.php:19 ajax/upload.php:53 +#: ajax/upload.php:19 ajax/upload.php:57 msgid "Unable to set upload directory." msgstr "無法設定上傳目錄" -#: ajax/upload.php:29 +#: ajax/upload.php:33 msgid "Invalid Token" msgstr "無效的 token" -#: ajax/upload.php:71 +#: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" msgstr "沒有檔案被上傳,原因未知" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" msgstr "一切都順利,檔案上傳成功" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "上傳的檔案大小超過 php.ini 當中 upload_max_filesize 參數的設定:" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "上傳的檔案大小超過 HTML 表單中 MAX_FILE_SIZE 的限制" -#: ajax/upload.php:82 +#: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" msgstr "只有檔案的一部分被上傳" -#: ajax/upload.php:83 +#: ajax/upload.php:87 msgid "No file was uploaded" msgstr "沒有檔案被上傳" -#: ajax/upload.php:84 +#: ajax/upload.php:88 msgid "Missing a temporary folder" msgstr "找不到暫存資料夾" -#: ajax/upload.php:85 +#: ajax/upload.php:89 msgid "Failed to write to disk" msgstr "寫入硬碟失敗" -#: ajax/upload.php:103 +#: ajax/upload.php:107 msgid "Not enough storage available" msgstr "儲存空間不足" -#: ajax/upload.php:160 +#: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" msgstr "上傳失敗,找不到上傳的檔案" -#: ajax/upload.php:170 +#: ajax/upload.php:169 msgid "Upload failed. Could not get file info." msgstr "上傳失敗,無法取得檔案資訊" -#: ajax/upload.php:189 +#: ajax/upload.php:184 msgid "Invalid directory." msgstr "無效的資料夾" @@ -171,77 +171,77 @@ msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "檔案上傳中,離開此頁面將會取消上傳。" -#: js/file-upload.js:564 +#: js/file-upload.js:542 msgid "URL cannot be empty" msgstr "URL 不能留空" -#: js/file-upload.js:568 +#: js/file-upload.js:546 msgid "In the home folder 'Shared' is a reserved filename" msgstr "在家目錄中不能使用「共享」作為檔名" -#: js/file-upload.js:570 js/filelist.js:430 +#: js/file-upload.js:548 js/filelist.js:603 msgid "{new_name} already exists" msgstr "{new_name} 已經存在" -#: js/file-upload.js:636 +#: js/file-upload.js:600 msgid "Could not create file" msgstr "無法建立檔案" -#: js/file-upload.js:652 +#: js/file-upload.js:613 msgid "Could not create folder" msgstr "無法建立資料夾" -#: js/file-upload.js:702 +#: js/file-upload.js:653 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "分享" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "永久刪除" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "重新命名" -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "移動檔案失敗" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "錯誤" + +#: js/filelist.js:267 js/filelist.js:1113 msgid "Pending" msgstr "等候中" -#: js/filelist.js:456 +#: js/filelist.js:630 msgid "Could not rename file" msgstr "無法重新命名" -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "使用 {new_name} 取代 {old_name}" - -#: js/filelist.js:591 -msgid "undo" -msgstr "復原" - -#: js/filelist.js:662 +#: js/filelist.js:789 msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n 個資料夾" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n 個檔案" -#: js/filelist.js:695 +#: js/filelist.js:822 msgid "{dirs} and {files}" msgstr "{dirs} 和 {files}" -#: js/filelist.js:931 js/filelist.js:969 +#: js/filelist.js:1052 js/filelist.js:1090 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n 個檔案正在上傳" @@ -277,29 +277,21 @@ msgid "" "your personal settings to decrypt your files." msgstr "加密已經被停用,但是您的舊檔案還是處於已加密的狀態,請前往個人設定以解密這些檔案。" -#: js/files.js:379 +#: js/files.js:331 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "正在準備您的下載,若您的檔案較大,將會需要更多時間。" -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "移動檔案失敗" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "錯誤" - -#: js/files.js:672 templates/index.php:68 +#: js/files.js:570 templates/index.php:67 msgid "Name" msgstr "名稱" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:571 templates/index.php:79 msgid "Size" msgstr "大小" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:572 templates/index.php:81 msgid "Modified" msgstr "修改時間" @@ -307,109 +299,109 @@ msgstr "修改時間" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:111 +#: lib/app.php:93 #, php-format msgid "%s could not be renamed" msgstr "無法重新命名 %s" -#: lib/helper.php:14 templates/index.php:23 +#: lib/helper.php:14 templates/index.php:22 msgid "Upload" msgstr "上傳" -#: templates/admin.php:5 +#: templates/admin.php:4 msgid "File handling" msgstr "檔案處理" -#: templates/admin.php:7 +#: templates/admin.php:6 msgid "Maximum upload size" msgstr "上傳限制" -#: templates/admin.php:10 +#: templates/admin.php:9 msgid "max. possible: " msgstr "最大允許:" -#: templates/admin.php:15 +#: templates/admin.php:14 msgid "Needed for multi-file and folder downloads." msgstr "下載多檔案和目錄時,此項是必填的。" -#: templates/admin.php:17 +#: templates/admin.php:16 msgid "Enable ZIP-download" msgstr "啟用 ZIP 下載" -#: templates/admin.php:20 +#: templates/admin.php:19 msgid "0 is unlimited" msgstr "0代表沒有限制" -#: templates/admin.php:22 +#: templates/admin.php:21 msgid "Maximum input size for ZIP files" msgstr "ZIP 壓縮前的原始大小限制" -#: templates/admin.php:26 +#: templates/admin.php:25 msgid "Save" msgstr "儲存" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "新增" -#: templates/index.php:9 +#: templates/index.php:8 msgid "New text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:9 msgid "Text file" msgstr "文字檔" -#: templates/index.php:13 +#: templates/index.php:12 msgid "New folder" msgstr "新資料夾" -#: templates/index.php:14 +#: templates/index.php:13 msgid "Folder" msgstr "資料夾" -#: templates/index.php:17 +#: templates/index.php:16 msgid "From link" msgstr "從連結" -#: templates/index.php:41 +#: templates/index.php:40 msgid "Deleted files" msgstr "回收桶" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Cancel upload" msgstr "取消上傳" -#: templates/index.php:52 +#: templates/index.php:51 msgid "You don’t have permission to upload or create files here" msgstr "您沒有權限在這裡上傳或建立檔案" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "這裡還沒有東西,上傳一些吧!" -#: templates/index.php:74 +#: templates/index.php:73 msgid "Download" msgstr "下載" -#: templates/index.php:85 templates/index.php:86 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "刪除" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "上傳過大" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "您試圖上傳的檔案大小超過伺服器的限制。" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "正在掃描檔案,請稍等。" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "正在掃描" diff --git a/l10n/zh_TW/files_external.po b/l10n/zh_TW/files_external.po index 9f6752d6445..62c6dc87c98 100644 --- a/l10n/zh_TW/files_external.po +++ b/l10n/zh_TW/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-04 01:55-0400\n" +"PO-Revision-Date: 2014-04-04 05: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 ffbda893018..5af482b51a5 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -77,7 +77,7 @@ $TRANSLATIONS = array( "SSL" => "SSL", "TLS" => "TLS", "Security Warning" => "Sicherheitswarnung", -"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Du greifst auf %s via HTTP zu. Wir empfehlen Dir dringend, Deinen Server so konfigurieren, das stattdessen HTTPS verlangt wird.", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Du greifst auf %s via HTTP zu. Wir empfehlen Dir dringend, Deinen Server so konfigurieren, dass stattdessen HTTPS verlangt wird.", "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Dein Datenverzeichnis und deine Dateien sind möglicher Weise aus dem Internet erreichbar. Die .htaccess-Datei funktioniert nicht. Wir raten dir dringend, dass du deinen Webserver dahingehend konfigurierst, dass dein Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder du verschiebst das Datenverzeichnis außerhalb des Wurzelverzeichnisses des Webservers.", "Setup Warning" => "Einrichtungswarnung", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Dein Web-Server ist noch nicht für Datei-Synchronisation bereit, weil die WebDAV-Schnittstelle vermutlich defekt ist.", diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index 0b30cc0c191..f79a8f174b2 100644 --- a/settings/l10n/de_DE.php +++ b/settings/l10n/de_DE.php @@ -77,7 +77,7 @@ $TRANSLATIONS = array( "SSL" => "SSL", "TLS" => "TLS", "Security Warning" => "Sicherheitshinweis", -"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Sie greifen auf %s via HTTP zu. Wir empfehlen Ihnen dringend, Ihren Server so konfigurieren, das stattdessen HTTPS verlangt wird.", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Sie greifen auf %s via HTTP zu. Wir empfehlen Ihnen dringend, Ihren Server so konfigurieren, dass stattdessen HTTPS verlangt wird.", "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Ihr Datenverzeichnis und Ihre Dateien sind möglicherweise aus dem Internet erreichbar. Die .htaccess-Datei funktioniert nicht. Wir raten Ihnen dringend, dass Sie Ihren Webserver dahingehend konfigurieren, dass Ihr Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder Sie verschieben das Datenverzeichnis außerhalb des Wurzelverzeichnisses des Webservers.", "Setup Warning" => "Einrichtungswarnung", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfiguriert, weil die WebDAV-Schnittstelle vermutlich defekt ist.", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index ec6e3b3bd65..5139b36e1b4 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -35,7 +35,7 @@ $TRANSLATIONS = array( "Sending..." => "Enviando...", "User Documentation" => "Documentación de usuario", "Admin Documentation" => "Documentación para administradores", -"Update to {appversion}" => "Actualizado a {appversion}", +"Update to {appversion}" => "Actualizar a {appversion}", "Disable" => "Desactivar", "Enable" => "Activar", "Please wait...." => "Espere, por favor....", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index 10151a0a1e1..12fa6d097af 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -94,8 +94,8 @@ $TRANSLATIONS = array( "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Questo server ownCloud non ha una connessione a Internet funzionante. Ciò significa che alcune delle funzionalità come il montaggio di archivi esterni, le notifiche degli aggiornamenti o l'installazione di applicazioni di terze parti non funzioneranno. L'accesso remoto ai file e l'invio di email di notifica potrebbero non funzionare. Ti suggeriamo di abilitare la connessione a Internet del server se desideri disporre di tutte le funzionalità.", "Cron" => "Cron", "Last cron was executed at %s." => "L'ultimo cron è stato eseguito alle %s.", -"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "L'ultimo cron è stato eseguito alle %s. È più di un ora fa, qualcosa sembra sbagliato.", -"Cron was not executed yet!" => "Cron non è ancora stato eseguito!", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "L'ultimo cron è stato eseguito alle %s. È più di un'ora fa, potrebbe esserci qualche problema.", +"Cron was not executed yet!" => "Cron non è stato ancora eseguito!", "Execute one task with each page loaded" => "Esegui un'operazione con ogni pagina caricata", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php è registrato su un servizio webcron per invocare cron.php ogni 15 minuti su http.", "Use systems cron service to call the cron.php file every 15 minutes." => "Usa il servizio cron di sistema per invocare il file cron.php ogni 15 minuti.", diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index 414f46712e3..017d8a4235c 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -2,6 +2,7 @@ $TRANSLATIONS = array( "Invalid value supplied for %s" => "Navedena je napačna vrednost za %s", "Saved" => "Shranjeno", +"test email settings" => "preizkusi nastavitve elektronske pošte", "Email sent" => "Elektronska pošta je poslana", "Send mode" => "Način pošiljanja", "Encryption" => "Šifriranje", -- GitLab From 086eb71cfef60c17497efeb933c88459d16f8bc4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 4 Apr 2014 10:36:19 +0200 Subject: [PATCH 213/296] extending javascript line length to 120 adding xit to globals --- .jshintrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.jshintrc b/.jshintrc index 90cec5c5961..9faacfce1b9 100644 --- a/.jshintrc +++ b/.jshintrc @@ -11,13 +11,13 @@ "maxparams": 5, "curly": true, "jquery": true, - "maxlen": 80, + "maxlen": 120, "indent": 4, "browser": true, "globals": { "console": true, "it": true, - "itx": true, + "xit": true, "expect": true, "describe": true, "beforeEach": true, -- GitLab From a4eafca77f86ab2630bec698c3302c93daddb991 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Fri, 4 Apr 2014 11:32:07 +0200 Subject: [PATCH 214/296] Moved code to replace svg with png to OC.Util - Moved code that replaces the "svg" extension for the given file to core as OC.Util.replaceSVGIcon. - Added unit test for OC.Util.replaceSVGIcon - Moved "replaceSVG" to OC.Util.replaceSVG and deprecated the global "replaceSVG" function. - Added alias for SVGSupport() as OC.Util.hasSVGSupport() (for now) --- apps/files/js/breadcrumb.js | 5 +- apps/files/js/filelist.js | 26 +++----- apps/files/js/files.js | 2 +- core/js/js.js | 105 ++++++++++++++++++++++---------- core/js/tests/specs/coreSpec.js | 26 ++++++++ 5 files changed, 109 insertions(+), 55 deletions(-) diff --git a/apps/files/js/breadcrumb.js b/apps/files/js/breadcrumb.js index ff017a22bb5..5bc2fac1369 100644 --- a/apps/files/js/breadcrumb.js +++ b/apps/files/js/breadcrumb.js @@ -20,7 +20,6 @@ */ /* global OC */ -/* global SVGSupport, replaceSVG */ (function() { /** * Creates an breadcrumb element in the given container @@ -104,8 +103,8 @@ $crumb.addClass('last'); // in case svg is not supported by the browser we need to execute the fallback mechanism - if (!SVGSupport()) { - replaceSVG(); + if (!OC.Util.hasSVGSupport()) { + OC.Util.replaceSVG(this.$el); } // setup drag and drop diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 509929d0e55..506741eb6ea 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -9,7 +9,7 @@ */ /* global OC, t, n, FileList, FileActions, Files, BreadCrumb */ -/* global procesSelection, dragOptions, SVGSupport */ +/* global procesSelection, dragOptions */ window.FileList = { appName: t('files', 'Files'), isEmpty: true, @@ -159,22 +159,6 @@ window.FileList = { this.$fileList.trigger(jQuery.Event("updated")); }, - /** - * If SVG is not supported, replaces the given images's extension - * from ".svg" to ".png". - * If SVG is supported, return the image path as is. - * @param icon image path - * @return fixed image path - */ - _replaceSVG: function(icon) { - if (!SVGSupport()) { - var i = icon.lastIndexOf('.svg'); - if (i >= 0) { - icon = icon.substr(0, i) + '.png' + icon.substr(i+4); - } - } - return icon; - }, /** * Creates a new table row element using the given file data. * @param fileData map of file attributes @@ -183,7 +167,7 @@ window.FileList = { */ _createRow: function(fileData, options) { var td, simpleSize, basename, extension, sizeColor, - icon = FileList._replaceSVG(fileData.icon), + icon = OC.Util.replaceSVGIcon(fileData.icon), name = fileData.name, type = fileData.type || 'file', mtime = parseInt(fileData.mtime, 10) || new Date().getTime(), @@ -659,7 +643,11 @@ window.FileList = { }, null, null, result.data.etag); } else { - tr.find('td.filename').removeClass('preview').attr('style','background-image:url('+FileList._replaceSVG(fileInfo.icon)+')'); + tr.find('td.filename') + .removeClass('preview') + .attr('style','background-image:url(' + + OC.Util.replaceSVGIcon(fileInfo.icon) + + ')'); } } // reinsert row diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 4c2d87d808c..668faf723c8 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -635,7 +635,7 @@ Files.getMimeIcon = function(mime, ready) { ready(Files.getMimeIcon.cache[mime]); } else { $.get( OC.filePath('files','ajax','mimeicon.php'), {mime: mime}, function(path) { - if(SVGSupport()){ + if(OC.Util.hasSVGSupport()){ path = path.substr(0, path.length-4) + '.svg'; } Files.getMimeIcon.cache[mime]=path; diff --git a/core/js/js.js b/core/js/js.js index 9a3b2ee6a5d..1cbb9636dbe 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -498,7 +498,7 @@ var OC={ }); } if(!SVGSupport()) { - replaceSVG(); + OC.Util.replaceSVG(); } }).show(); }, 'html'); @@ -785,7 +785,7 @@ SVGSupport.checkMimeType=function(){ } }); if(headers["content-type"]!=='image/svg+xml'){ - replaceSVG(); + OC.Util.replaceSVG(); SVGSupport.checkMimeType.correct=false; } } @@ -793,35 +793,10 @@ SVGSupport.checkMimeType=function(){ }; SVGSupport.checkMimeType.correct=true; -//replace all svg images with png for browser compatibility -function replaceSVG(){ - $('img.svg').each(function(index,element){ - element=$(element); - var src=element.attr('src'); - element.attr('src',src.substr(0,src.length-3)+'png'); - }); - $('.svg').each(function(index,element){ - element=$(element); - var background=element.css('background-image'); - if(background){ - var i=background.lastIndexOf('.svg'); - if(i>=0){ - background=background.substr(0,i)+'.png'+background.substr(i+4); - element.css('background-image',background); - } - } - element.find('*').each(function(index,element) { - element=$(element); - var background=element.css('background-image'); - if(background){ - var i=background.lastIndexOf('.svg'); - if(i>=0){ - background=background.substr(0,i)+'.png'+background.substr(i+4); - element.css('background-image',background); - } - } - }); - }); +// replace all svg images with png for browser compatibility +// @deprecated use OC.Util.replaceSVG instead +function replaceSVG($el){ + return OC.Util.replaceSVG($el); } /** @@ -900,7 +875,7 @@ function initCore() { } if(!SVGSupport()){ //replace all svg images with png images for browser that dont support svg - replaceSVG(); + OC.Util.replaceSVG(); }else{ SVGSupport.checkMimeType(); } @@ -1134,6 +1109,72 @@ function relative_modified_date(timestamp) { else { return t('core','years ago'); } } +OC.Util = { + /** + * Returns whether the browser supports SVG + * + * @return true if the browser supports SVG, false otherwise + */ + // TODO: replace with original function + hasSVGSupport: SVGSupport, + /** + * If SVG is not supported, replaces the given icon's extension + * from ".svg" to ".png". + * If SVG is supported, return the image path as is. + * + * @param file image path with svg extension + * @return fixed image path with png extension if SVG is not + * supported + */ + replaceSVGIcon: function(file) { + if (!OC.Util.hasSVGSupport()) { + var i = file.lastIndexOf('.svg'); + if (i >= 0) { + file = file.substr(0, i) + '.png' + file.substr(i+4); + } + } + return file; + }, + /** + * Replace SVG images in all elements that have the "svg" class set + * with PNG images. + * + * @param $el root element from which to search, defaults to $('body') + */ + replaceSVG: function($el) { + if (!$el) { + $el = $('body'); + } + $el.find('img.svg').each(function(index,element){ + element=$(element); + var src=element.attr('src'); + element.attr('src',src.substr(0, src.length-3) + 'png'); + }); + $el.find('.svg').each(function(index,element){ + element = $(element); + var background = element.css('background-image'); + if (background){ + var i = background.lastIndexOf('.svg'); + if (i >= 0){ + background = background.substr(0,i) + '.png' + background.substr(i + 4); + element.css('background-image', background); + } + } + element.find('*').each(function(index, element) { + element = $(element); + var background = element.css('background-image'); + if (background) { + var i = background.lastIndexOf('.svg'); + if(i >= 0){ + background = background.substr(0,i) + '.png' + background.substr(i + 4); + element.css('background-image', background); + } + } + }); + }); + } +}; + /** * get a variable by name * @param string name diff --git a/core/js/tests/specs/coreSpec.js b/core/js/tests/specs/coreSpec.js index 94a397b7892..89056807788 100644 --- a/core/js/tests/specs/coreSpec.js +++ b/core/js/tests/specs/coreSpec.js @@ -448,5 +448,31 @@ describe('Core base tests', function() { expect($navigation.is(':visible')).toEqual(true); }); }); + describe('SVG extension replacement', function() { + var svgSupportStub; + + beforeEach(function() { + svgSupportStub = sinon.stub(OC.Util, 'hasSVGSupport'); + }); + afterEach(function() { + svgSupportStub.restore(); + }); + it('does not replace svg extension with png when SVG is supported', function() { + svgSupportStub.returns(true); + expect( + OC.Util.replaceSVGIcon('/path/to/myicon.svg?someargs=1') + ).toEqual( + '/path/to/myicon.svg?someargs=1' + ); + }); + it('replaces svg extension with png when SVG not supported', function() { + svgSupportStub.returns(false); + expect( + OC.Util.replaceSVGIcon('/path/to/myicon.svg?someargs=1') + ).toEqual( + '/path/to/myicon.png?someargs=1' + ); + }); + }); }); -- GitLab From f029312e5b20a540aa94f2ead4581a8b653b1c5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 4 Apr 2014 11:37:47 +0200 Subject: [PATCH 215/296] fixing typos/spellings --- lib/private/preview.php | 15 +++++++++++---- tests/lib/preview.php | 32 ++++++++++++++++---------------- 2 files changed, 27 insertions(+), 20 deletions(-) diff --git a/lib/private/preview.php b/lib/private/preview.php index 71c16687fb9..0fecb25341b 100755 --- a/lib/private/preview.php +++ b/lib/private/preview.php @@ -13,6 +13,8 @@ */ namespace OC; +use OC\Preview\Provider; + require_once 'preview/image.php'; require_once 'preview/movies.php'; require_once 'preview/mp3.php'; @@ -46,8 +48,9 @@ class Preview { // index is path, value is fileinfo static public $deleteFileMapper = array(); - //preview images object /** + * preview images object + * * @var \OC_Image */ private $preview; @@ -198,7 +201,7 @@ class Preview { } /** - * @brief set mimetype explicitely + * @brief set mimetype explicitly * @param string $mimetype */ public function setMimetype($mimetype) { @@ -361,6 +364,7 @@ class Preview { return false; } + /** * @brief get possible bigger thumbnails of the given image * @param int $fileId fileId of the original image @@ -396,6 +400,7 @@ class Preview { return $possibleThumbnails; } + private function getDimensionsFromFilename($name) { $size = explode('-', $name); $x = (int) $size[0]; @@ -403,6 +408,7 @@ class Preview { $aspectRatio = (float) ($x / $y); return array('x' => $x,'y' => $y,'aspectRatio' => $aspectRatio); } + private function unscalable($x, $y) { $maxX = $this->getMaxX(); @@ -422,6 +428,7 @@ class Preview { } return false; } + /** * @brief return a preview of a file * @return \OC_Image @@ -464,6 +471,7 @@ class Preview { \OC_Log::write('core', 'Generating preview for "' . $file . '" with "' . get_class($provider) . '"', \OC_Log::DEBUG); + /** @var $provider Provider */ $preview = $provider->getThumbnail($file, $maxX, $maxY, $scalingUp, $this->fileView); if (!($preview instanceof \OC_Image)) { @@ -507,7 +515,6 @@ class Preview { $this->getPreview(); } $this->preview->show('image/png'); - return; } /** @@ -516,7 +523,6 @@ class Preview { */ public function show() { $this->showPreview(); - return; } /** @@ -653,6 +659,7 @@ class Preview { $class = $provider['class']; $options = $provider['options']; + /** @var $object Provider */ $object = new $class($options); self::$providers[$object->getMimeType()] = $object; diff --git a/tests/lib/preview.php b/tests/lib/preview.php index 353b66fd6d6..fb1c959b45a 100644 --- a/tests/lib/preview.php +++ b/tests/lib/preview.php @@ -17,9 +17,9 @@ class Preview extends \PHPUnit_Framework_TestCase { $rootView->mkdir('/'.$user); $rootView->mkdir('/'.$user.'/files'); - $samplefile = '/'.$user.'/files/test.txt'; + $sampleFile = '/'.$user.'/files/test.txt'; - $rootView->file_put_contents($samplefile, 'dummy file data'); + $rootView->file_put_contents($sampleFile, 'dummy file data'); $x = 50; $y = 50; @@ -27,16 +27,16 @@ class Preview extends \PHPUnit_Framework_TestCase { $preview = new \OC\Preview($user, 'files/', 'test.txt', $x, $y); $preview->getPreview(); - $fileinfo = $rootView->getFileInfo($samplefile); - $fileid = $fileinfo['fileid']; + $fileInfo = $rootView->getFileInfo($sampleFile); + $fileId = $fileInfo['fileid']; - $thumbcachefile = '/' . $user . '/' . \OC\Preview::THUMBNAILS_FOLDER . '/' . $fileid . '/' . $x . '-' . $y . '.png'; + $thumbCacheFile = '/' . $user . '/' . \OC\Preview::THUMBNAILS_FOLDER . '/' . $fileId . '/' . $x . '-' . $y . '.png'; - $this->assertEquals($rootView->file_exists($thumbcachefile), true); + $this->assertEquals($rootView->file_exists($thumbCacheFile), true); $preview->deletePreview(); - $this->assertEquals($rootView->file_exists($thumbcachefile), false); + $this->assertEquals($rootView->file_exists($thumbCacheFile), false); } public function testAreAllPreviewsDeleted() { @@ -46,9 +46,9 @@ class Preview extends \PHPUnit_Framework_TestCase { $rootView->mkdir('/'.$user); $rootView->mkdir('/'.$user.'/files'); - $samplefile = '/'.$user.'/files/test.txt'; + $sampleFile = '/'.$user.'/files/test.txt'; - $rootView->file_put_contents($samplefile, 'dummy file data'); + $rootView->file_put_contents($sampleFile, 'dummy file data'); $x = 50; $y = 50; @@ -56,16 +56,16 @@ class Preview extends \PHPUnit_Framework_TestCase { $preview = new \OC\Preview($user, 'files/', 'test.txt', $x, $y); $preview->getPreview(); - $fileinfo = $rootView->getFileInfo($samplefile); - $fileid = $fileinfo['fileid']; + $fileInfo = $rootView->getFileInfo($sampleFile); + $fileId = $fileInfo['fileid']; - $thumbcachefolder = '/' . $user . '/' . \OC\Preview::THUMBNAILS_FOLDER . '/' . $fileid . '/'; + $thumbCacheFolder = '/' . $user . '/' . \OC\Preview::THUMBNAILS_FOLDER . '/' . $fileId . '/'; - $this->assertEquals($rootView->is_dir($thumbcachefolder), true); + $this->assertEquals($rootView->is_dir($thumbCacheFolder), true); $preview->deleteAllPreviews(); - $this->assertEquals($rootView->is_dir($thumbcachefolder), false); + $this->assertEquals($rootView->is_dir($thumbCacheFolder), false); } public function testIsMaxSizeWorking() { @@ -81,9 +81,9 @@ class Preview extends \PHPUnit_Framework_TestCase { $rootView->mkdir('/'.$user); $rootView->mkdir('/'.$user.'/files'); - $samplefile = '/'.$user.'/files/test.txt'; + $sampleFile = '/'.$user.'/files/test.txt'; - $rootView->file_put_contents($samplefile, 'dummy file data'); + $rootView->file_put_contents($sampleFile, 'dummy file data'); $preview = new \OC\Preview($user, 'files/', 'test.txt', 1000, 1000); $image = $preview->getPreview(); -- GitLab From 05a7bfed71a745091f87a2bfdc719c6b7665c22d Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Fri, 4 Apr 2014 11:44:11 +0200 Subject: [PATCH 216/296] Fix file picker to correctly show SVG file icons --- core/js/oc-dialogs.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/core/js/oc-dialogs.js b/core/js/oc-dialogs.js index 6fc8d4d3523..4888fc1eea5 100644 --- a/core/js/oc-dialogs.js +++ b/core/js/oc-dialogs.js @@ -557,7 +557,6 @@ var OCdialogs = { filename: entry.name, date: OC.mtime2date(Math.floor(entry.mtime / 1000)) }); - $li.find('img').attr('src', entry.icon); if (entry.isPreviewAvailable) { var urlSpec = { file: dir + '/' + entry.name @@ -565,10 +564,16 @@ var OCdialogs = { var previewUrl = OC.generateUrl('/core/preview.png?') + $.param(urlSpec); $li.find('img').attr('src', previewUrl); } + else { + $li.find('img').attr('src', OC.Util.replaceSVGIcon(entry.icon)); + } self.$filelist.append($li); }); self.$filelist.removeClass('loading'); + if (!OC.Util.hasSVGSupport()) { + OC.Util.replaceSVG(self.$filePicker.find('.dirtree')); + } }); }, /** -- GitLab From d4f9cc567af69a52e5ac43f700d970b6ea4b77d0 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Fri, 4 Apr 2014 11:52:15 +0200 Subject: [PATCH 217/296] Fix SVG close button of file picker --- core/js/oc-dialogs.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/core/js/oc-dialogs.js b/core/js/oc-dialogs.js index 4888fc1eea5..4772e10a8d2 100644 --- a/core/js/oc-dialogs.js +++ b/core/js/oc-dialogs.js @@ -19,6 +19,8 @@ * */ +/* global OC, t */ + /** * this class to ease the usage of jquery dialogs */ @@ -138,6 +140,9 @@ var OCdialogs = { self.$filePicker = null; } }); + if (!OC.Util.hasSVGSupport()) { + OC.Util.replaceSVG(self.$filePicker.parent()); + } }) .fail(function(status, error) { // If the method is called while navigating away -- GitLab From e76c246718fe013af7cd0994e0445eeecf14dee1 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 4 Apr 2014 15:02:08 +0200 Subject: [PATCH 218/296] Pass the correct root to the preview on post_write --- lib/private/preview.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/preview.php b/lib/private/preview.php index 0c1af3c9588..26016555a32 100755 --- a/lib/private/preview.php +++ b/lib/private/preview.php @@ -640,7 +640,7 @@ class Preview { } public static function post_write($args) { - self::post_delete($args); + self::post_delete($args, 'files/'); } public static function prepare_delete_files($args) { -- GitLab From b61ec7352bb526783bbbc1502feaf0b7be9bf23f Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 4 Apr 2014 15:10:07 +0200 Subject: [PATCH 219/296] dont scan not existing files in View->getFileInfo --- lib/private/files/view.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/private/files/view.php b/lib/private/files/view.php index 90b0da09c37..94be7114865 100644 --- a/lib/private/files/view.php +++ b/lib/private/files/view.php @@ -832,6 +832,9 @@ class View { $user = \OC_User::getUser(); if (!$cache->inCache($internalPath)) { + if (!$storage->file_exists($internalPath)) { + return false; + } $scanner = $storage->getScanner($internalPath); $scanner->scan($internalPath, Cache\Scanner::SCAN_SHALLOW); } else { -- GitLab From ccf1287fbf8baa083c7c043b0ed0df054ecaf9c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 4 Apr 2014 16:21:50 +0200 Subject: [PATCH 220/296] adding unit test for cache mechanism --- lib/private/preview.php | 98 ++++++++++++++--------------- tests/lib/preview.php | 136 ++++++++++++++++++++++++++++------------ 2 files changed, 145 insertions(+), 89 deletions(-) diff --git a/lib/private/preview.php b/lib/private/preview.php index 0fecb25341b..995cfc3f6dc 100755 --- a/lib/private/preview.php +++ b/lib/private/preview.php @@ -41,8 +41,8 @@ class Preview { private $file; private $maxX; private $maxY; - private $scalingup; - private $mimetype; + private $scalingUp; + private $mimeType; //filemapper used for deleting previews // index is path, value is fileinfo @@ -137,7 +137,7 @@ class Preview { * @return bool */ public function getScalingUp() { - return $this->scalingup; + return $this->scalingUp; } /** @@ -194,18 +194,18 @@ class Preview { if ($file !== '') { $this->getFileInfo(); if($this->info !== null && $this->info !== false) { - $this->mimetype = $this->info->getMimetype(); + $this->mimeType = $this->info->getMimetype(); } } return $this; } /** - * @brief set mimetype explicitly - * @param string $mimetype + * @brief set mime type explicitly + * @param string $mimeType */ - public function setMimetype($mimetype) { - $this->mimetype = $mimetype; + public function setMimetype($mimeType) { + $this->mimeType = $mimeType; } /** @@ -257,7 +257,7 @@ class Preview { if ($this->getMaxScaleFactor() === 1) { $scalingUp = false; } - $this->scalingup = $scalingUp; + $this->scalingUp = $scalingUp; return $this; } @@ -320,7 +320,7 @@ class Preview { * @param int $fileId fileId of the original image * @return string|false path to thumbnail if it exists or false */ - private function isCached($fileId) { + public function isCached($fileId) { if (is_null($fileId)) { return false; } @@ -406,7 +406,7 @@ class Preview { $x = (int) $size[0]; $y = (int) $size[1]; $aspectRatio = (float) ($x / $y); - return array('x' => $x,'y' => $y,'aspectRatio' => $aspectRatio); + return array($x, $y, $aspectRatio); } private function unscalable($x, $y) { @@ -464,8 +464,8 @@ class Preview { if (is_null($this->preview)) { $preview = null; - foreach (self::$providers as $supportedMimetype => $provider) { - if (!preg_match($supportedMimetype, $this->mimetype)) { + foreach (self::$providers as $supportedMimeType => $provider) { + if (!preg_match($supportedMimeType, $this->mimeType)) { continue; } @@ -534,7 +534,7 @@ class Preview { $x = $this->getMaxX(); $y = $this->getMaxY(); $scalingUp = $this->getScalingUp(); - $maxscalefactor = $this->getMaxScaleFactor(); + $maxScaleFactor = $this->getMaxScaleFactor(); if (!($image instanceof \OC_Image)) { \OC_Log::write('core', '$this->preview is not an instance of OC_Image', \OC_Log::DEBUG); @@ -543,16 +543,16 @@ class Preview { $image->fixOrientation(); - $realx = (int)$image->width(); - $realy = (int)$image->height(); + $realX = (int)$image->width(); + $realY = (int)$image->height(); - if ($x === $realx && $y === $realy) { + if ($x === $realX && $y === $realY) { $this->preview = $image; return; } - $factorX = $x / $realx; - $factorY = $y / $realy; + $factorX = $x / $realX; + $factorY = $y / $realY; if ($factorX >= $factorY) { $factor = $factorX; @@ -566,25 +566,25 @@ class Preview { } } - if (!is_null($maxscalefactor)) { - if ($factor > $maxscalefactor) { - \OC_Log::write('core', 'scalefactor reduced from ' . $factor . ' to ' . $maxscalefactor, \OC_Log::DEBUG); - $factor = $maxscalefactor; + if (!is_null($maxScaleFactor)) { + if ($factor > $maxScaleFactor) { + \OC_Log::write('core', 'scale factor reduced from ' . $factor . ' to ' . $maxScaleFactor, \OC_Log::DEBUG); + $factor = $maxScaleFactor; } } - $newXsize = (int)($realx * $factor); - $newYsize = (int)($realy * $factor); + $newXSize = (int)($realX * $factor); + $newYSize = (int)($realY * $factor); - $image->preciseResize($newXsize, $newYsize); + $image->preciseResize($newXSize, $newYSize); - if ($newXsize === $x && $newYsize === $y) { + if ($newXSize === $x && $newYSize === $y) { $this->preview = $image; return; } - if ($newXsize >= $x && $newYsize >= $y) { - $cropX = floor(abs($x - $newXsize) * 0.5); + if ($newXSize >= $x && $newYSize >= $y) { + $cropX = floor(abs($x - $newXSize) * 0.5); //don't crop previews on the Y axis, this sucks if it's a document. //$cropY = floor(abs($y - $newYsize) * 0.5); $cropY = 0; @@ -595,36 +595,36 @@ class Preview { return; } - if ($newXsize < $x || $newYsize < $y) { - if ($newXsize > $x) { - $cropX = floor(($newXsize - $x) * 0.5); - $image->crop($cropX, 0, $x, $newYsize); + if ($newXSize < $x || $newYSize < $y) { + if ($newXSize > $x) { + $cropX = floor(($newXSize - $x) * 0.5); + $image->crop($cropX, 0, $x, $newYSize); } - if ($newYsize > $y) { - $cropY = floor(($newYsize - $y) * 0.5); - $image->crop(0, $cropY, $newXsize, $y); + if ($newYSize > $y) { + $cropY = floor(($newYSize - $y) * 0.5); + $image->crop(0, $cropY, $newXSize, $y); } - $newXsize = (int)$image->width(); - $newYsize = (int)$image->height(); + $newXSize = (int)$image->width(); + $newYSize = (int)$image->height(); //create transparent background layer - $backgroundlayer = imagecreatetruecolor($x, $y); - $white = imagecolorallocate($backgroundlayer, 255, 255, 255); - imagefill($backgroundlayer, 0, 0, $white); + $backgroundLayer = imagecreatetruecolor($x, $y); + $white = imagecolorallocate($backgroundLayer, 255, 255, 255); + imagefill($backgroundLayer, 0, 0, $white); $image = $image->resource(); - $mergeX = floor(abs($x - $newXsize) * 0.5); - $mergeY = floor(abs($y - $newYsize) * 0.5); + $mergeX = floor(abs($x - $newXSize) * 0.5); + $mergeY = floor(abs($y - $newYSize) * 0.5); - imagecopy($backgroundlayer, $image, $mergeX, $mergeY, 0, 0, $newXsize, $newYsize); + imagecopy($backgroundLayer, $image, $mergeX, $mergeY, 0, 0, $newXSize, $newYSize); //$black = imagecolorallocate(0,0,0); //imagecolortransparent($transparentlayer, $black); - $image = new \OC_Image($backgroundlayer); + $image = new \OC_Image($backgroundLayer); $this->preview = $image; return; @@ -706,9 +706,9 @@ class Preview { } /** - * @param string $mimetype + * @param string $mimeType */ - public static function isMimeSupported($mimetype) { + public static function isMimeSupported($mimeType) { if (!\OC_Config::getValue('enable_previews', true)) { return false; } @@ -720,8 +720,8 @@ class Preview { //remove last element because it has the mimetype * $providers = array_slice(self::$providers, 0, -1); - foreach ($providers as $supportedMimetype => $provider) { - if (preg_match($supportedMimetype, $mimetype)) { + foreach ($providers as $supportedMimeType => $provider) { + if (preg_match($supportedMimeType, $mimeType)) { return true; } } diff --git a/tests/lib/preview.php b/tests/lib/preview.php index fb1c959b45a..4ef61fb8257 100644 --- a/tests/lib/preview.php +++ b/tests/lib/preview.php @@ -10,66 +10,73 @@ namespace Test; class Preview extends \PHPUnit_Framework_TestCase { - public function testIsPreviewDeleted() { - $user = $this->initFS(); + /** + * @var string + */ + private $user; - $rootView = new \OC\Files\View(''); - $rootView->mkdir('/'.$user); - $rootView->mkdir('/'.$user.'/files'); + /** + * @var \OC\Files\View + */ + private $rootView; - $sampleFile = '/'.$user.'/files/test.txt'; + public function setUp() { + $this->user = $this->initFS(); - $rootView->file_put_contents($sampleFile, 'dummy file data'); + $this->rootView = new \OC\Files\View(''); + $this->rootView->mkdir('/'.$this->user); + $this->rootView->mkdir('/'.$this->user.'/files'); + } + + public function testIsPreviewDeleted() { + + $sampleFile = '/'.$this->user.'/files/test.txt'; + + $this->rootView->file_put_contents($sampleFile, 'dummy file data'); $x = 50; $y = 50; - $preview = new \OC\Preview($user, 'files/', 'test.txt', $x, $y); + $preview = new \OC\Preview($this->user, 'files/', 'test.txt', $x, $y); $preview->getPreview(); - $fileInfo = $rootView->getFileInfo($sampleFile); + $fileInfo = $this->rootView->getFileInfo($sampleFile); $fileId = $fileInfo['fileid']; - $thumbCacheFile = '/' . $user . '/' . \OC\Preview::THUMBNAILS_FOLDER . '/' . $fileId . '/' . $x . '-' . $y . '.png'; + $thumbCacheFile = '/' . $this->user . '/' . \OC\Preview::THUMBNAILS_FOLDER . '/' . $fileId . '/' . $x . '-' . $y . '.png'; - $this->assertEquals($rootView->file_exists($thumbCacheFile), true); + $this->assertEquals($this->rootView->file_exists($thumbCacheFile), true); $preview->deletePreview(); - $this->assertEquals($rootView->file_exists($thumbCacheFile), false); + $this->assertEquals($this->rootView->file_exists($thumbCacheFile), false); } public function testAreAllPreviewsDeleted() { - $user = $this->initFS(); - - $rootView = new \OC\Files\View(''); - $rootView->mkdir('/'.$user); - $rootView->mkdir('/'.$user.'/files'); - $sampleFile = '/'.$user.'/files/test.txt'; + $sampleFile = '/'.$this->user.'/files/test.txt'; - $rootView->file_put_contents($sampleFile, 'dummy file data'); + $this->rootView->file_put_contents($sampleFile, 'dummy file data'); $x = 50; $y = 50; - $preview = new \OC\Preview($user, 'files/', 'test.txt', $x, $y); + $preview = new \OC\Preview($this->user, 'files/', 'test.txt', $x, $y); $preview->getPreview(); - $fileInfo = $rootView->getFileInfo($sampleFile); + $fileInfo = $this->rootView->getFileInfo($sampleFile); $fileId = $fileInfo['fileid']; - $thumbCacheFolder = '/' . $user . '/' . \OC\Preview::THUMBNAILS_FOLDER . '/' . $fileId . '/'; + $thumbCacheFolder = '/' . $this->user . '/' . \OC\Preview::THUMBNAILS_FOLDER . '/' . $fileId . '/'; - $this->assertEquals($rootView->is_dir($thumbCacheFolder), true); + $this->assertEquals($this->rootView->is_dir($thumbCacheFolder), true); $preview->deleteAllPreviews(); - $this->assertEquals($rootView->is_dir($thumbCacheFolder), false); + $this->assertEquals($this->rootView->is_dir($thumbCacheFolder), false); } public function testIsMaxSizeWorking() { - $user = $this->initFS(); $maxX = 250; $maxY = 250; @@ -77,15 +84,11 @@ class Preview extends \PHPUnit_Framework_TestCase { \OC_Config::setValue('preview_max_x', $maxX); \OC_Config::setValue('preview_max_y', $maxY); - $rootView = new \OC\Files\View(''); - $rootView->mkdir('/'.$user); - $rootView->mkdir('/'.$user.'/files'); + $sampleFile = '/'.$this->user.'/files/test.txt'; - $sampleFile = '/'.$user.'/files/test.txt'; + $this->rootView->file_put_contents($sampleFile, 'dummy file data'); - $rootView->file_put_contents($sampleFile, 'dummy file data'); - - $preview = new \OC\Preview($user, 'files/', 'test.txt', 1000, 1000); + $preview = new \OC\Preview($this->user, 'files/', 'test.txt', 1000, 1000); $image = $preview->getPreview(); $this->assertEquals($image->width(), $maxX); @@ -108,18 +111,13 @@ class Preview extends \PHPUnit_Framework_TestCase { * @dataProvider txtBlacklist */ public function testIsTransparent($extension, $data, $expectedResult) { - $user = $this->initFS(); - - $rootView = new \OC\Files\View(''); - $rootView->mkdir('/'.$user); - $rootView->mkdir('/'.$user.'/files'); $x = 32; $y = 32; - $sample = '/'.$user.'/files/test.'.$extension; - $rootView->file_put_contents($sample, $data); - $preview = new \OC\Preview($user, 'files/', 'test.'.$extension, $x, $y); + $sample = '/'.$this->user.'/files/test.'.$extension; + $this->rootView->file_put_contents($sample, $data); + $preview = new \OC\Preview($this->user, 'files/', 'test.'.$extension, $x, $y); $image = $preview->getPreview(); $resource = $image->resource(); @@ -133,6 +131,64 @@ class Preview extends \PHPUnit_Framework_TestCase { ); } + public function testCreationFromCached() { + + $sampleFile = '/'.$this->user.'/files/test.txt'; + + $this->rootView->file_put_contents($sampleFile, 'dummy file data'); + + // create base preview + $x = 150; + $y = 150; + + $preview = new \OC\Preview($this->user, 'files/', 'test.txt', $x, $y); + $preview->getPreview(); + + $fileInfo = $this->rootView->getFileInfo($sampleFile); + $fileId = $fileInfo['fileid']; + + $thumbCacheFile = '/' . $this->user . '/' . \OC\Preview::THUMBNAILS_FOLDER . '/' . $fileId . '/' . $x . '-' . $y . '.png'; + + $this->assertEquals($this->rootView->file_exists($thumbCacheFile), true); + + + // create smaller previews + $preview = new \OC\Preview($this->user, 'files/', 'test.txt', 50, 50); + $isCached = $preview->isCached($fileId); + + $this->assertEquals($this->user . '/' . \OC\Preview::THUMBNAILS_FOLDER . '/' . $fileId . '/150-150.png', $isCached); + } + + /* + public function testScalingUp() { + + $sampleFile = '/'.$this->user.'/files/test.txt'; + + $this->rootView->file_put_contents($sampleFile, 'dummy file data'); + + // create base preview + $x = 150; + $y = 150; + + $preview = new \OC\Preview($this->user, 'files/', 'test.txt', $x, $y); + $preview->getPreview(); + + $fileInfo = $this->rootView->getFileInfo($sampleFile); + $fileId = $fileInfo['fileid']; + + $thumbCacheFile = '/' . $this->user . '/' . \OC\Preview::THUMBNAILS_FOLDER . '/' . $fileId . '/' . $x . '-' . $y . '.png'; + + $this->assertEquals($this->rootView->file_exists($thumbCacheFile), true); + + + // create bigger previews - with scale up + $preview = new \OC\Preview($this->user, 'files/', 'test.txt', 250, 250); + $isCached = $preview->isCached($fileId); + + $this->assertEquals($this->user . '/' . \OC\Preview::THUMBNAILS_FOLDER . '/' . $fileId . '/150-150.png', $isCached); + } + */ + private function initFS() { // create a new user with his own filesystem view // this gets called by each test in this test class -- GitLab From 01d93f81f67f71189dc5e484c29c1f4918078fd8 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 4 Apr 2014 17:10:46 +0200 Subject: [PATCH 221/296] Show higher resolution previews for high dpi screens --- apps/files/js/files.js | 6 ++++-- core/js/compatibility.js | 4 ++++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 4c2d87d808c..ceb096f0941 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -663,6 +663,8 @@ Files.generatePreviewUrl = function(urlSpec) { if (!urlSpec.y) { urlSpec.y = $('#filestable').data('preview-y'); } + urlSpec.y *= window.devicePixelRatio; + urlSpec.x *= window.devicePixelRatio; urlSpec.forceIcon = 0; return OC.generateUrl('/core/preview.png?') + $.param(urlSpec); } @@ -670,7 +672,7 @@ Files.generatePreviewUrl = function(urlSpec) { Files.lazyLoadPreview = function(path, mime, ready, width, height, etag) { // get mime icon url Files.getMimeIcon(mime, function(iconURL) { - var previewURL; + var previewURL, urlSpec = {}; ready(iconURL); // set mimeicon URL @@ -696,7 +698,7 @@ Files.lazyLoadPreview = function(path, mime, ready, width, height, etag) { if (img.width > 5) { ready(previewURL); } - } + }; img.src = previewURL; }); }; diff --git a/core/js/compatibility.js b/core/js/compatibility.js index 6548f95d42b..c07288857f2 100644 --- a/core/js/compatibility.js +++ b/core/js/compatibility.js @@ -148,3 +148,7 @@ function outerHTML(node){ return h; })(node); } + +// devicePixelRatio for IE10 +window.devicePixelRatio = window.devicePixelRatio || + window.screen.deviceXDPI / window.screen.logicalXDPI || 1; -- GitLab From b2f8e3438884b3032791175be5a5526c0a1f89c8 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Fri, 4 Apr 2014 22:14:51 +0200 Subject: [PATCH 222/296] Remove uneeded file This file seems not to be actually used anywhere. --- settings/templates/oauth-required-apps.php | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 settings/templates/oauth-required-apps.php diff --git a/settings/templates/oauth-required-apps.php b/settings/templates/oauth-required-apps.php deleted file mode 100644 index 3660f423423..00000000000 --- a/settings/templates/oauth-required-apps.php +++ /dev/null @@ -1,19 +0,0 @@ - - * This file is licensed under the Affero General Public License version 3 or later. - * See the COPYING-README file. - */ -?> -
      -

      '.OC_Util::sanitizeHTML($_['message'])); ?>

      -
        - '.OC_Util::sanitizeHTML($requiredapp).''); - } - ?> -
      - Back to ownCloud -
      -- GitLab From 35ee1e902aea8b1db47e23270d72eb3734dc797a Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Fri, 4 Apr 2014 22:23:23 +0200 Subject: [PATCH 223/296] Replace echo with `p` or `print_unescaped` Using echo instead of `p` or `print_unescaped` is a bad style, to prevent people from copying it I've adjusted it. --- core/lostpassword/templates/resetpassword.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/core/lostpassword/templates/resetpassword.php b/core/lostpassword/templates/resetpassword.php index 0ab32acca60..881455f5a9d 100644 --- a/core/lostpassword/templates/resetpassword.php +++ b/core/lostpassword/templates/resetpassword.php @@ -1,14 +1,14 @@ -
      +
      -

      t('Your password was reset'); ?>

      -

      t('To login page'); ?>

      +

      t('Your password was reset')); ?>

      +

      t('To login page')); ?>

      - +

      - +
      -- GitLab From 1b55c312e5929499e09714dc8155065b03c7deaa Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Fri, 4 Apr 2014 22:27:05 +0200 Subject: [PATCH 224/296] Removed two unused functions These two functions were actually not usable and only a todo since ages. I think it's better to remove it than having dead and unmaintained code. --- lib/private/ocs/cloud.php | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/lib/private/ocs/cloud.php b/lib/private/ocs/cloud.php index 06d6a8eb4b0..c8bb9425f1a 100644 --- a/lib/private/ocs/cloud.php +++ b/lib/private/ocs/cloud.php @@ -99,31 +99,4 @@ class OC_OCS_Cloud { ); return new OC_OCS_Result($data); } - - public static function getUserPublickey($parameters) { - - if(OC_User::userExists($parameters['user'])) { - // calculate the disc space - // TODO - return new OC_OCS_Result(array()); - } else { - return new OC_OCS_Result(null, 300); - } - } - - public static function getUserPrivatekey($parameters) { - $user = OC_User::getUser(); - if(OC_User::isAdminUser($user) or ($user==$parameters['user'])) { - - if(OC_User::userExists($user)) { - // calculate the disc space - $txt = 'this is the private key of '.$parameters['user']; - echo($txt); - } else { - return new OC_OCS_Result(null, 300, 'User does not exist'); - } - } else { - return new OC_OCS_Result('null', 300, 'You don´t have permission to access this ressource.'); - } - } } -- GitLab From 33a2aa886538bd68ee6e0f35a8859acf6f861a53 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Fri, 4 Apr 2014 22:38:16 +0200 Subject: [PATCH 225/296] Delete oauth.css --- settings/css/oauth.css | 4 ---- 1 file changed, 4 deletions(-) delete mode 100644 settings/css/oauth.css diff --git a/settings/css/oauth.css b/settings/css/oauth.css deleted file mode 100644 index ccdb98cfa39..00000000000 --- a/settings/css/oauth.css +++ /dev/null @@ -1,4 +0,0 @@ -.guest-container{ width:35%; margin: 2em auto 0 auto; } -#oauth-request a.button{ float: right; } -#oauth-request ul li{ list-style: disc; } -#oauth-request ul { margin-left: 2em; margin-top: 1em; } -- GitLab From ce1b38290569ef26082389107b20e119334bcbaf Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Fri, 4 Apr 2014 22:38:26 +0200 Subject: [PATCH 226/296] Delete auth.css --- core/css/auth.css | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 core/css/auth.css diff --git a/core/css/auth.css b/core/css/auth.css deleted file mode 100644 index 70df9f0ae0f..00000000000 --- a/core/css/auth.css +++ /dev/null @@ -1,39 +0,0 @@ -h2 { - font-size:32px; - font-weight:700; - margin-bottom:16px; - white-space:nowrap; -} - -ul.scopes { - list-style:disc; -} - -ul.scopes li { - white-space:nowrap; -} - -h2 img { - width:50%; -} - -#oauth { - width:320px; - margin:64px auto 32px; -} - -#allow-auth { - background-color:#5c3; - box-shadow:0 1px 1px #fff, 0 1px 1px #5f3 inset; - color:#fff; - text-shadow:#5e3 0 1px 0; -} - -#deny-auth { - background:none; - border:0; - box-shadow:0 0 0 #fff, 0 0 0 #fff inset; - font-size:19px; - margin:11px; - padding:0; -} -- GitLab From 3c35e82a37de2e442b275ee8047b7507d2bd6cfd Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 4 Apr 2014 23:35:32 +0200 Subject: [PATCH 227/296] use high resolution avatars on highdpi screens --- core/js/jquery.avatar.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/js/jquery.avatar.js b/core/js/jquery.avatar.js index 381c42d9dbb..7c19cb321fe 100644 --- a/core/js/jquery.avatar.js +++ b/core/js/jquery.avatar.js @@ -77,7 +77,7 @@ var url = OC.generateUrl( '/avatar/{user}/{size}?requesttoken={requesttoken}', - {user: user, size: size, requesttoken: oc_requesttoken}); + {user: user, size: size * window.devicePixelRatio, requesttoken: oc_requesttoken}); $.get(url, function(result) { if (typeof(result) === 'object') { @@ -93,9 +93,9 @@ } else { $div.show(); if (ie8fix === true) { - $div.html(''); + $div.html(''); } else { - $div.html(''); + $div.html(''); } } if(typeof callback === 'function') { -- GitLab From 2124eaba9296ebd9c491d71a266407d6b31cbd30 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sat, 5 Apr 2014 01:56:08 -0400 Subject: [PATCH 228/296] [tx-robot] updated from transifex --- l10n/templates/core.pot | 2 +- 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 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 83b1d8f3aeb..73ba9af5711 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: 2014-04-04 01:55-0400\n" +"POT-Creation-Date: 2014-04-05 01:55-0400\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.pot b/l10n/templates/files.pot index ecaa7d3fb75..d886b45f281 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: 2014-04-04 01:55-0400\n" +"POT-Creation-Date: 2014-04-05 01:55-0400\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 535a51360ff..a0d7379ced5 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: 2014-04-04 01:55-0400\n" +"POT-Creation-Date: 2014-04-05 01:55-0400\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 311d698d046..7da098dc9b4 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: 2014-04-04 01:55-0400\n" +"POT-Creation-Date: 2014-04-05 01:55-0400\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 393ec651fb8..b1259541831 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: 2014-04-04 01:55-0400\n" +"POT-Creation-Date: 2014-04-05 01:55-0400\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 834d4cb14ce..7d32701ec65 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: 2014-04-04 01:55-0400\n" +"POT-Creation-Date: 2014-04-05 01:55-0400\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 c4e4dc6dc85..1580e94cd54 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: 2014-04-04 01:55-0400\n" +"POT-Creation-Date: 2014-04-05 01:55-0400\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 ffa34f094b4..328e080722d 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: 2014-04-04 01:55-0400\n" +"POT-Creation-Date: 2014-04-05 01:55-0400\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 3a473ed96a3..47c2ac04eaf 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: 2014-04-04 01:55-0400\n" +"POT-Creation-Date: 2014-04-05 01:55-0400\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 d053872e687..da74353ef11 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: 2014-04-04 01:55-0400\n" +"POT-Creation-Date: 2014-04-05 01:55-0400\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 df6b7027c45..adaf525a103 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: 2014-04-04 01:55-0400\n" +"POT-Creation-Date: 2014-04-05 01:55-0400\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 34b50a06562..6e980ca8fbc 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: 2014-04-04 01:55-0400\n" +"POT-Creation-Date: 2014-04-05 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" -- GitLab From 286323f7a41a783543a646e7f8c949bb9a402159 Mon Sep 17 00:00:00 2001 From: Volkan Gezer Date: Sat, 5 Apr 2014 19:28:53 +0200 Subject: [PATCH 229/296] Fix some localization issues with file encryption/decription strings --- apps/files/js/files.js | 6 +++--- settings/ajax/decryptall.php | 7 ++++--- settings/js/personal.js | 2 +- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/apps/files/js/files.js b/apps/files/js/files.js index ceb096f0941..206fa561251 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -131,15 +131,15 @@ var Files = { var encryptedFiles = $('#encryptedFiles').val(); var initStatus = $('#encryptionInitStatus').val(); if (initStatus === '0') { // enc not initialized, but should be - OC.Notification.show(t('files_encryption', 'Encryption App is enabled but your keys are not initialized, please log-out and log-in again')); + OC.Notification.show(t('files', 'Encryption App is enabled but your keys are not initialized, please log-out and log-in again')); return; } if (initStatus === '1') { // encryption tried to init but failed - OC.Notification.showHtml(t('files_encryption', 'Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.')); + OC.Notification.showHtml(t('files', 'Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.')); return; } if (encryptedFiles === '1') { - OC.Notification.show(t('files_encryption', 'Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files.')); + OC.Notification.show(t('files', 'Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files.')); return; } }, diff --git a/settings/ajax/decryptall.php b/settings/ajax/decryptall.php index 4782a4cfc81..d12df230d41 100644 --- a/settings/ajax/decryptall.php +++ b/settings/ajax/decryptall.php @@ -12,6 +12,7 @@ $params = array('uid' => \OCP\User::getUser(), $view = new OC_FilesystemView('/'); $util = new \OCA\Encryption\Util($view, \OCP\User::getUser()); +$l = \OC_L10N::get('settings'); $result = $util->initEncryption($params); @@ -27,11 +28,11 @@ if ($result !== false) { $util->closeEncryptionSession(); if ($successful === true) { - \OCP\JSON::success(array('data' => array('message' => 'Files decrypted successfully'))); + \OCP\JSON::success(array('data' => array('message' => $l->t('Files decrypted successfully')))); } else { - \OCP\JSON::error(array('data' => array('message' => 'Couldn\'t decrypt your files, please check your owncloud.log or ask your administrator'))); + \OCP\JSON::error(array('data' => array('message' => $l->t('Couldn\'t decrypt your files, please check your owncloud.log or ask your administrator')))); } } else { - \OCP\JSON::error(array('data' => array('message' => 'Couldn\'t decrypt your files, check your password and try again'))); + \OCP\JSON::error(array('data' => array('message' => $l->t('Couldn\'t decrypt your files, check your password and try again')))); } diff --git a/settings/js/personal.js b/settings/js/personal.js index f502037cfda..b659d1f1d39 100644 --- a/settings/js/personal.js +++ b/settings/js/personal.js @@ -313,7 +313,7 @@ OC.Encryption.msg={ startDecrypting:function(selector){ var spinner = ''; $(selector) - .html( t('files_encryption', 'Decrypting files... Please wait, this can take some time.') + ' ' + spinner ) + .html( t('settings', 'Decrypting files... Please wait, this can take some time.') + ' ' + spinner ) .removeClass('success') .removeClass('error') .stop(true, true) -- GitLab From ceb6666e738467118568410696c407231d1dd41c Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sun, 6 Apr 2014 00:16:14 +0200 Subject: [PATCH 230/296] Fix slideshow buttons being invisible --- core/css/styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/css/styles.css b/core/css/styles.css index f978eab7cac..57e2c4479a1 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -109,7 +109,7 @@ input[type="button"], margin: 3px 3px 3px 0; padding: 7px 6px 5px; font-size: 13px; - background: #fff; + background-color: #fff; color: #333; border: 1px solid #ddd; outline: none; -- GitLab From a9d49de46575308348194ce5617b065f896f8b89 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sun, 6 Apr 2014 01:56:11 -0400 Subject: [PATCH 231/296] [tx-robot] updated from transifex --- apps/files/l10n/sv.php | 8 +++++ apps/files/l10n/tr.php | 2 +- apps/files_encryption/l10n/sv.php | 2 ++ apps/files_external/l10n/ja.php | 1 + apps/files_external/l10n/tr.php | 4 +-- apps/user_ldap/l10n/sv.php | 5 +++ core/l10n/ja.php | 3 ++ core/l10n/tr.php | 4 +-- l10n/ja/core.po | 52 ++++++++++++++-------------- l10n/ja/files_external.po | 9 ++--- l10n/sv/files.po | 23 +++++++------ l10n/sv/files_encryption.po | 53 +++++++++++++++-------------- l10n/sv/user_ldap.po | 17 ++++----- l10n/templates/core.pot | 2 +- 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/tr/core.po | 34 +++++++++--------- l10n/tr/files.po | 8 ++--- l10n/tr/files_external.po | 8 ++--- l10n/tr/lib.po | 10 +++--- lib/l10n/tr.php | 2 +- 30 files changed, 146 insertions(+), 123 deletions(-) diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php index 314a053cd35..f420216228c 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -3,9 +3,12 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Kunde inte flytta %s - Det finns redan en fil med detta namn", "Could not move %s" => "Kan inte flytta %s", "File name cannot be empty." => "Filnamn kan inte vara tomt.", +"\"%s\" is an invalid file name." => "\"%s\" är ett ogiltigt filnamn.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ogiltigt namn, '\\', '/', '<', '>', ':', '\"', '|', '?' och '*' är inte tillåtet.", +"The target folder has been moved or deleted." => "Målmappen har flyttats eller tagits bort.", "The name %s is already used in the folder %s. Please choose a different name." => "Namnet %s används redan i katalogen %s. Välj ett annat namn.", "Not a valid source" => "Inte en giltig källa", +"Server is not allowed to open URLs, please check the server configuration" => "Servern är inte tillåten att öppna URL:er, vänligen kontrollera server konfigurationen", "Error while downloading %s to %s" => "Fel under nerladdning från %s till %s", "Error when creating the file" => "Fel under skapande utav filen", "Folder name cannot be empty." => "Katalognamn kan ej vara tomt.", @@ -26,6 +29,8 @@ $TRANSLATIONS = array( "Invalid directory." => "Felaktig mapp.", "Files" => "Filer", "Unable to upload {filename} as it is a directory or has 0 bytes" => "Kan inte ladda upp {filename} eftersom den antingen är en mapp eller har 0 bytes.", +"Total file size {size1} exceeds upload limit {size2}" => "Totala filstorleken {size1} överskrider uppladdningsgränsen {size2}", +"Not enough free space, you are uploading {size1} but only {size2} is left" => "Inte tillräckligt med ledigt utrymme, du laddar upp {size1} men endast {size2} finns kvar.", "Upload cancelled." => "Uppladdning avbruten.", "Could not get result from server." => "Gick inte att hämta resultat från server.", "File upload is in progress. Leaving the page now will cancel the upload." => "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen.", @@ -34,6 +39,7 @@ $TRANSLATIONS = array( "{new_name} already exists" => "{new_name} finns redan", "Could not create file" => "Kunde ej skapa fil", "Could not create folder" => "Kunde ej skapa katalog", +"Error fetching URL" => "Fel vid hämtning av URL", "Share" => "Dela", "Delete permanently" => "Radera permanent", "Rename" => "Byt namn", @@ -46,6 +52,7 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array("%n fil","%n filer"), "{dirs} and {files}" => "{dirs} och {files}", "_Uploading %n file_::_Uploading %n files_" => array("Laddar upp %n fil","Laddar upp %n filer"), +"\"{name}\" is an invalid file name." => "\"{name}\" är ett ogiltligt filnamn.", "Your storage is full, files can not be updated or synced anymore!" => "Ditt lagringsutrymme är fullt, filer kan inte längre uppdateras eller synkroniseras!", "Your storage is almost full ({usedSpacePercent}%)" => "Ditt lagringsutrymme är nästan fullt ({usedSpacePercent}%)", "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Krypteringsprogrammet är aktiverat men dina nycklar är inte initierade. Vänligen logga ut och in igen", @@ -67,6 +74,7 @@ $TRANSLATIONS = array( "Maximum input size for ZIP files" => "Största tillåtna storlek för ZIP-filer", "Save" => "Spara", "New" => "Ny", +"New text file" => "Ny textfil", "Text file" => "Textfil", "New folder" => "Ny mapp", "Folder" => "Mapp", diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index d1eb4bff59c..87c664cc171 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -62,7 +62,7 @@ $TRANSLATIONS = array( "Name" => "İsim", "Size" => "Boyut", "Modified" => "Değiştirilme", -"Invalid folder name. Usage of 'Shared' is reserved." => "Geçersiz dizin adı. 'Shared' ismi ayrılmıştır.", +"Invalid folder name. Usage of 'Shared' is reserved." => "Geçersiz klasör adı. 'Shared' ismi ayrılmıştır.", "%s could not be renamed" => "%s yeniden adlandırılamadı", "Upload" => "Yükle", "File handling" => "Dosya işlemleri", diff --git a/apps/files_encryption/l10n/sv.php b/apps/files_encryption/l10n/sv.php index 90a9bd73a6f..b17740f2541 100644 --- a/apps/files_encryption/l10n/sv.php +++ b/apps/files_encryption/l10n/sv.php @@ -15,6 +15,8 @@ $TRANSLATIONS = array( "Missing requirements." => "Krav som saknas", "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." => "Kontrollera att PHP 5.3.3 eller senare är installerad och att tillägget OpenSSL PHP är aktiverad och korrekt konfigurerad. Kryptering är tillsvidare inaktiverad.", "Following users are not set up for encryption:" => "Följande användare har inte aktiverat kryptering:", +"Initial encryption started... This can take some time. Please wait." => "Initiala krypteringen har påbörjats... Detta kan ta lite tid. Var god vänta.", +"Initial encryption running... Please try again later." => "Initiala krypteringen körs... Var god försök igen senare.", "Go directly to your " => "Gå direkt till din", "personal settings" => "personliga inställningar", "Encryption" => "Kryptering", diff --git a/apps/files_external/l10n/ja.php b/apps/files_external/l10n/ja.php index e2d252d22a9..41deb100e57 100644 --- a/apps/files_external/l10n/ja.php +++ b/apps/files_external/l10n/ja.php @@ -15,6 +15,7 @@ $TRANSLATIONS = array( "Configuration" => "設定", "Options" => "オプション", "Add storage" => "ストレージを追加", +"No user or group" => "ユーザーもしくはグループがありません", "All Users" => "すべてのユーザー", "Groups" => "グループ", "Users" => "ユーザー", diff --git a/apps/files_external/l10n/tr.php b/apps/files_external/l10n/tr.php index e9e5556a9f3..426f652e3a6 100644 --- a/apps/files_external/l10n/tr.php +++ b/apps/files_external/l10n/tr.php @@ -8,9 +8,9 @@ $TRANSLATIONS = array( "Saved" => "Kaydedildi", "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Uyarı: \"smbclient\" kurulu değil. CIFS/SMB paylaşımlarını bağlama işlemi mümkün olmadı. Lütfen kurulumu için sistem yöneticinize danışın.", "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." => "Uyarı: PHP içerisinde FTP desteği etkin veya yüklü değil. FTP paylaşımlarını bağlama işlemi mümkün olmadı. Lütfen kurulumu için sistem yöneticinize danışın.", -"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Uyarı: PHP içerisinde Curl desteği etkin veya yüklü değil. OwnCloud / WebDAV veya GoogleDrive bağlama işlemi mümkün olmadı. Lütfen kurulumu için sistem yöneticinizde danışın.", +"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Uyarı: PHP içerisinde Curl desteği etkin veya yüklü değil. ownCloud / WebDAV veya GoogleDrive bağlama işlemi mümkün olmadı. Lütfen kurulumu için sistem yöneticinizde danışın.", "External Storage" => "Harici Depolama", -"Folder name" => "Dizin ismi", +"Folder name" => "Klasör ismi", "External storage" => "Harici depolama", "Configuration" => "Yapılandırma", "Options" => "Seçenekler", diff --git a/apps/user_ldap/l10n/sv.php b/apps/user_ldap/l10n/sv.php index 0108cfcb0e4..fa844b799c2 100644 --- a/apps/user_ldap/l10n/sv.php +++ b/apps/user_ldap/l10n/sv.php @@ -33,12 +33,14 @@ $TRANSLATIONS = array( "Save" => "Spara", "Test Configuration" => "Testa konfigurationen", "Help" => "Hjälp", +"Groups meeting these criteria are available in %s:" => "Grupper som uppfyller dessa kriterier finns i %s:", "only those object classes:" => "Endast de objekt-klasserna:", "only from those groups:" => "endast ifrån de här grupperna:", "Edit raw filter instead" => "Redigera rått filter istället", "Raw LDAP filter" => "Rått LDAP-filter", "The filter specifies which LDAP groups shall have access to the %s instance." => "Filtret specifierar vilka LDAD-grupper som ska ha åtkomst till %s instans", "groups found" => "grupper hittade", +"Users login with this attribute:" => "Användare loggar in med detta attribut:", "LDAP Username:" => "LDAP användarnamn:", "LDAP Email Address:" => "LDAP e-postadress:", "Other Attributes:" => "Övriga attribut:", @@ -53,6 +55,7 @@ $TRANSLATIONS = array( "For anonymous access, leave DN and Password empty." => "För anonym åtkomst, lämna DN och lösenord tomt.", "One Base DN per line" => "Ett Start DN per rad", "You can specify Base DN for users and groups in the Advanced tab" => "Du kan ange start DN för användare och grupper under fliken Avancerat", +"Limit %s access to users meeting these criteria:" => "Begränsa %s tillgång till användare som uppfyller dessa kriterier:", "The filter specifies which LDAP users shall have access to the %s instance." => "Filtret specifierar vilka LDAP-användare som skall ha åtkomst till %s instans", "users found" => "användare funna", "Back" => "Tillbaka", @@ -85,6 +88,8 @@ $TRANSLATIONS = array( "One Group Base DN per line" => "En Grupp start DN per rad", "Group Search Attributes" => "Gruppsökningsattribut", "Group-Member association" => "Attribut för gruppmedlemmar", +"Nested Groups" => "Undergrupper", +"When switched on, groups that contain groups are supported. (Only works if the group member attribute contains DNs.)" => "När den är påslagen, stöds grupper som innehåller grupper. (Fungerar endast om gruppmedlemmens attribut innehåller DNs.)", "Special Attributes" => "Specialattribut", "Quota Field" => "Kvotfält", "Quota Default" => "Datakvot standard", diff --git a/core/l10n/ja.php b/core/l10n/ja.php index eb3e6882578..5f8d6a05ae9 100644 --- a/core/l10n/ja.php +++ b/core/l10n/ja.php @@ -1,5 +1,6 @@ "有効期限が切れています。", "Couldn't send mail to following users: %s " => "次のユーザーにメールを送信できませんでした: %s", "Turned on maintenance mode" => "メンテナンスモードがオンになりました", "Turned off maintenance mode" => "メンテナンスモードがオフになりました", @@ -121,6 +122,8 @@ $TRANSLATIONS = array( "To login page" => "ログインページへ戻る", "New password" => "新しいパスワードを入力", "Reset password" => "パスワードをリセット", +"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Mac OS X では、サポートされていません。このOSでは、%sは正常に動作しないかもしれません。ご自身の責任においてご利用ください。", +"For the best results, please consider using a GNU/Linux server instead." => "最も良い方法としては、代わりにGNU/Linuxサーバーを利用することをご検討ください。", "Personal" => "個人", "Users" => "ユーザー", "Apps" => "アプリ", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index cb9a98a8faa..9d211bd0570 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -31,7 +31,7 @@ $TRANSLATIONS = array( "December" => "Aralık", "Settings" => "Ayarlar", "Saving..." => "Kaydediliyor...", -"seconds ago" => "saniye önce", +"seconds ago" => "saniyeler önce", "_%n minute ago_::_%n minutes ago_" => array("%n dakika önce","%n dakika önce"), "_%n hour ago_::_%n hours ago_" => array("%n saat önce","%n saat önce"), "today" => "bugün", @@ -51,7 +51,7 @@ $TRANSLATIONS = array( "_{count} file conflict_::_{count} file conflicts_" => array("{count} dosya çakışması","{count} dosya çakışması"), "One file conflict" => "Bir dosya çakışması", "Which files do you want to keep?" => "Hangi dosyaları saklamak istiyorsunuz?", -"If you select both versions, the copied file will have a number added to its name." => "Eğer iki sürümü de seçerseniz, kopyalanan dosya ismine eklenmiş bir sayı içerecektir.", +"If you select both versions, the copied file will have a number added to its name." => "İki sürümü de seçerseniz, kopyalanan dosyanın ismine bir sayı ilave edilecektir.", "Cancel" => "İptal", "Continue" => "Devam et", "(all selected)" => "(tümü seçildi)", diff --git a/l10n/ja/core.po b/l10n/ja/core.po index 38765160007..da079b0afbe 100644 --- a/l10n/ja/core.po +++ b/l10n/ja/core.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-06 01:55-0400\n" +"PO-Revision-Date: 2014-04-05 09:40+0000\n" +"Last-Translator: tt yn \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" @@ -23,24 +23,24 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." -msgstr "" +msgstr "有効期限が切れています。" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "次のユーザーにメールを送信できませんでした: %s" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "メンテナンスモードがオンになりました" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "メンテナンスモードがオフになりました" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "データベース更新完了" @@ -140,59 +140,59 @@ msgstr "11月" msgid "December" msgstr "12月" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "設定" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "保存中..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "数秒前" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n 分前" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n 時間前" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "今日" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "昨日" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n日前" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "1ヶ月前" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%nヶ月前" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "数ヶ月前" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "1年前" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "数年前" @@ -534,17 +534,17 @@ msgstr "新しいパスワードを入力" msgid "Reset password" msgstr "パスワードをリセット" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " -msgstr "" +msgstr "Mac OS X では、サポートされていません。このOSでは、%sは正常に動作しないかもしれません。ご自身の責任においてご利用ください。" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." -msgstr "" +msgstr "最も良い方法としては、代わりにGNU/Linuxサーバーを利用することをご検討ください。" #: strings.php:5 msgid "Personal" diff --git a/l10n/ja/files_external.po b/l10n/ja/files_external.po index 937aeede4d7..4c071d8bff5 100644 --- a/l10n/ja/files_external.po +++ b/l10n/ja/files_external.po @@ -5,13 +5,14 @@ # Translators: # plazmism , 2014 # kuromabo , 2014 +# tt yn , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-06 01:55-0400\n" +"PO-Revision-Date: 2014-04-05 09:50+0000\n" +"Last-Translator: tt yn \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" @@ -93,7 +94,7 @@ msgstr "ストレージを追加" #: templates/settings.php:92 msgid "No user or group" -msgstr "" +msgstr "ユーザーもしくはグループがありません" #: templates/settings.php:95 msgid "All Users" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 59e566d5dec..bb8d42d051a 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# AsavarTzeth , 2014 # DanielMalmgren , 2013 # Daniel Sandman , 2013 # Gunnar Norin , 2013 @@ -15,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-06 01:55-0400\n" +"PO-Revision-Date: 2014-04-05 18:40+0000\n" +"Last-Translator: AsavarTzeth \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -42,7 +43,7 @@ msgstr "Filnamn kan inte vara tomt." #: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." -msgstr "" +msgstr "\"%s\" är ett ogiltigt filnamn." #: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" @@ -53,7 +54,7 @@ msgstr "Ogiltigt namn, '\\', '/', '<', '>', ':', '\"', '|', '?' och '*' är inte #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." -msgstr "" +msgstr "Målmappen har flyttats eller tagits bort." #: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format @@ -69,7 +70,7 @@ msgstr "Inte en giltig källa" #: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" -msgstr "" +msgstr "Servern är inte tillåten att öppna URL:er, vänligen kontrollera server konfigurationen" #: ajax/newfile.php:118 #, php-format @@ -157,12 +158,12 @@ msgstr "Kan inte ladda upp {filename} eftersom den antingen är en mapp eller ha #: js/file-upload.js:258 msgid "Total file size {size1} exceeds upload limit {size2}" -msgstr "" +msgstr "Totala filstorleken {size1} överskrider uppladdningsgränsen {size2}" #: js/file-upload.js:268 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" -msgstr "" +msgstr "Inte tillräckligt med ledigt utrymme, du laddar upp {size1} men endast {size2} finns kvar." #: js/file-upload.js:340 msgid "Upload cancelled." @@ -199,7 +200,7 @@ msgstr "Kunde ej skapa katalog" #: js/file-upload.js:653 msgid "Error fetching URL" -msgstr "" +msgstr "Fel vid hämtning av URL" #: js/fileactions.js:164 msgid "Share" @@ -257,7 +258,7 @@ msgstr[1] "Laddar upp %n filer" #: js/files.js:96 msgid "\"{name}\" is an invalid file name." -msgstr "" +msgstr "\"{name}\" är ett ogiltligt filnamn." #: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" @@ -355,7 +356,7 @@ msgstr "Ny" #: templates/index.php:8 msgid "New text file" -msgstr "" +msgstr "Ny textfil" #: templates/index.php:9 msgid "Text file" diff --git a/l10n/sv/files_encryption.po b/l10n/sv/files_encryption.po index ef12db2aaf3..eb0ddaf5935 100644 --- a/l10n/sv/files_encryption.po +++ b/l10n/sv/files_encryption.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# AsavarTzeth , 2014 # Daniel Sandman , 2013 # Gustav Smedberg , 2013 # medialabs, 2013 @@ -14,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-06 01:55-0400\n" +"PO-Revision-Date: 2014-04-05 18:30+0000\n" +"Last-Translator: AsavarTzeth \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -104,11 +105,11 @@ msgstr "Följande användare har inte aktiverat kryptering:" #: js/detect-migration.js:21 msgid "Initial encryption started... This can take some time. Please wait." -msgstr "" +msgstr "Initiala krypteringen har påbörjats... Detta kan ta lite tid. Var god vänta." #: js/detect-migration.js:25 msgid "Initial encryption running... Please try again later." -msgstr "" +msgstr "Initiala krypteringen körs... Var god försök igen senare." #: templates/invalid_private_key.php:8 msgid "Go directly to your " @@ -118,91 +119,91 @@ msgstr "Gå direkt till din" msgid "personal settings" msgstr "personliga inställningar" -#: templates/settings-admin.php:4 templates/settings-personal.php:3 +#: templates/settings-admin.php:2 templates/settings-personal.php:2 msgid "Encryption" msgstr "Kryptering" -#: templates/settings-admin.php:7 +#: templates/settings-admin.php:5 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Aktivera återställningsnyckel (för att kunna återfå användarens filer vid glömt eller förlorat lösenord):" -#: templates/settings-admin.php:11 +#: templates/settings-admin.php:9 msgid "Recovery key password" msgstr "Lösenord för återställningsnyckel" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:12 msgid "Repeat Recovery key password" msgstr "Upprepa återställningsnyckelns lösenord" -#: templates/settings-admin.php:21 templates/settings-personal.php:51 +#: templates/settings-admin.php:19 templates/settings-personal.php:50 msgid "Enabled" msgstr "Aktiverad" -#: templates/settings-admin.php:29 templates/settings-personal.php:59 +#: templates/settings-admin.php:27 templates/settings-personal.php:58 msgid "Disabled" msgstr "Inaktiverad" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:32 msgid "Change recovery key password:" msgstr "Ändra lösenord för återställningsnyckel:" -#: templates/settings-admin.php:40 +#: templates/settings-admin.php:38 msgid "Old Recovery key password" msgstr "Gammalt lösenord för återställningsnyckel" -#: templates/settings-admin.php:47 +#: templates/settings-admin.php:45 msgid "New Recovery key password" msgstr "Nytt lösenord för återställningsnyckel" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:51 msgid "Repeat New Recovery key password" msgstr "Upprepa lösenord för ny återställningsnyckel" -#: templates/settings-admin.php:58 +#: templates/settings-admin.php:56 msgid "Change Password" msgstr "Byt lösenord" -#: templates/settings-personal.php:9 +#: templates/settings-personal.php:8 msgid "Your private key password no longer match your log-in password:" msgstr "Lösenordet till din privata nyckel stämmer inte längre överens med ditt inloggningslösenord:" -#: templates/settings-personal.php:12 +#: templates/settings-personal.php:11 msgid "Set your old private key password to your current log-in password." msgstr "Använd din gamla privata nyckels lösenord som ditt aktuella inloggningslösenord." -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:13 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "Om du inte kommer ihåg ditt gamla lösenord kan du be din administratör att återställa dina filer." -#: templates/settings-personal.php:22 +#: templates/settings-personal.php:21 msgid "Old log-in password" msgstr "Gammalt inloggningslösenord" -#: templates/settings-personal.php:28 +#: templates/settings-personal.php:27 msgid "Current log-in password" msgstr "Nuvarande inloggningslösenord" -#: templates/settings-personal.php:33 +#: templates/settings-personal.php:32 msgid "Update Private Key Password" msgstr "Uppdatera lösenordet för din privata nyckel" -#: templates/settings-personal.php:42 +#: templates/settings-personal.php:41 msgid "Enable password recovery:" msgstr "Aktivera lösenordsåterställning" -#: templates/settings-personal.php:44 +#: templates/settings-personal.php:43 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "Genom att aktivera detta alternativ kommer du kunna återfå tillgång till dina krypterade filer om du skulle förlora/glömma ditt lösenord" -#: templates/settings-personal.php:60 +#: templates/settings-personal.php:59 msgid "File recovery settings updated" msgstr "Inställningarna för filåterställning har uppdaterats" -#: templates/settings-personal.php:61 +#: templates/settings-personal.php:60 msgid "Could not update file recovery" msgstr "Kunde inte uppdatera filåterställning" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index 1b9e5d7a427..82b52acf7de 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# AsavarTzeth , 2014 # DanielMalmgren , 2013 # Gustav Smedberg , 2013 # Jan Busk, 2013 @@ -15,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-06 01:55-0400\n" +"PO-Revision-Date: 2014-04-05 21:00+0000\n" +"Last-Translator: AsavarTzeth \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -171,7 +172,7 @@ msgstr "Hjälp" #: templates/part.wizard-groupfilter.php:4 #, php-format msgid "Groups meeting these criteria are available in %s:" -msgstr "" +msgstr "Grupper som uppfyller dessa kriterier finns i %s:" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 @@ -207,7 +208,7 @@ msgstr "grupper hittade" #: templates/part.wizard-loginfilter.php:4 msgid "Users login with this attribute:" -msgstr "" +msgstr "Användare loggar in med detta attribut:" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" @@ -275,7 +276,7 @@ msgstr "Du kan ange start DN för användare och grupper under fliken Avancerat" #: templates/part.wizard-userfilter.php:4 #, php-format msgid "Limit %s access to users meeting these criteria:" -msgstr "" +msgstr "Begränsa %s tillgång till användare som uppfyller dessa kriterier:" #: templates/part.wizard-userfilter.php:31 #, php-format @@ -419,13 +420,13 @@ msgstr "Attribut för gruppmedlemmar" #: templates/settings.php:39 msgid "Nested Groups" -msgstr "" +msgstr "Undergrupper" #: templates/settings.php:39 msgid "" "When switched on, groups that contain groups are supported. (Only works if " "the group member attribute contains DNs.)" -msgstr "" +msgstr "När den är påslagen, stöds grupper som innehåller grupper. (Fungerar endast om gruppmedlemmens attribut innehåller DNs.)" #: templates/settings.php:41 msgid "Special Attributes" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 73ba9af5711..e397522432d 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: 2014-04-05 01:55-0400\n" +"POT-Creation-Date: 2014-04-06 01:55-0400\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.pot b/l10n/templates/files.pot index d886b45f281..bde7c871d24 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: 2014-04-05 01:55-0400\n" +"POT-Creation-Date: 2014-04-06 01:55-0400\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 a0d7379ced5..d4eff40b75e 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: 2014-04-05 01:55-0400\n" +"POT-Creation-Date: 2014-04-06 01:55-0400\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 7da098dc9b4..6c600c62e4a 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: 2014-04-05 01:55-0400\n" +"POT-Creation-Date: 2014-04-06 01:55-0400\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 b1259541831..d8f0b9897e5 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: 2014-04-05 01:55-0400\n" +"POT-Creation-Date: 2014-04-06 01:55-0400\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 7d32701ec65..5f8cdde491f 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: 2014-04-05 01:55-0400\n" +"POT-Creation-Date: 2014-04-06 01:55-0400\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 1580e94cd54..8a287d91d9e 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: 2014-04-05 01:55-0400\n" +"POT-Creation-Date: 2014-04-06 01:55-0400\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 328e080722d..df11086bc7d 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: 2014-04-05 01:55-0400\n" +"POT-Creation-Date: 2014-04-06 01:55-0400\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 47c2ac04eaf..6a5dace8d90 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: 2014-04-05 01:55-0400\n" +"POT-Creation-Date: 2014-04-06 01:55-0400\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 da74353ef11..d7c6e044a23 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: 2014-04-05 01:55-0400\n" +"POT-Creation-Date: 2014-04-06 01:55-0400\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 adaf525a103..a2a0f85851f 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: 2014-04-05 01:55-0400\n" +"POT-Creation-Date: 2014-04-06 01:55-0400\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 6e980ca8fbc..f1653c13c41 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: 2014-04-05 01:55-0400\n" +"POT-Creation-Date: 2014-04-06 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 3257ce60c17..9853fc1dab8 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-03 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 13:00+0000\n" +"POT-Creation-Date: 2014-04-06 01:55-0400\n" +"PO-Revision-Date: 2014-04-06 00:10+0000\n" "Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -138,63 +138,63 @@ msgstr "Kasım" msgid "December" msgstr "Aralık" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Ayarlar" -#: js/js.js:543 +#: js/js.js:564 msgid "Saving..." msgstr "Kaydediliyor..." -#: js/js.js:1103 +#: js/js.js:1124 msgid "seconds ago" -msgstr "saniye önce" +msgstr "saniyeler önce" -#: js/js.js:1104 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n dakika önce" msgstr[1] "%n dakika önce" -#: js/js.js:1105 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n saat önce" msgstr[1] "%n saat önce" -#: js/js.js:1106 +#: js/js.js:1127 msgid "today" msgstr "bugün" -#: js/js.js:1107 +#: js/js.js:1128 msgid "yesterday" msgstr "dün" -#: js/js.js:1108 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n gün önce" msgstr[1] "%n gün önce" -#: js/js.js:1109 +#: js/js.js:1130 msgid "last month" msgstr "geçen ay" -#: js/js.js:1110 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n ay önce" msgstr[1] "%n ay önce" -#: js/js.js:1111 +#: js/js.js:1132 msgid "months ago" msgstr "ay önce" -#: js/js.js:1112 +#: js/js.js:1133 msgid "last year" msgstr "geçen yıl" -#: js/js.js:1113 +#: js/js.js:1134 msgid "years ago" msgstr "yıl önce" @@ -240,7 +240,7 @@ msgstr "Hangi dosyaları saklamak istiyorsunuz?" msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "Eğer iki sürümü de seçerseniz, kopyalanan dosya ismine eklenmiş bir sayı içerecektir." +msgstr "İki sürümü de seçerseniz, kopyalanan dosyanın ismine bir sayı ilave edilecektir." #: js/oc-dialogs.js:376 msgid "Cancel" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index c457d0acab9..18b271aa1a2 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-06 01:55-0400\n" +"PO-Revision-Date: 2014-04-05 14: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -302,7 +302,7 @@ msgstr "Değiştirilme" #: lib/app.php:60 msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Geçersiz dizin adı. 'Shared' ismi ayrılmıştır." +msgstr "Geçersiz klasör adı. 'Shared' ismi ayrılmıştır." #: lib/app.php:93 #, php-format diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index 42d161b5c54..c7bb36b8d81 100644 --- a/l10n/tr/files_external.po +++ b/l10n/tr/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" +"POT-Creation-Date: 2014-04-06 01:55-0400\n" +"PO-Revision-Date: 2014-04-05 14: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" @@ -60,7 +60,7 @@ msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "Uyarı: PHP içerisinde Curl desteği etkin veya yüklü değil. OwnCloud / WebDAV veya GoogleDrive bağlama işlemi mümkün olmadı. Lütfen kurulumu için sistem yöneticinizde danışın." +msgstr "Uyarı: PHP içerisinde Curl desteği etkin veya yüklü değil. ownCloud / WebDAV veya GoogleDrive bağlama işlemi mümkün olmadı. Lütfen kurulumu için sistem yöneticinizde danışın." #: templates/settings.php:2 msgid "External Storage" @@ -68,7 +68,7 @@ msgstr "Harici Depolama" #: templates/settings.php:8 templates/settings.php:27 msgid "Folder name" -msgstr "Dizin ismi" +msgstr "Klasör ismi" #: templates/settings.php:9 msgid "External storage" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index 1f4e0197e54..95bb4b68b5b 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-01 19:31+0000\n" +"POT-Creation-Date: 2014-04-06 01:55-0400\n" +"PO-Revision-Date: 2014-04-06 00:10+0000\n" "Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -282,8 +282,8 @@ msgstr "Web sunucunuz dosya aktarımı için düzgün bir şekilde yapılandır msgid "Please double check the installation guides." msgstr "Lütfen kurulum kılavuzlarını iki kez kontrol edin." -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "%s sizinle »%s« paylaşımında bulundu" @@ -295,7 +295,7 @@ msgstr "\"%s\" kategorisi bulunamadı" #: private/template/functions.php:133 msgid "seconds ago" -msgstr "saniye önce" +msgstr "saniyeler önce" #: private/template/functions.php:134 msgid "%n minute ago" diff --git a/lib/l10n/tr.php b/lib/l10n/tr.php index 0473c2232d4..80f1ade9950 100644 --- a/lib/l10n/tr.php +++ b/lib/l10n/tr.php @@ -57,7 +57,7 @@ $TRANSLATIONS = array( "Please double check the installation guides." => "Lütfen kurulum kılavuzlarını iki kez kontrol edin.", "%s shared »%s« with you" => "%s sizinle »%s« paylaşımında bulundu", "Could not find category \"%s\"" => "\"%s\" kategorisi bulunamadı", -"seconds ago" => "saniye önce", +"seconds ago" => "saniyeler önce", "_%n minute ago_::_%n minutes ago_" => array("","%n dakika önce"), "_%n hour ago_::_%n hours ago_" => array("","%n saat önce"), "today" => "bugün", -- GitLab From 7f553ee26c3327040c3d87912c0302ea80832a9b Mon Sep 17 00:00:00 2001 From: Volkan Gezer Date: Sun, 6 Apr 2014 13:58:06 +0200 Subject: [PATCH 232/296] Update README.md Change version. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3f76c1a4773..bb11039f759 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Git master: [![Build Status](https://ci.owncloud.org/job/server-master-linux/bad Quality: [![Scrutinizer Quality Score](https://scrutinizer-ci.com/g/owncloud/core/badges/quality-score.png?s=ce2f5ded03d4ac628e9ee5c767243fa7412e644f)](https://scrutinizer-ci.com/g/owncloud/core/) ### Installation instructions -http://doc.owncloud.org/server/5.0/developer_manual/app/gettingstarted.html +http://doc.owncloud.org/server/6.0/developer_manual/app/gettingstarted.html ### Contribution Guidelines http://owncloud.org/dev/contribute/ -- GitLab From 9043fdd772e1b3427356d2d9cd591a9b251c9b05 Mon Sep 17 00:00:00 2001 From: Volkan Gezer Date: Sun, 6 Apr 2014 13:58:44 +0200 Subject: [PATCH 233/296] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bb11039f759..3f76c1a4773 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Git master: [![Build Status](https://ci.owncloud.org/job/server-master-linux/bad Quality: [![Scrutinizer Quality Score](https://scrutinizer-ci.com/g/owncloud/core/badges/quality-score.png?s=ce2f5ded03d4ac628e9ee5c767243fa7412e644f)](https://scrutinizer-ci.com/g/owncloud/core/) ### Installation instructions -http://doc.owncloud.org/server/6.0/developer_manual/app/gettingstarted.html +http://doc.owncloud.org/server/5.0/developer_manual/app/gettingstarted.html ### Contribution Guidelines http://owncloud.org/dev/contribute/ -- GitLab From d962f18e3f82ac1e65a67cee1054c02aafb7a388 Mon Sep 17 00:00:00 2001 From: Volkan Gezer Date: Sun, 6 Apr 2014 14:01:02 +0200 Subject: [PATCH 234/296] Update README.md Update to the correct link (version 6.0) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3f76c1a4773..032a7e987f2 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Git master: [![Build Status](https://ci.owncloud.org/job/server-master-linux/bad Quality: [![Scrutinizer Quality Score](https://scrutinizer-ci.com/g/owncloud/core/badges/quality-score.png?s=ce2f5ded03d4ac628e9ee5c767243fa7412e644f)](https://scrutinizer-ci.com/g/owncloud/core/) ### Installation instructions -http://doc.owncloud.org/server/5.0/developer_manual/app/gettingstarted.html +http://doc.owncloud.org/server/6.0/developer_manual/app/index.html ### Contribution Guidelines http://owncloud.org/dev/contribute/ -- GitLab From 593977f016e2edbd4e27293f3f5ed39f7c58f10e Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sun, 6 Apr 2014 14:49:39 +0200 Subject: [PATCH 235/296] Re-enable the sabredav browser plugin --- apps/files/appinfo/remote.php | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/files/appinfo/remote.php b/apps/files/appinfo/remote.php index a8acfdb6e6e..c70db0b5ae4 100644 --- a/apps/files/appinfo/remote.php +++ b/apps/files/appinfo/remote.php @@ -41,6 +41,7 @@ $server->setBaseUri($baseuri); $defaults = new OC_Defaults(); $server->addPlugin(new Sabre_DAV_Auth_Plugin($authBackend, $defaults->getName())); $server->addPlugin(new Sabre_DAV_Locks_Plugin($lockBackend)); +$server->addPlugin(new Sabre_DAV_Browser_Plugin(false)); $server->addPlugin(new OC_Connector_Sabre_FilesPlugin()); $server->addPlugin(new OC_Connector_Sabre_AbortedUploadDetectionPlugin()); $server->addPlugin(new OC_Connector_Sabre_QuotaPlugin()); -- GitLab From 5679f5c37e38635c2f981774e1decad9d4e486c8 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Sun, 6 Apr 2014 22:04:14 +0200 Subject: [PATCH 236/296] Remove wrong whitespace from URL and use HTTPS The whitespace caused the generated links to begin with a whitespace (e.g. ``) Additionally I switched the link to HTTPS. --- lib/private/defaults.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/defaults.php b/lib/private/defaults.php index 79be211b82f..b9925cf2f92 100644 --- a/lib/private/defaults.php +++ b/lib/private/defaults.php @@ -30,7 +30,7 @@ class OC_Defaults { $this->defaultName = "ownCloud"; /* short name, used when referring to the software */ $this->defaultTitle = "ownCloud"; /* can be a longer name, for titles */ $this->defaultBaseUrl = "http://owncloud.org"; - $this->defaultSyncClientUrl = " http://owncloud.org/sync-clients/"; + $this->defaultSyncClientUrl = "https://owncloud.org/sync-clients/"; $this->defaultDocBaseUrl = "http://doc.owncloud.org"; $this->defaultSlogan = $this->l->t("web services under your control"); $this->defaultLogoClaim = ""; -- GitLab From 6babf90175f624f04606a59c58a4c51040cc18f5 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Sun, 6 Apr 2014 22:06:38 +0200 Subject: [PATCH 237/296] Switch to HTTPS --- lib/private/defaults.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/defaults.php b/lib/private/defaults.php index b9925cf2f92..fca798568c5 100644 --- a/lib/private/defaults.php +++ b/lib/private/defaults.php @@ -29,7 +29,7 @@ class OC_Defaults { $this->defaultEntity = "ownCloud"; /* e.g. company name, used for footers and copyright notices */ $this->defaultName = "ownCloud"; /* short name, used when referring to the software */ $this->defaultTitle = "ownCloud"; /* can be a longer name, for titles */ - $this->defaultBaseUrl = "http://owncloud.org"; + $this->defaultBaseUrl = "https://owncloud.org"; $this->defaultSyncClientUrl = "https://owncloud.org/sync-clients/"; $this->defaultDocBaseUrl = "http://doc.owncloud.org"; $this->defaultSlogan = $this->l->t("web services under your control"); -- GitLab From e295d48fd43e0aab8fe4120d1b4a302edab343b2 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Mon, 7 Apr 2014 01:56:11 -0400 Subject: [PATCH 238/296] [tx-robot] updated from transifex --- apps/files_external/l10n/fr.php | 2 + apps/files_external/l10n/nb_NO.php | 1 + apps/files_external/l10n/sv.php | 4 + apps/files_sharing/l10n/sv.php | 2 + core/l10n/fr.php | 3 + core/l10n/nb_NO.php | 5 + core/l10n/sv.php | 15 +++ l10n/fr/core.po | 52 ++++---- l10n/fr/files_external.po | 10 +- l10n/fr/settings.po | 96 +++++++------- l10n/nb_NO/core.po | 57 ++++----- l10n/nb_NO/files_external.po | 6 +- l10n/nb_NO/settings.po | 116 ++++++++--------- l10n/sv/core.po | 77 ++++++------ l10n/sv/files_external.po | 15 +-- l10n/sv/files_sharing.po | 13 +- l10n/sv/lib.po | 55 ++++---- l10n/sv/settings.po | 187 ++++++++++++++-------------- l10n/templates/core.pot | 2 +- 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 +- lib/l10n/sv.php | 6 + settings/l10n/fr.php | 3 + settings/l10n/nb_NO.php | 13 ++ settings/l10n/sv.php | 48 +++++++ 34 files changed, 459 insertions(+), 351 deletions(-) diff --git a/apps/files_external/l10n/fr.php b/apps/files_external/l10n/fr.php index d9e2dbfcaed..1a306113f4d 100644 --- a/apps/files_external/l10n/fr.php +++ b/apps/files_external/l10n/fr.php @@ -14,7 +14,9 @@ $TRANSLATIONS = array( "External storage" => "Stockage externe", "Configuration" => "Configuration", "Options" => "Options", +"Available for" => "Disponible pour", "Add storage" => "Ajouter un support de stockage", +"No user or group" => "Aucun utilisateur ou groupe", "All Users" => "Tous les utilisateurs", "Groups" => "Groupes", "Users" => "Utilisateurs", diff --git a/apps/files_external/l10n/nb_NO.php b/apps/files_external/l10n/nb_NO.php index 3426e5589db..d8149520ea7 100644 --- a/apps/files_external/l10n/nb_NO.php +++ b/apps/files_external/l10n/nb_NO.php @@ -5,6 +5,7 @@ $TRANSLATIONS = array( "Grant access" => "Gi tilgang", "Please provide a valid Dropbox app key and secret." => "Vær vennlig å oppgi gyldig Dropbox appnøkkel og hemmelighet.", "Error configuring Google Drive storage" => "Feil med konfigurering av Google Drive", +"Saved" => "Lagret", "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Advarsel: \"smbclient\" er ikke installert. Kan ikke montere CIFS/SMB mapper. Ta kontakt med din systemadministrator for å installere det.", "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." => "Advarsel: FTP støtte i PHP er ikke slått på eller innstallert. Kan ikke montere FTP mapper. Ta kontakt med din systemadministrator for å innstallere det.", "Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Advarsel: Curl støtte i PHP er ikke aktivert eller innstallert. Kan ikke montere owncloud/WebDAV eller Googledrive. Ta kontakt med din systemadministrator for å innstallerer det.", diff --git a/apps/files_external/l10n/sv.php b/apps/files_external/l10n/sv.php index 0a50fd2cc7d..e2a4a0a8063 100644 --- a/apps/files_external/l10n/sv.php +++ b/apps/files_external/l10n/sv.php @@ -5,6 +5,7 @@ $TRANSLATIONS = array( "Grant access" => "Bevilja åtkomst", "Please provide a valid Dropbox app key and secret." => "Ange en giltig Dropbox nyckel och hemlighet.", "Error configuring Google Drive storage" => "Fel vid konfigurering av Google Drive", +"Saved" => "Sparad", "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Varning: \"smb-klienten\" är inte installerad. Montering av CIFS/SMB delningar är inte möjligt. Kontakta din systemadministratör för att få den installerad.", "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." => "Varning: Stöd för FTP i PHP är inte aktiverat eller installerat. Montering av FTP-delningar är inte möjligt. Kontakta din systemadministratör för att få det installerat.", "Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Varning: Curl-stöd i PHP är inte aktiverat eller installerat. Montering av ownCloud / WebDAV eller GoogleDrive är inte möjligt. Vänligen be din administratör att installera det.", @@ -13,12 +14,15 @@ $TRANSLATIONS = array( "External storage" => "Extern lagring", "Configuration" => "Konfiguration", "Options" => "Alternativ", +"Available for" => "Tillgänglig för", "Add storage" => "Lägg till lagring", +"No user or group" => "Ingen användare eller grupp", "All Users" => "Alla användare", "Groups" => "Grupper", "Users" => "Användare", "Delete" => "Radera", "Enable User External Storage" => "Aktivera extern lagring för användare", +"Allow users to mount the following external storage" => "Tillåt användare att montera följande extern lagring", "SSL root certificates" => "SSL rotcertifikat", "Import Root Certificate" => "Importera rotcertifikat" ); diff --git a/apps/files_sharing/l10n/sv.php b/apps/files_sharing/l10n/sv.php index 2d037f9186e..94b7edf6977 100644 --- a/apps/files_sharing/l10n/sv.php +++ b/apps/files_sharing/l10n/sv.php @@ -10,6 +10,8 @@ $TRANSLATIONS = array( "the link expired" => "giltighet för länken har gått ut", "sharing is disabled" => "delning är inaktiverat", "For more info, please ask the person who sent this link." => "För mer information, kontakta den person som skickade den här länken.", +"shared by %s" => "delad av %s", +"Download %s" => "Ladda ner %s", "Direct link" => "Direkt länk" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/fr.php b/core/l10n/fr.php index 3754e8c9e07..f5a1ecd42fb 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -1,5 +1,6 @@ "La date d'expiration est dans le passé.", "Couldn't send mail to following users: %s " => "Impossible d'envoyer un mail aux utilisateurs suivant : %s", "Turned on maintenance mode" => "Basculé en mode maintenance", "Turned off maintenance mode" => "Basculé en mode production (non maintenance)", @@ -121,6 +122,8 @@ $TRANSLATIONS = array( "To login page" => "Retour à la page d'authentification", "New password" => "Nouveau mot de passe", "Reset password" => "Réinitialiser le mot de passe", +"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Mac OS X n'est pas supporté et %s ne fonctionnera pas correctement sur cette plateforme. Son utilisation est à vos risques et périls !", +"For the best results, please consider using a GNU/Linux server instead." => "Pour des résultats meilleurs encore, pensez à utiliser un serveur GNU/Linux à la place.", "Personal" => "Personnel", "Users" => "Utilisateurs", "Apps" => "Applications", diff --git a/core/l10n/nb_NO.php b/core/l10n/nb_NO.php index 43141bc431f..c47599f5a17 100644 --- a/core/l10n/nb_NO.php +++ b/core/l10n/nb_NO.php @@ -56,6 +56,10 @@ $TRANSLATIONS = array( "(all selected)" => "(alle valgt)", "({count} selected)" => "({count} valgt)", "Error loading file exists template" => "Feil ved lasting av \"filen eksisterer\"-mal", +"Very weak password" => "Veldig svakt passord", +"Weak password" => "Svakt passord", +"Good password" => "Bra passord", +"Strong password" => "Sterkt passord", "Shared" => "Delt", "Share" => "Del", "Error" => "Feil", @@ -140,6 +144,7 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Datamappen og filene dine er sannsynligvis tilgjengelig fra Internett fordi .htaccess-filen ikke fungerer.", "For information how to properly configure your server, please see the documentation." => "For informasjon om hvordan du setter opp serveren din riktig, se dokumentasjonen.", "Create an admin account" => "opprett en administrator-konto", +"Storage & database" => "Lagring og database", "Data folder" => "Datamappe", "Configure the database" => "Konfigurer databasen", "will be used" => "vil bli brukt", diff --git a/core/l10n/sv.php b/core/l10n/sv.php index c4e92e62171..7e72039df80 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -1,5 +1,6 @@ "Utgångsdatumet är i det förflutna.", "Couldn't send mail to following users: %s " => "Gick inte att skicka e-post till följande användare: %s", "Turned on maintenance mode" => "Aktiverade underhållsläge", "Turned off maintenance mode" => "Deaktiverade underhållsläge", @@ -56,6 +57,11 @@ $TRANSLATIONS = array( "(all selected)" => "(Alla valda)", "({count} selected)" => "({count} valda)", "Error loading file exists template" => "Fel uppstod filmall existerar", +"Very weak password" => "Väldigt svagt lösenord", +"Weak password" => "Svagt lösenord", +"So-so password" => "Okej lösenord", +"Good password" => "Bra lösenord", +"Strong password" => "Starkt lösenord", "Shared" => "Delad", "Share" => "Dela", "Error" => "Fel", @@ -99,9 +105,11 @@ $TRANSLATIONS = array( "Edit tags" => "Editera taggar", "Error loading dialog template: {error}" => "Fel under laddning utav dialog mall: {fel}", "No tags selected for deletion." => "Inga taggar valda för borttagning.", +"Please reload the page." => "Vänligen ladda om sidan.", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Uppdateringen misslyckades. Rapportera detta problem till ownCloud Community.", "The update was successful. Redirecting you to ownCloud now." => "Uppdateringen lyckades. Du omdirigeras nu till OwnCloud.", "%s password reset" => "%s återställ lösenord", +"A problem has occurred whilst sending the email, please contact your administrator." => "Ett problem har uppstått under tiden e-post sändes, vänligen kontakta din administratör.", "Use the following link to reset your password: {link}" => "Använd följande länk för att återställa lösenordet: {link}", "The link to reset your password has been sent to your email.
      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 ." => "Länken för att återställa ditt lösenorden har skickats till din e-postadress
      Om du inte har erhållit meddelandet inom kort, vänligen kontrollera din skräppost-mapp
      Om den inte finns där, vänligen kontakta din administratör.", "Request failed!
      Did you make sure your email/username was right?" => "Begäran misslyckades!
      Är du helt säker på att din e-postadress/användarnamn är korrekt?", @@ -114,6 +122,8 @@ $TRANSLATIONS = array( "To login page" => "Till logginsidan", "New password" => "Nytt lösenord", "Reset password" => "Återställ lösenordet", +"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Mac OS X stöds inte och %s kommer inte att fungera korrekt på denna plattform. Använd på egen risk!", +"For the best results, please consider using a GNU/Linux server instead." => "För bästa resultat, överväg att använda en GNU/Linux server istället.", "Personal" => "Personligt", "Users" => "Användare", "Apps" => "Program", @@ -139,6 +149,7 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Din datakatalog och filer är förmodligen tillgängliga från Internet, eftersom .htaccess-filen inte fungerar.", "For information how to properly configure your server, please see the documentation." => "För information hur du korrekt konfigurerar din servern, se ownCloud dokumentationen.", "Create an admin account" => "Skapa ett administratörskonto", +"Storage & database" => "Lagring & databas", "Data folder" => "Datamapp", "Configure the database" => "Konfigurera databasen", "will be used" => "kommer att användas", @@ -149,6 +160,7 @@ $TRANSLATIONS = array( "Database host" => "Databasserver", "Finish setup" => "Avsluta installation", "Finishing …" => "Avslutar ...", +"This application requires JavaScript to be enabled for correct operation. Please enable JavaScript and re-load this interface." => "Denna applikation kräver JavaScript aktiverat för att fungera korrekt. Vänligen aktivera JavaScript och ladda om gränssnittet.", "%s is available. Get more information on how to update." => "%s är tillgänglig. Få mer information om hur du går tillväga för att uppdatera.", "Log out" => "Logga ut", "Automatic logon rejected!" => "Automatisk inloggning inte tillåten!", @@ -160,6 +172,9 @@ $TRANSLATIONS = array( "remember" => "kom ihåg", "Log in" => "Logga in", "Alternative Logins" => "Alternativa inloggningar", +"Hey there,

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

      " => "Hej där,

      ville bara informera dig om att %s delade %s med dig.
      Visa den!

      ", +"This ownCloud instance is currently in single user mode." => "Denna ownCloud instans är för närvarande i enanvändarläge", +"This means only administrators can use the instance." => "Detta betyder att endast administartörer kan använda instansen.", "Contact your system administrator if this message persists or appeared unexpectedly." => "Hör av dig till din system administratör ifall detta meddelande fortsätter eller visas oväntat.", "Thank you for your patience." => "Tack för ditt tålamod.", "Updating ownCloud to version %s, this may take a while." => "Uppdaterar ownCloud till version %s, detta kan ta en stund.", diff --git a/l10n/fr/core.po b/l10n/fr/core.po index ac43181e222..874c40d0d41 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-07 01:55-0400\n" +"PO-Revision-Date: 2014-04-06 19:40+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,24 +25,24 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." -msgstr "" +msgstr "La date d'expiration est dans le passé." -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Impossible d'envoyer un mail aux utilisateurs suivant : %s" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "Basculé en mode maintenance" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "Basculé en mode production (non maintenance)" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "Base de données mise à jour" @@ -142,63 +142,63 @@ msgstr "novembre" msgid "December" msgstr "décembre" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Paramètres" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "Enregistrement..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "il y a quelques secondes" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "il y a %n minute" msgstr[1] "il y a %n minutes" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Il y a %n heure" msgstr[1] "Il y a %n heures" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "aujourd'hui" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "hier" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "il y a %n jour" msgstr[1] "il y a %n jours" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "le mois dernier" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Il y a %n mois" msgstr[1] "Il y a %n mois" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "il y a plusieurs mois" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "l'année dernière" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "il y a plusieurs années" @@ -541,17 +541,17 @@ msgstr "Nouveau mot de passe" msgid "Reset password" msgstr "Réinitialiser le mot de passe" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " -msgstr "" +msgstr "Mac OS X n'est pas supporté et %s ne fonctionnera pas correctement sur cette plateforme. Son utilisation est à vos risques et périls !" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." -msgstr "" +msgstr "Pour des résultats meilleurs encore, pensez à utiliser un serveur GNU/Linux à la place." #: strings.php:5 msgid "Personal" diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index 5cc86b42bd3..76f1bf6e844 100644 --- a/l10n/fr/files_external.po +++ b/l10n/fr/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-07 01:55-0400\n" +"PO-Revision-Date: 2014-04-06 20:00+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -84,7 +84,7 @@ msgstr "Options" #: templates/settings.php:12 msgid "Available for" -msgstr "" +msgstr "Disponible pour" #: templates/settings.php:32 msgid "Add storage" @@ -92,7 +92,7 @@ msgstr "Ajouter un support de stockage" #: templates/settings.php:92 msgid "No user or group" -msgstr "" +msgstr "Aucun utilisateur ou groupe" #: templates/settings.php:95 msgid "All Users" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 1b65d2d0a44..47f6fb23248 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-07 01:55-0400\n" +"PO-Revision-Date: 2014-04-06 20:00+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -62,7 +62,7 @@ msgstr "Vous devez configurer votre e-mail d'utilisateur avant de pouvoir envoye msgid "Send mode" msgstr "Mode d'envoi" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "Chiffrement" @@ -75,7 +75,7 @@ msgid "Unable to load list from App Store" msgstr "Impossible de charger la liste depuis l'App Store" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Erreur d'authentification" @@ -137,32 +137,32 @@ msgstr "Impossible de supprimer l'utilisateur du groupe %s" msgid "Couldn't update app." msgstr "Impossible de mettre à jour l'application" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "Mot de passe incorrect" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "Aucun utilisateur fourni" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "Veuillez fournir un mot de passe administrateur de récupération de données, sinon toutes les données de l'utilisateur seront perdues" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "Mot de passe administrateur de récupération de données invalide. Veuillez vérifier le mot de passe et essayer à nouveau." -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "L'infrastructure d'arrière-plan ne supporte pas la modification de mot de passe, mais la clef de chiffrement des utilisateurs a été mise à jour avec succès." -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "Impossible de modifier le mot de passe" @@ -214,7 +214,7 @@ msgstr "Erreur lors de la mise à jour de l'application" msgid "Error" msgstr "Erreur" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "Mettre à jour" @@ -295,7 +295,7 @@ msgstr "Un mot de passe valide doit être saisi" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Attention : Le dossier Home pour l'utilisateur \"{user}\" existe déjà" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "Français" @@ -440,18 +440,18 @@ msgstr "Cron" #: templates/admin.php:167 #, php-format msgid "Last cron was executed at %s." -msgstr "" +msgstr "Le dernier cron s'est exécuté à %s." #: templates/admin.php:170 #, php-format msgid "" "Last cron was executed at %s. This is more than an hour ago, something seems" " wrong." -msgstr "" +msgstr "Le dernier cron s'est exécuté à %s. Cela fait plus d'une heure, quelque chose a du mal se passer." #: templates/admin.php:174 msgid "Cron was not executed yet!" -msgstr "" +msgstr "Le cron n'a pas encore été exécuté !" #: templates/admin.php:184 msgid "Execute one task with each page loaded" @@ -600,11 +600,11 @@ msgstr "Plus" msgid "Less" msgstr "Moins" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "Version" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "Distribué sous licence , par " @@ -675,108 +675,108 @@ msgstr "Revoir le premier lancement de l'installeur" msgid "You have used %s of the available %s" msgstr "Vous avez utilisé %s des %s disponibles" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Mot de passe" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "Votre mot de passe a été changé" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "Impossible de changer votre mot de passe" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "Mot de passe actuel" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "Nouveau mot de passe" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "Changer de mot de passe" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "Nom complet" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "Adresse mail" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "Votre adresse e-mail" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Saisir une adresse e-mail pour permettre la réinitialisation du mot de passe et la réception des notifications" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "Photo de profil" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "Télécharger nouveau" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "Sélectionner un nouveau depuis les documents" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "Supprimer l'image" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Soit png ou jpg. Idéalement carrée mais vous pourrez la recadrer." -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "Votre avatar est fourni par votre compte original." -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Annuler" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "Choisir en temps que photo de profil " -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "Langue" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "Aidez à traduire" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Utiliser cette adresse pour accéder à vos fichiers par WebDAV" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "L'app de chiffrement n’est plus activée, veuillez déchiffrer tous vos fichiers" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "Mot de passe de connexion" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "Déchiffrer tous les fichiers" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 7eb62b952fd..8cce143dc2c 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -4,15 +4,16 @@ # # Translators: # onionhead , 2013 +# espenbye , 2014 # vidaren , 2014 # Stein-Aksel Basma , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-07 01:55-0400\n" +"PO-Revision-Date: 2014-04-06 16:40+0000\n" +"Last-Translator: espenbye \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,24 +21,24 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Klarte ikke å sende mail til følgende brukere: %s" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "Slo på vedlikeholdsmodus" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "Slo av vedlikeholdsmodus" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "Oppdaterte databasen" @@ -137,63 +138,63 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Innstillinger" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "Lagrer..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minutt siden" msgstr[1] "%n minutter siden" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n time siden" msgstr[1] "%n timer siden" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "i dag" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "i går" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dag siden" msgstr[1] "%n dager siden" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "forrige måned" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n dag siden" msgstr[1] "%n dager siden" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "måneder siden" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "i fjor" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "år siden" @@ -263,11 +264,11 @@ msgstr "Feil ved lasting av \"filen eksisterer\"-mal" #: js/setup.js:84 msgid "Very weak password" -msgstr "" +msgstr "Veldig svakt passord" #: js/setup.js:85 msgid "Weak password" -msgstr "" +msgstr "Svakt passord" #: js/setup.js:86 msgid "So-so password" @@ -275,11 +276,11 @@ msgstr "" #: js/setup.js:87 msgid "Good password" -msgstr "" +msgstr "Bra passord" #: js/setup.js:88 msgid "Strong password" -msgstr "" +msgstr "Sterkt passord" #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" @@ -536,14 +537,14 @@ msgstr "Nytt passord" msgid "Reset password" msgstr "Tilbakestill passord" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" @@ -668,7 +669,7 @@ msgstr "opprett en administrator-konto" #: templates/installation.php:70 msgid "Storage & database" -msgstr "" +msgstr "Lagring og database" #: templates/installation.php:77 msgid "Data folder" diff --git a/l10n/nb_NO/files_external.po b/l10n/nb_NO/files_external.po index 9a0fce131c9..67c39a3b2ff 100644 --- a/l10n/nb_NO/files_external.po +++ b/l10n/nb_NO/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" +"POT-Creation-Date: 2014-04-07 01:55-0400\n" +"PO-Revision-Date: 2014-04-06 16:40+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" @@ -40,7 +40,7 @@ msgstr "Feil med konfigurering av Google Drive" #: js/settings.js:318 js/settings.js:325 msgid "Saved" -msgstr "" +msgstr "Lagret" #: lib/config.php:654 msgid "" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index a5cfd121e3e..80f2ab80a34 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-07 01:55-0400\n" +"PO-Revision-Date: 2014-04-06 16:40+0000\n" +"Last-Translator: espenbye \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,7 +28,7 @@ msgstr "" #: admin/controller.php:73 msgid "Saved" -msgstr "" +msgstr "Lagret" #: admin/controller.php:90 msgid "test email settings" @@ -55,7 +55,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "Kryptering" @@ -68,7 +68,7 @@ msgid "Unable to load list from App Store" msgstr "Lasting av liste fra App Store feilet." #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Autentiseringsfeil" @@ -130,38 +130,38 @@ msgstr "Kan ikke slette bruker fra gruppen %s" msgid "Couldn't update app." msgstr "Kunne ikke oppdatere app." -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "Feil passord" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "Ingen bruker angitt" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "Vennligst oppgi et administrativt gjenopprettingspassord. Ellers vil alle brukerdata gå tapt" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "Feil administrativt gjenopprettingspassord. Sjekk passordet og prøv igjen." -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "Serveren støtter ikke endring av passord, men oppdatering av brukerens krypteringsnøkkel var vellykket." -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "Kunne ikke endre passord" #: js/admin.js:73 msgid "Sending..." -msgstr "" +msgstr "Sender..." #: js/apps.js:45 templates/help.php:4 msgid "User Documentation" @@ -207,7 +207,7 @@ msgstr "Feil ved oppdatering av app" msgid "Error" msgstr "Feil" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "Oppdater" @@ -221,11 +221,11 @@ msgstr "Velg et profilbilde" #: js/personal.js:277 msgid "Very weak password" -msgstr "" +msgstr "Veldig svakt passord" #: js/personal.js:278 msgid "Weak password" -msgstr "" +msgstr "Svakt passord" #: js/personal.js:279 msgid "So-so password" @@ -233,11 +233,11 @@ msgstr "" #: js/personal.js:280 msgid "Good password" -msgstr "" +msgstr "Bra passord" #: js/personal.js:281 msgid "Strong password" -msgstr "" +msgstr "Sterkt passord" #: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." @@ -288,7 +288,7 @@ msgstr "Oppgi et gyldig passord" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Advarsel: Hjemmemappe for bruker \"{user}\" eksisterer allerede" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "__language_name__" @@ -330,11 +330,11 @@ msgstr "" #: templates/admin.php:24 msgid "SSL" -msgstr "" +msgstr "SSL" #: templates/admin.php:25 msgid "TLS" -msgstr "" +msgstr "TLS" #: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" @@ -543,7 +543,7 @@ msgstr "" #: templates/admin.php:327 msgid "From address" -msgstr "" +msgstr "Fra adresse" #: templates/admin.php:349 msgid "Authentication required" @@ -563,11 +563,11 @@ msgstr "" #: templates/admin.php:363 msgid "SMTP Username" -msgstr "" +msgstr "SMTP-brukernavn" #: templates/admin.php:366 msgid "SMTP Password" -msgstr "" +msgstr "SMTP-passord" #: templates/admin.php:370 msgid "Test email settings" @@ -575,7 +575,7 @@ msgstr "" #: templates/admin.php:371 msgid "Send email" -msgstr "" +msgstr "Send e-post" #: templates/admin.php:376 msgid "Log" @@ -593,11 +593,11 @@ msgstr "Mer" msgid "Less" msgstr "Mindre" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "Versjon" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "-lisensiert av " @@ -668,108 +668,108 @@ msgstr "Vis \"Førstegangs veiveiseren\" på nytt" msgid "You have used %s of the available %s" msgstr "Du har brukt %s av tilgjengelig %s" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Passord" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "Passord har blitt endret" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "Kunne ikke endre passordet ditt" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "Nåværende passord" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "Nytt passord" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "Endre passord" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "Fullt navn" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "Epost" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "Din e-postadresse" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "Profilbilde" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "Last opp nytt" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "Velg nytt fra Filer" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "Fjern bilde" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Enten png eller jpg. Helst kvadratisk men du kan beskjære det." -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "Avataren din kommer fra din opprinnelige konto." -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Avbryt" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "Velg som profilbilde" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "Språk" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "Bidra til oversettelsen" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Bruk denne adressen for å aksessere filene dine via WebDAV" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Krypterings-appen er ikke aktiv lenger. Vennligst dekrypter alle filene dine" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "Innloggingspassord" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "Dekrypter alle filer" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 09583d597ee..94929d66930 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# AsavarTzeth , 2014 # Daniel Sandman , 2013 # Gunnar Norin , 2013 # Gustav Smedberg , 2013 @@ -14,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-07 01:55-0400\n" +"PO-Revision-Date: 2014-04-06 10:50+0000\n" +"Last-Translator: AsavarTzeth \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,24 +25,24 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." -msgstr "" +msgstr "Utgångsdatumet är i det förflutna." -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Gick inte att skicka e-post till följande användare: %s" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "Aktiverade underhållsläge" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "Deaktiverade underhållsläge" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "Uppdaterade databasen" @@ -141,63 +142,63 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Inställningar" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "Sparar..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "sekunder sedan" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut sedan" msgstr[1] "%n minuter sedan" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n timme sedan" msgstr[1] "%n timmar sedan" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "i dag" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "i går" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dag sedan" msgstr[1] "%n dagar sedan" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "förra månaden" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n månad sedan" msgstr[1] "%n månader sedan" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "månader sedan" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "förra året" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "år sedan" @@ -267,23 +268,23 @@ msgstr "Fel uppstod filmall existerar" #: js/setup.js:84 msgid "Very weak password" -msgstr "" +msgstr "Väldigt svagt lösenord" #: js/setup.js:85 msgid "Weak password" -msgstr "" +msgstr "Svagt lösenord" #: js/setup.js:86 msgid "So-so password" -msgstr "" +msgstr "Okej lösenord" #: js/setup.js:87 msgid "Good password" -msgstr "" +msgstr "Bra lösenord" #: js/setup.js:88 msgid "Strong password" -msgstr "" +msgstr "Starkt lösenord" #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" @@ -460,7 +461,7 @@ msgstr "Inga taggar valda för borttagning." #: js/update.js:8 msgid "Please reload the page." -msgstr "" +msgstr "Vänligen ladda om sidan." #: js/update.js:17 msgid "" @@ -482,7 +483,7 @@ msgstr "%s återställ lösenord" msgid "" "A problem has occurred whilst sending the email, please contact your " "administrator." -msgstr "" +msgstr "Ett problem har uppstått under tiden e-post sändes, vänligen kontakta din administratör." #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -540,17 +541,17 @@ msgstr "Nytt lösenord" msgid "Reset password" msgstr "Återställ lösenordet" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " -msgstr "" +msgstr "Mac OS X stöds inte och %s kommer inte att fungera korrekt på denna plattform. Använd på egen risk!" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." -msgstr "" +msgstr "För bästa resultat, överväg att använda en GNU/Linux server istället." #: strings.php:5 msgid "Personal" @@ -672,7 +673,7 @@ msgstr "Skapa ett administratörskonto" #: templates/installation.php:70 msgid "Storage & database" -msgstr "" +msgstr "Lagring & databas" #: templates/installation.php:77 msgid "Data folder" @@ -719,7 +720,7 @@ msgid "" "This application requires JavaScript to be enabled for correct operation. " "Please enable " "JavaScript and re-load this interface." -msgstr "" +msgstr "Denna applikation kräver JavaScript aktiverat för att fungera korrekt. Vänligen aktivera JavaScript och ladda om gränssnittet." #: templates/layout.user.php:44 #, php-format @@ -773,15 +774,15 @@ msgstr "Alternativa inloggningar" msgid "" "Hey there,

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

      " -msgstr "" +msgstr "Hej där,

      ville bara informera dig om att %s delade %s med dig.
      Visa den!

      " #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." -msgstr "" +msgstr "Denna ownCloud instans är för närvarande i enanvändarläge" #: templates/singleuser.user.php:4 msgid "This means only administrators can use the instance." -msgstr "" +msgstr "Detta betyder att endast administartörer kan använda instansen." #: templates/singleuser.user.php:5 templates/update.user.php:5 msgid "" diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index a21782b2813..9b16af04313 100644 --- a/l10n/sv/files_external.po +++ b/l10n/sv/files_external.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# AsavarTzeth , 2014 # medialabs, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-07 01:55-0400\n" +"PO-Revision-Date: 2014-04-06 11:00+0000\n" +"Last-Translator: AsavarTzeth \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,7 +41,7 @@ msgstr "Fel vid konfigurering av Google Drive" #: js/settings.js:318 js/settings.js:325 msgid "Saved" -msgstr "" +msgstr "Sparad" #: lib/config.php:654 msgid "" @@ -84,7 +85,7 @@ msgstr "Alternativ" #: templates/settings.php:12 msgid "Available for" -msgstr "" +msgstr "Tillgänglig för" #: templates/settings.php:32 msgid "Add storage" @@ -92,7 +93,7 @@ msgstr "Lägg till lagring" #: templates/settings.php:92 msgid "No user or group" -msgstr "" +msgstr "Ingen användare eller grupp" #: templates/settings.php:95 msgid "All Users" @@ -117,7 +118,7 @@ msgstr "Aktivera extern lagring för användare" #: templates/settings.php:135 msgid "Allow users to mount the following external storage" -msgstr "" +msgstr "Tillåt användare att montera följande extern lagring" #: templates/settings.php:150 msgid "SSL root certificates" diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index d23ab4a6d3a..003e9595bde 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# AsavarTzeth , 2014 # Gustav Smedberg , 2013 # Magnus Höglund , 2013 # Stefan Gagner , 2013 @@ -10,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-07 01:55-0400\n" +"PO-Revision-Date: 2014-04-06 10:50+0000\n" +"Last-Translator: AsavarTzeth \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,7 +21,7 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/share.js:13 +#: js/share.js:33 msgid "Shared by {owner}" msgstr "Delad av {owner}" @@ -63,12 +64,12 @@ msgstr "För mer information, kontakta den person som skickade den här länken. #: templates/public.php:17 #, php-format msgid "shared by %s" -msgstr "" +msgstr "delad av %s" #: templates/public.php:44 #, php-format msgid "Download %s" -msgstr "" +msgstr "Ladda ner %s" #: templates/public.php:48 msgid "Direct link" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index 34bfef2ce30..6ce09feeb1b 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# AsavarTzeth , 2014 # Daniel Sandman , 2013 # medialabs, 2013 # kallemooo , 2013 @@ -12,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-07 01:55-0400\n" +"PO-Revision-Date: 2014-04-06 10:10+0000\n" +"Last-Translator: AsavarTzeth \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -70,23 +71,23 @@ msgstr "Ogiltig bild" msgid "web services under your control" msgstr "webbtjänster under din kontroll" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "Nerladdning av ZIP är avstängd." -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "Filer laddas ner en åt gången." -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "Tillbaka till Filer" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "Valda filer är för stora för att skapa zip-fil." -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -162,7 +163,7 @@ msgstr "Ogiltig token. Ladda om sidan." #: private/json.php:75 msgid "Unknown user" -msgstr "" +msgstr "Okänd användare" #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" @@ -197,23 +198,23 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL-användaren och/eller lösenordet var inte giltigt: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Du måste antingen ange ett befintligt konto eller administratör." #: private/setup/mysql.php:12 msgid "MySQL/MariaDB username and/or password not valid" -msgstr "" +msgstr "MySQL/MariaDB användarnamn och/eller lösenord är felaktigt" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "DB error: \"%s\"" @@ -222,9 +223,9 @@ msgstr "DB error: \"%s\"" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "Det felaktiga kommandot var: \"%s\"" @@ -232,20 +233,20 @@ msgstr "Det felaktiga kommandot var: \"%s\"" #: private/setup/mysql.php:85 #, php-format msgid "MySQL/MariaDB user '%s'@'localhost' exists already." -msgstr "" +msgstr "MySQL/MariaDB användare '%s'@'localhost' existerar redan." #: private/setup/mysql.php:86 msgid "Drop this user from MySQL/MariaDB" -msgstr "" +msgstr "Radera denna användare från MySQL/MariaDB" #: private/setup/mysql.php:91 #, php-format msgid "MySQL/MariaDB user '%s'@'%%' already exists" -msgstr "" +msgstr "MySQL/MariaDB användare '%s'@'%%' existerar redan" #: private/setup/mysql.php:92 msgid "Drop this user from MySQL/MariaDB." -msgstr "" +msgstr "Radera denna användare från MySQL/MariaDB." #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -260,7 +261,7 @@ msgstr "Oracle-användarnamnet och/eller lösenordet är felaktigt" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Det felande kommandot var: \"%s\", name: %s, password: %s" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL-användarnamnet och/eller lösenordet är felaktigt" @@ -272,19 +273,19 @@ msgstr "Ange ett användarnamn för administratören." msgid "Set an admin password." msgstr "Ange ett administratörslösenord." -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Din webbserver är inte korrekt konfigurerad för att tillåta filsynkronisering eftersom WebDAV inte verkar fungera." -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "Var god kontrollera installationsguiden." -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "%s delade »%s« med dig" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 260b11a4497..f3161f40534 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# AsavarTzeth , 2014 # Daniel Sandman , 2013 # Gunnar Norin , 2013 # Gustav Smedberg , 2013 @@ -16,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-07 01:55-0400\n" +"PO-Revision-Date: 2014-04-06 12:20+0000\n" +"Last-Translator: AsavarTzeth \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,24 +30,24 @@ msgstr "" #: admin/controller.php:66 #, php-format msgid "Invalid value supplied for %s" -msgstr "" +msgstr "Ogiltigt värde gavs för %s" #: admin/controller.php:73 msgid "Saved" -msgstr "" +msgstr "Sparad" #: admin/controller.php:90 msgid "test email settings" -msgstr "" +msgstr "testa e-post inställningar" #: admin/controller.php:91 msgid "If you received this email, the settings seem to be correct." -msgstr "" +msgstr "Om du mottog detta e-postmeddelande, verkar dina inställningar vara korrekta." #: admin/controller.php:94 msgid "" "A problem occurred while sending the e-mail. Please revisit your settings." -msgstr "" +msgstr "Ett problem har uppstått under tiden e-post sändes. Vänligen se över dina inställningar." #: admin/controller.php:99 msgid "Email sent" @@ -54,32 +55,32 @@ msgstr "E-post skickat" #: admin/controller.php:101 msgid "You need to set your user email before being able to send test emails." -msgstr "" +msgstr "Du behöver ställa in din användares e-postadress före du kan skicka test e-post." #: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" -msgstr "" +msgstr "Sändningsläge" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "Kryptering" #: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" -msgstr "" +msgstr "Autentiseringsmetod" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "Kan inte ladda listan från App Store" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Fel vid autentisering" #: ajax/changedisplayname.php:31 msgid "Your full name has been changed." -msgstr "" +msgstr "Ditt fulla namn har ändrats" #: ajax/changedisplayname.php:34 msgid "Unable to change full name" @@ -135,38 +136,38 @@ msgstr "Kan inte radera användare från gruppen %s" msgid "Couldn't update app." msgstr "Kunde inte uppdatera appen." -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "Fel lösenord" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "Ingen användare angiven" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "Ange ett återställningslösenord för administratören. Annars kommer all användardata förloras" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "Felaktigt återställningslösenord för administratör. Kolla lösenordet och prova igen." -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "Gränssnittet stödjer inte byte av lösenord, men användarnas krypteringsnyckel blev uppdaterad." -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "Kunde inte ändra lösenord" #: js/admin.js:73 msgid "Sending..." -msgstr "" +msgstr "Skickar..." #: js/apps.js:45 templates/help.php:4 msgid "User Documentation" @@ -174,7 +175,7 @@ msgstr "Användardokumentation" #: js/apps.js:50 msgid "Admin Documentation" -msgstr "" +msgstr "Administratörsdokumentation" #: js/apps.js:67 msgid "Update to {appversion}" @@ -212,7 +213,7 @@ msgstr "Fel uppstod vid uppdatering av appen" msgid "Error" msgstr "Fel" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "Uppdatera" @@ -226,23 +227,23 @@ msgstr "Välj en profilbild" #: js/personal.js:277 msgid "Very weak password" -msgstr "" +msgstr "Väldigt svagt lösenord" #: js/personal.js:278 msgid "Weak password" -msgstr "" +msgstr "Svagt lösenord" #: js/personal.js:279 msgid "So-so password" -msgstr "" +msgstr "Okej lösenord" #: js/personal.js:280 msgid "Good password" -msgstr "" +msgstr "Bra lösenord" #: js/personal.js:281 msgid "Strong password" -msgstr "" +msgstr "Starkt lösenord" #: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." @@ -293,29 +294,29 @@ msgstr "Ett giltigt lösenord måste anges" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Varning: Hem katalogen för varje användare \"{användare}\" finns redan" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "__language_name__" #: templates/admin.php:8 msgid "Everything (fatal issues, errors, warnings, info, debug)" -msgstr "" +msgstr "Allting (allvarliga fel, fel, varningar, info, debug)" #: templates/admin.php:9 msgid "Info, warnings, errors and fatal issues" -msgstr "" +msgstr "Info, varningar och allvarliga fel" #: templates/admin.php:10 msgid "Warnings, errors and fatal issues" -msgstr "" +msgstr "Varningar, fel ocg allvarliga fel" #: templates/admin.php:11 msgid "Errors and fatal issues" -msgstr "" +msgstr "Fel och allvarliga fel" #: templates/admin.php:12 msgid "Fatal issues only" -msgstr "" +msgstr "Endast allvarliga fel" #: templates/admin.php:16 templates/admin.php:23 msgid "None" @@ -327,19 +328,19 @@ msgstr "Logga in" #: templates/admin.php:18 msgid "Plain" -msgstr "" +msgstr "Enkel" #: templates/admin.php:19 msgid "NT LAN Manager" -msgstr "" +msgstr "NT LAN Manager" #: templates/admin.php:24 msgid "SSL" -msgstr "" +msgstr "SSL" #: templates/admin.php:25 msgid "TLS" -msgstr "" +msgstr "TLS" #: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" @@ -350,7 +351,7 @@ msgstr "Säkerhetsvarning" msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." -msgstr "" +msgstr "Du ansluter till %s via HTTP. Vi rekommenderar starkt att du konfigurerar din server att använda HTTPS istället." #: templates/admin.php:64 msgid "" @@ -388,14 +389,14 @@ msgstr "PHP-modulen 'fileinfo' saknas. Vi rekommenderar starkt att aktivera den #: templates/admin.php:104 msgid "Your PHP version is outdated" -msgstr "" +msgstr "Din PHP version är föråldrad" #: templates/admin.php:107 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 "Din PHP version är föråldrad. Vi rekommenderar starkt att uppdatera till 5.3.8 eller nyare eftersom äldre versioner är obrukbara. Det är möjligt att denna installation inte fungerar korrekt." #: templates/admin.php:118 msgid "Locale not working" @@ -403,20 +404,20 @@ msgstr "Locale fungerar inte" #: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." -msgstr "" +msgstr "Systemspråk kan inte ställas in till ett som stödjer UTF-8." #: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." -msgstr "" +msgstr "Detta betyder att där kan komma att uppstå problem med vissa tecken i filnamn." #: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." -msgstr "" +msgstr "Vi rekommenderar starkt att installera de paket som krävs på ditt system för att stödja en av följande systemspråk: %s." #: templates/admin.php:143 msgid "Internet connection not working" @@ -438,18 +439,18 @@ msgstr "Cron" #: templates/admin.php:167 #, php-format msgid "Last cron was executed at %s." -msgstr "" +msgstr "Sista cron kördes vid %s" #: templates/admin.php:170 #, php-format msgid "" "Last cron was executed at %s. This is more than an hour ago, something seems" " wrong." -msgstr "" +msgstr "Sista cron kördes vid %s. Detta är mer än en timme sedan, något verkar fel." #: templates/admin.php:174 msgid "Cron was not executed yet!" -msgstr "" +msgstr "Cron kördes inte ännu!" #: templates/admin.php:184 msgid "Execute one task with each page loaded" @@ -540,19 +541,19 @@ msgstr "Anslut till din %s via HTTPS för att aktivera/deaktivera SSL" #: templates/admin.php:294 msgid "Email Server" -msgstr "" +msgstr "E-postserver" #: templates/admin.php:296 msgid "This is used for sending out notifications." -msgstr "" +msgstr "Detta används för att skicka ut notifieringar." #: templates/admin.php:327 msgid "From address" -msgstr "" +msgstr "Från adress" #: templates/admin.php:349 msgid "Authentication required" -msgstr "" +msgstr "Autentisering krävs" #: templates/admin.php:353 msgid "Server address" @@ -568,19 +569,19 @@ msgstr "Inloggningsuppgifter" #: templates/admin.php:363 msgid "SMTP Username" -msgstr "" +msgstr "SMTP användarnamn" #: templates/admin.php:366 msgid "SMTP Password" -msgstr "" +msgstr "SMTP lösenord" #: templates/admin.php:370 msgid "Test email settings" -msgstr "" +msgstr "Testa e-post inställninggar" #: templates/admin.php:371 msgid "Send email" -msgstr "" +msgstr "Skicka e-post" #: templates/admin.php:376 msgid "Log" @@ -598,11 +599,11 @@ msgstr "Mer" msgid "Less" msgstr "Mindre" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "Version" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "-licensierad av " @@ -673,108 +674,108 @@ msgstr "Visa Första uppstarts-guiden igen" msgid "You have used %s of the available %s" msgstr "Du har använt %s av tillgängliga %s" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Lösenord" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "Ditt lösenord har ändrats" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "Kunde inte ändra ditt lösenord" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "Nuvarande lösenord" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "Nytt lösenord" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "Ändra lösenord" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "Hela namnet" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "E-post" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "Din e-postadress" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" -msgstr "" +msgstr "Fyll i en e-postadress för att aktivera återställning av lösenord och mottagande av notifieringar" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "Profilbild" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "Ladda upp ny" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "Välj ny från filer" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "Radera bild" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Antingen png eller jpg. Helst fyrkantig, men du kommer att kunna beskära den." -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." -msgstr "" +msgstr "Din avatar tillhandahålls av ditt ursprungliga konto." -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Avbryt" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "Välj som profilbild" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "Språk" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "Hjälp att översätta" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Använd denna adress till nå dina Filer via WebDAV" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" -msgstr "" +msgstr "Krypteringsapplikationen är inte längre aktiverad, vänligen dekryptera alla dina filer" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "Inloggningslösenord" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "Dekryptera alla filer" @@ -802,7 +803,7 @@ msgstr "Förvald lagring" #: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" -msgstr "" +msgstr "Var god skriv in lagringskvot (ex: \"512MB\" eller \"12 GB\")" #: templates/users.php:46 templates/users.php:146 msgid "Unlimited" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index e397522432d..dc2a86bb6c8 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: 2014-04-06 01:55-0400\n" +"POT-Creation-Date: 2014-04-07 01:55-0400\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.pot b/l10n/templates/files.pot index bde7c871d24..525b817c1a3 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: 2014-04-06 01:55-0400\n" +"POT-Creation-Date: 2014-04-07 01:55-0400\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 d4eff40b75e..bddf4926cca 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: 2014-04-06 01:55-0400\n" +"POT-Creation-Date: 2014-04-07 01:55-0400\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 6c600c62e4a..e6f5ae7a53c 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: 2014-04-06 01:55-0400\n" +"POT-Creation-Date: 2014-04-07 01:55-0400\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 d8f0b9897e5..f694d95e78b 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: 2014-04-06 01:55-0400\n" +"POT-Creation-Date: 2014-04-07 01:55-0400\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 5f8cdde491f..5a0e62b6fd3 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: 2014-04-06 01:55-0400\n" +"POT-Creation-Date: 2014-04-07 01:55-0400\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 8a287d91d9e..6a7d0941746 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: 2014-04-06 01:55-0400\n" +"POT-Creation-Date: 2014-04-07 01:55-0400\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 df11086bc7d..0bb735ef277 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: 2014-04-06 01:55-0400\n" +"POT-Creation-Date: 2014-04-07 01:55-0400\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 6a5dace8d90..837b1f9161b 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: 2014-04-06 01:55-0400\n" +"POT-Creation-Date: 2014-04-07 01:55-0400\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 d7c6e044a23..631b8a0d73a 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: 2014-04-06 01:55-0400\n" +"POT-Creation-Date: 2014-04-07 01:55-0400\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 a2a0f85851f..7004cf562db 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: 2014-04-06 01:55-0400\n" +"POT-Creation-Date: 2014-04-07 01:55-0400\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 f1653c13c41..c0c22d81309 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: 2014-04-06 01:55-0400\n" +"POT-Creation-Date: 2014-04-07 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/lib/l10n/sv.php b/lib/l10n/sv.php index a1f371210ac..7053e09624d 100644 --- a/lib/l10n/sv.php +++ b/lib/l10n/sv.php @@ -31,6 +31,7 @@ $TRANSLATIONS = array( "Application is not enabled" => "Applikationen är inte aktiverad", "Authentication error" => "Fel vid autentisering", "Token expired. Please reload page." => "Ogiltig token. Ladda om sidan.", +"Unknown user" => "Okänd användare", "Files" => "Filer", "Text" => "Text", "Images" => "Bilder", @@ -39,8 +40,13 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s du får inte använda punkter i databasnamnet", "MS SQL username and/or password not valid: %s" => "MS SQL-användaren och/eller lösenordet var inte giltigt: %s", "You need to enter either an existing account or the administrator." => "Du måste antingen ange ett befintligt konto eller administratör.", +"MySQL/MariaDB username and/or password not valid" => "MySQL/MariaDB användarnamn och/eller lösenord är felaktigt", "DB Error: \"%s\"" => "DB error: \"%s\"", "Offending command was: \"%s\"" => "Det felaktiga kommandot var: \"%s\"", +"MySQL/MariaDB user '%s'@'localhost' exists already." => "MySQL/MariaDB användare '%s'@'localhost' existerar redan.", +"Drop this user from MySQL/MariaDB" => "Radera denna användare från MySQL/MariaDB", +"MySQL/MariaDB user '%s'@'%%' already exists" => "MySQL/MariaDB användare '%s'@'%%' existerar redan", +"Drop this user from MySQL/MariaDB." => "Radera denna användare från MySQL/MariaDB.", "Oracle connection could not be established" => "Oracle-anslutning kunde inte etableras", "Oracle username and/or password not valid" => "Oracle-användarnamnet och/eller lösenordet är felaktigt", "Offending command was: \"%s\", name: %s, password: %s" => "Det felande kommandot var: \"%s\", name: %s, password: %s", diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index 11c75ea1e08..5c48c7fd75f 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -93,6 +93,9 @@ $TRANSLATIONS = array( "Internet connection not working" => "La connexion internet ne fonctionne pas", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Ce serveur ne peut se connecter à internet. Cela signifie que certaines fonctionnalités, telles que le montage de supports de stockage distants, les notifications de mises à jour ou l'installation d'applications tierces ne fonctionneront pas. L'accès aux fichiers à distance, ainsi que les notifications par mails ne seront pas fonctionnels également. Il est recommandé d'activer la connexion internet pour ce serveur si vous souhaitez disposer de l'ensemble des fonctionnalités offertes.", "Cron" => "Cron", +"Last cron was executed at %s." => "Le dernier cron s'est exécuté à %s.", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Le dernier cron s'est exécuté à %s. Cela fait plus d'une heure, quelque chose a du mal se passer.", +"Cron was not executed yet!" => "Le cron n'a pas encore été exécuté !", "Execute one task with each page loaded" => "Exécute une tâche à chaque chargement de page", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php est enregistré en tant que service webcron pour appeler cron.php toutes les 15 minutes via http.", "Use systems cron service to call the cron.php file every 15 minutes." => "Utilise le service cron du système pour appeler le fichier cron.php toutes les 15 minutes.", diff --git a/settings/l10n/nb_NO.php b/settings/l10n/nb_NO.php index 40cca41638c..244881d306d 100644 --- a/settings/l10n/nb_NO.php +++ b/settings/l10n/nb_NO.php @@ -1,5 +1,6 @@ "Lagret", "Email sent" => "E-post sendt", "Encryption" => "Kryptering", "Unable to load list from App Store" => "Lasting av liste fra App Store feilet.", @@ -24,6 +25,7 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Feil administrativt gjenopprettingspassord. Sjekk passordet og prøv igjen.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "Serveren støtter ikke endring av passord, men oppdatering av brukerens krypteringsnøkkel var vellykket.", "Unable to change password" => "Kunne ikke endre passord", +"Sending..." => "Sender...", "User Documentation" => "Brukerdokumentasjon", "Update to {appversion}" => "Oppdater til {appversion}", "Disable" => "Slå avBehandle ", @@ -37,6 +39,10 @@ $TRANSLATIONS = array( "Update" => "Oppdater", "Updated" => "Oppdatert", "Select a profile picture" => "Velg et profilbilde", +"Very weak password" => "Veldig svakt passord", +"Weak password" => "Svakt passord", +"Good password" => "Bra passord", +"Strong password" => "Sterkt passord", "Decrypting files... Please wait, this can take some time." => "Dekrypterer filer... Vennligst vent, dette kan ta litt tid.", "deleted" => "slettet", "undo" => "angre", @@ -57,6 +63,8 @@ $TRANSLATIONS = array( "Fatal issues only" => "Kun fatale problemer", "None" => "Ingen", "Login" => "Logg inn", +"SSL" => "SSL", +"TLS" => "TLS", "Security Warning" => "Sikkerhetsadvarsel", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Du aksesserer %s via HTTP. Vi anbefaler på det sterkeste at du konfigurerer serveren til å kreve bruk av HTTPS i stedet.", "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." => "Datamappen og filene dine er sannsynligvis tilgjengelig fra Internett fordi .htaccess-filen ikke fungerer. Vi anbefaler på det sterkeste at du konfigurerer web-serveren din slik at datamappen ikke lenger er tilgjengelig eller at du flytter datamappen ut av web-serverens dokument-rotmappe.", @@ -94,8 +102,12 @@ $TRANSLATIONS = array( "Enforce HTTPS" => "Tving HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Tvinger klientene til å koble til %s via en kryptert forbindelse.", "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Vennligst koble til din %s via HTTPS for å aktivere eller deaktivere tvungen SSL.", +"From address" => "Fra adresse", "Server address" => "Server-adresse", "Port" => "Port", +"SMTP Username" => "SMTP-brukernavn", +"SMTP Password" => "SMTP-passord", +"Send email" => "Send e-post", "Log" => "Logg", "Log level" => "Loggnivå", "More" => "Mer", @@ -105,6 +117,7 @@ $TRANSLATIONS = array( "Add your App" => "Legg til din App", "More Apps" => "Flere Apps", "Select an App" => "Velg en app", +"Documentation:" => "Dokumentasjon:", "See application page at apps.owncloud.com" => "Se applikasjonens side på apps.owncloud.org", "-licensed by " => "-lisensiert av ", "Administrator Documentation" => "Administratordokumentasjon", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index 43695d8b28f..48f4428303c 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -1,9 +1,18 @@ "Ogiltigt värde gavs för %s", +"Saved" => "Sparad", +"test email settings" => "testa e-post inställningar", +"If you received this email, the settings seem to be correct." => "Om du mottog detta e-postmeddelande, verkar dina inställningar vara korrekta.", +"A problem occurred while sending the e-mail. Please revisit your settings." => "Ett problem har uppstått under tiden e-post sändes. Vänligen se över dina inställningar.", "Email sent" => "E-post skickat", +"You need to set your user email before being able to send test emails." => "Du behöver ställa in din användares e-postadress före du kan skicka test e-post.", +"Send mode" => "Sändningsläge", "Encryption" => "Kryptering", +"Authentication method" => "Autentiseringsmetod", "Unable to load list from App Store" => "Kan inte ladda listan från App Store", "Authentication error" => "Fel vid autentisering", +"Your full name has been changed." => "Ditt fulla namn har ändrats", "Unable to change full name" => "Kunde inte ändra hela namnet", "Group already exists" => "Gruppen finns redan", "Unable to add group" => "Kan inte lägga till grupp", @@ -23,7 +32,9 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Felaktigt återställningslösenord för administratör. Kolla lösenordet och prova igen.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "Gränssnittet stödjer inte byte av lösenord, men användarnas krypteringsnyckel blev uppdaterad.", "Unable to change password" => "Kunde inte ändra lösenord", +"Sending..." => "Skickar...", "User Documentation" => "Användardokumentation", +"Admin Documentation" => "Administratörsdokumentation", "Update to {appversion}" => "Uppdatera till {appversion}", "Disable" => "Deaktivera", "Enable" => "Aktivera", @@ -36,6 +47,11 @@ $TRANSLATIONS = array( "Update" => "Uppdatera", "Updated" => "Uppdaterad", "Select a profile picture" => "Välj en profilbild", +"Very weak password" => "Väldigt svagt lösenord", +"Weak password" => "Svagt lösenord", +"So-so password" => "Okej lösenord", +"Good password" => "Bra lösenord", +"Strong password" => "Starkt lösenord", "Decrypting files... Please wait, this can take some time." => "Dekrypterar filer... Vänligen vänta, detta kan ta en stund.", "deleted" => "raderad", "undo" => "ångra", @@ -49,19 +65,37 @@ $TRANSLATIONS = array( "A valid password must be provided" => "Ett giltigt lösenord måste anges", "Warning: Home directory for user \"{user}\" already exists" => "Varning: Hem katalogen för varje användare \"{användare}\" finns redan", "__language_name__" => "__language_name__", +"Everything (fatal issues, errors, warnings, info, debug)" => "Allting (allvarliga fel, fel, varningar, info, debug)", +"Info, warnings, errors and fatal issues" => "Info, varningar och allvarliga fel", +"Warnings, errors and fatal issues" => "Varningar, fel ocg allvarliga fel", +"Errors and fatal issues" => "Fel och allvarliga fel", +"Fatal issues only" => "Endast allvarliga fel", "None" => "Ingen", "Login" => "Logga in", +"Plain" => "Enkel", +"NT LAN Manager" => "NT LAN Manager", +"SSL" => "SSL", +"TLS" => "TLS", "Security Warning" => "Säkerhetsvarning", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Du ansluter till %s via HTTP. Vi rekommenderar starkt att du konfigurerar din server att använda HTTPS istället.", "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Din datakatalog och dina filer är förmodligen åtkomliga från internet. Filen .htaccess fungerar inte. Vi rekommenderar starkt att du konfigurerar din webbserver så att datakatalogen inte längre är åtkomlig eller du flyttar datakatalogen utanför webbserverns rotkatalog.", "Setup Warning" => "Installationsvarning", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Din webbserver är inte korrekt konfigurerad för att tillåta filsynkronisering eftersom WebDAV inte verkar fungera.", "Please double check the installation guides." => "Vänligen dubbelkolla igenom installationsguiden.", "Module 'fileinfo' missing" => "Modulen \"fileinfo\" saknas", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP-modulen 'fileinfo' saknas. Vi rekommenderar starkt att aktivera den här modulen för att kunna upptäcka korrekt mime-typ.", +"Your PHP version is outdated" => "Din PHP version är föråldrad", +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Din PHP version är föråldrad. Vi rekommenderar starkt att uppdatera till 5.3.8 eller nyare eftersom äldre versioner är obrukbara. Det är möjligt att denna installation inte fungerar korrekt.", "Locale not working" => "Locale fungerar inte", +"System locale can not be set to a one which supports UTF-8." => "Systemspråk kan inte ställas in till ett som stödjer UTF-8.", +"This means that there might be problems with certain characters in file names." => "Detta betyder att där kan komma att uppstå problem med vissa tecken i filnamn.", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Vi rekommenderar starkt att installera de paket som krävs på ditt system för att stödja en av följande systemspråk: %s.", "Internet connection not working" => "Internetförbindelsen fungerar inte", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Servern har ingen fungerande internetanslutning. Detta innebär att en del av de funktioner som montering av extern lagring, notifieringar om uppdateringar eller installation av 3: e part appar inte fungerar. Åtkomst till filer och skicka e-postmeddelanden fungerar troligen inte heller. Vi rekommenderar starkt att aktivera en internetuppkoppling för denna server om du vill ha alla funktioner.", "Cron" => "Cron", +"Last cron was executed at %s." => "Sista cron kördes vid %s", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Sista cron kördes vid %s. Detta är mer än en timme sedan, något verkar fel.", +"Cron was not executed yet!" => "Cron kördes inte ännu!", "Execute one task with each page loaded" => "Exekvera en uppgift vid varje sidladdning", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php är registrerad som en webcron service att ropa på cron.php varje 15 minuter över http.", "Use systems cron service to call the cron.php file every 15 minutes." => "Använd systemets cron service att ropa på cron.php filen varje 15 minuter.", @@ -82,9 +116,17 @@ $TRANSLATIONS = array( "Enforce HTTPS" => "Kräv HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Tvingar klienterna att ansluta till %s via en krypterad anslutning.", "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Anslut till din %s via HTTPS för att aktivera/deaktivera SSL", +"Email Server" => "E-postserver", +"This is used for sending out notifications." => "Detta används för att skicka ut notifieringar.", +"From address" => "Från adress", +"Authentication required" => "Autentisering krävs", "Server address" => "Serveradress", "Port" => "Port", "Credentials" => "Inloggningsuppgifter", +"SMTP Username" => "SMTP användarnamn", +"SMTP Password" => "SMTP lösenord", +"Test email settings" => "Testa e-post inställninggar", +"Send email" => "Skicka e-post", "Log" => "Logg", "Log level" => "Nivå på loggning", "More" => "Mer", @@ -94,7 +136,9 @@ $TRANSLATIONS = array( "Add your App" => "Lägg till din applikation", "More Apps" => "Fler Appar", "Select an App" => "Välj en App", +"Documentation:" => "Dokumentation:", "See application page at apps.owncloud.com" => "Se programsida på apps.owncloud.com", +"See application website" => "Se applikationens webbplats", "-licensed by " => "-licensierad av ", "Administrator Documentation" => "Administratörsdokumentation", "Online Documentation" => "Onlinedokumentation", @@ -113,17 +157,20 @@ $TRANSLATIONS = array( "Full Name" => "Hela namnet", "Email" => "E-post", "Your email address" => "Din e-postadress", +"Fill in an email address to enable password recovery and receive notifications" => "Fyll i en e-postadress för att aktivera återställning av lösenord och mottagande av notifieringar", "Profile picture" => "Profilbild", "Upload new" => "Ladda upp ny", "Select new from Files" => "Välj ny från filer", "Remove image" => "Radera bild", "Either png or jpg. Ideally square but you will be able to crop it." => "Antingen png eller jpg. Helst fyrkantig, men du kommer att kunna beskära den.", +"Your avatar is provided by your original account." => "Din avatar tillhandahålls av ditt ursprungliga konto.", "Cancel" => "Avbryt", "Choose as profile image" => "Välj som profilbild", "Language" => "Språk", "Help translate" => "Hjälp att översätta", "WebDAV" => "WebDAV", "Use this address to access your Files via WebDAV" => "Använd denna adress till nå dina Filer via WebDAV", +"The encryption app is no longer enabled, please decrypt all your files" => "Krypteringsapplikationen är inte längre aktiverad, vänligen dekryptera alla dina filer", "Log-in password" => "Inloggningslösenord", "Decrypt all Files" => "Dekryptera alla filer", "Login Name" => "Inloggningsnamn", @@ -131,6 +178,7 @@ $TRANSLATIONS = array( "Admin Recovery Password" => "Admin återställningslösenord", "Enter the recovery password in order to recover the users files during password change" => "Enter the recovery password in order to recover the users files during password change", "Default Storage" => "Förvald lagring", +"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Var god skriv in lagringskvot (ex: \"512MB\" eller \"12 GB\")", "Unlimited" => "Obegränsad", "Other" => "Annat", "Username" => "Användarnamn", -- GitLab From c90b0ac00b9f2ea406346f0500bb91bf8f205501 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Mon, 7 Apr 2014 11:46:47 +0200 Subject: [PATCH 239/296] Fix copy conflict dialog translation --- apps/files/templates/fileexists.html | 4 ++-- core/js/oc-dialogs.js | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/apps/files/templates/fileexists.html b/apps/files/templates/fileexists.html index 662177ac7ed..79beccef3e5 100644 --- a/apps/files/templates/fileexists.html +++ b/apps/files/templates/fileexists.html @@ -3,8 +3,8 @@ {what}

      - - + +
      diff --git a/core/js/oc-dialogs.js b/core/js/oc-dialogs.js index 6fc8d4d3523..617a8a3152c 100644 --- a/core/js/oc-dialogs.js +++ b/core/js/oc-dialogs.js @@ -364,6 +364,9 @@ var OCdialogs = { title: title, type: 'fileexists', + allnewfiles: t('files','New Files'), + allexistingfiles: t('files','Already existing files'), + why: t('files','Which files do you want to keep?'), what: t('files','If you select both versions, the copied file will have a number added to its name.') }); -- GitLab From 779dff31c440c7252e9bab88e89b7864afec7bf2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Mon, 7 Apr 2014 11:58:32 +0200 Subject: [PATCH 240/296] translations for oc-dialogs reside in code --- core/js/oc-dialogs.js | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/core/js/oc-dialogs.js b/core/js/oc-dialogs.js index 617a8a3152c..4da56f27d27 100644 --- a/core/js/oc-dialogs.js +++ b/core/js/oc-dialogs.js @@ -343,7 +343,7 @@ var OCdialogs = { addConflict(conflicts, original, replacement); var count = $(dialog_id+ ' .conflict').length; - var title = n('files', + var title = n('core', '{count} file conflict', '{count} file conflicts', count, @@ -358,17 +358,17 @@ var OCdialogs = { //create dialog this._fileexistsshown = true; $.when(this._getFileExistsTemplate()).then(function($tmpl) { - var title = t('files','One file conflict'); + var title = t('core','One file conflict'); var $dlg = $tmpl.octemplate({ dialog_name: dialog_name, title: title, type: 'fileexists', - allnewfiles: t('files','New Files'), - allexistingfiles: t('files','Already existing files'), + allnewfiles: t('core','New Files'), + allexistingfiles: t('core','Already existing files'), - why: t('files','Which files do you want to keep?'), - what: t('files','If you select both versions, the copied file will have a number added to its name.') + why: t('core','Which files do you want to keep?'), + what: t('core','If you select both versions, the copied file will have a number added to its name.') }); $('body').append($dlg); @@ -433,10 +433,10 @@ var OCdialogs = { var count = $(dialog_id).find('.conflict .replacement input[type="checkbox"]:checked').length; if (count === $(dialog_id+ ' .conflict').length) { $(dialog_id).find('.allnewfiles').prop('checked', true); - $(dialog_id).find('.allnewfiles + .count').text(t('files','(all selected)')); + $(dialog_id).find('.allnewfiles + .count').text(t('core','(all selected)')); } else if (count > 0) { $(dialog_id).find('.allnewfiles').prop('checked', false); - $(dialog_id).find('.allnewfiles + .count').text(t('files','({count} selected)',{count:count})); + $(dialog_id).find('.allnewfiles + .count').text(t('core','({count} selected)',{count:count})); } else { $(dialog_id).find('.allnewfiles').prop('checked', false); $(dialog_id).find('.allnewfiles + .count').text(''); @@ -446,10 +446,10 @@ var OCdialogs = { var count = $(dialog_id).find('.conflict .original input[type="checkbox"]:checked').length; if (count === $(dialog_id+ ' .conflict').length) { $(dialog_id).find('.allexistingfiles').prop('checked', true); - $(dialog_id).find('.allexistingfiles + .count').text(t('files','(all selected)')); + $(dialog_id).find('.allexistingfiles + .count').text(t('core','(all selected)')); } else if (count > 0) { $(dialog_id).find('.allexistingfiles').prop('checked', false); - $(dialog_id).find('.allexistingfiles + .count').text(t('files','({count} selected)',{count:count})); + $(dialog_id).find('.allexistingfiles + .count').text(t('core','({count} selected)',{count:count})); } else { $(dialog_id).find('.allexistingfiles').prop('checked', false); $(dialog_id).find('.allexistingfiles + .count').text(''); -- GitLab From 647abe512b051f6c576fa5da8171342c746f7077 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Mon, 7 Apr 2014 14:04:16 +0200 Subject: [PATCH 241/296] reduce code duplication, fix parse error, prevent page reload on hitting enter while changing the display name - refs #8085 --- .jshintrc | 3 +- core/js/core.json | 3 +- lib/base.php | 1 + settings/js/personal.js | 97 ++++++++++++++++++++--------------------- 4 files changed, 52 insertions(+), 52 deletions(-) diff --git a/.jshintrc b/.jshintrc index 9faacfce1b9..0692d72e88a 100644 --- a/.jshintrc +++ b/.jshintrc @@ -23,6 +23,7 @@ "beforeEach": true, "afterEach": true, "sinon": true, - "fakeServer": true + "fakeServer": true, + "_": true } } diff --git a/core/js/core.json b/core/js/core.json index 665e2485a90..05c2a17a679 100644 --- a/core/js/core.json +++ b/core/js/core.json @@ -6,7 +6,8 @@ "jquery-showpassword.js", "jquery.infieldlabel.js", "jquery.placeholder.js", - "jquery-tipsy.js" + "jquery-tipsy.js", + "underscore.js" ], "modules": [ "compatibility.js", diff --git a/lib/base.php b/lib/base.php index 15a3ec8bc8a..6ea77aa7a58 100644 --- a/lib/base.php +++ b/lib/base.php @@ -305,6 +305,7 @@ class OC { OC_Util::addScript("jquery.placeholder"); OC_Util::addScript("jquery-tipsy"); OC_Util::addScript("compatibility"); + OC_Util::addScript("underscore"); OC_Util::addScript("jquery.ocdialog"); OC_Util::addScript("oc-dialogs"); OC_Util::addScript("js"); diff --git a/settings/js/personal.js b/settings/js/personal.js index f502037cfda..dda0c98518f 100644 --- a/settings/js/personal.js +++ b/settings/js/personal.js @@ -5,6 +5,36 @@ * See the COPYING-README file. */ +/* global OC, t */ + +/** + * The callback will be fired as soon as enter is pressed by the + * user or 1 second after the last data entry + * + * @param callback + */ +jQuery.fn.keyUpDelayedOrEnter = function(callback){ + var cb = callback; + var that = this; + this.keyup(_.debounce(function (event) { + // enter is already handled in keypress + if(event.keyCode === 13) { + return; + } + if (that.val() !== '') { + cb(); + } + }, 1000)); + + this.keypress(function () { + if (event.keyCode === 13 && that.val() !== '' ){ + event.preventDefault(); + cb(); + } + }); +}; + + /** * Post the email address change to the server. */ @@ -42,13 +72,12 @@ function changeDisplayName(){ } OC.msg.finishedSaving('#displaynameform .msg', data); }); - return false; } } function updateAvatar (hidedefault) { - $headerdiv = $('#header .avatardiv'); - $displaydiv = $('#displayavatar .avatardiv'); + var $headerdiv = $('#header .avatardiv'); + var $displaydiv = $('#displayavatar .avatardiv'); if(hidedefault) { $headerdiv.hide(); @@ -65,11 +94,12 @@ function updateAvatar (hidedefault) { } function showAvatarCropper() { - $cropper = $('#cropper'); + var $cropper = $('#cropper'); $cropper.prepend(""); - $cropperImage = $('#cropper img'); + var $cropperImage = $('#cropper img'); - $cropperImage.attr('src', OC.generateUrl('/avatar/tmp')+'?requesttoken='+oc_requesttoken+'#'+Math.floor(Math.random()*1000)); + $cropperImage.attr('src', + OC.generateUrl('/avatar/tmp')+'?requesttoken='+oc_requesttoken+'#'+Math.floor(Math.random()*1000)); // Looks weird, but on('load', ...) doesn't work in IE8 $cropperImage.ready(function(){ @@ -90,12 +120,12 @@ function showAvatarCropper() { function sendCropData() { cleanCropper(); - var cropperdata = $('#cropper').data(); + var cropperData = $('#cropper').data(); var data = { - x: cropperdata.x, - y: cropperdata.y, - w: cropperdata.w, - h: cropperdata.h + x: cropperData.x, + y: cropperData.y, + w: cropperData.w, + h: cropperData.h }; $.post(OC.generateUrl('/avatar/cropped'), {crop: data}, avatarResponseHandler); } @@ -105,7 +135,7 @@ function saveCoords(c) { } function cleanCropper() { - $cropper = $('#cropper'); + var $cropper = $('#cropper'); $('#displayavatar').show(); $cropper.hide(); $('.jcrop-holder').remove(); @@ -114,7 +144,7 @@ function cleanCropper() { } function avatarResponseHandler(data) { - $warning = $('#avatar .warning'); + var $warning = $('#avatar .warning'); $warning.hide(); if (data.status === "success") { updateAvatar(); @@ -157,41 +187,8 @@ $(document).ready(function(){ }); - $('#displayName').keyup(function(){ - if ($('#displayName').val() !== '' ){ - if(typeof timeout !== 'undefined'){ - clearTimeout(timeout); - } - timeout = setTimeout(changeDisplayName, 1000); - } - }); - - - $('#email').keyup(function(event){ - if ($('#email').val() !== '' ){ - // if this is the enter key changeEmailAddress() is already invoked - // so it doesn't need to be triggered again - if(event.keyCode === 13) { - return; - } - if(typeof timeout !== 'undefined'){ - clearTimeout(timeout); - } - timeout = setTimeout(changeEmailAddress, 1000); - } - }); - - $('#email').keypress(function(event){ - // check for enter key and non empty email - if (event.keyCode === 13 && $('#email').val() !== '' ){ - event.preventDefault() - // clear timeout of previous keyup event - prevents duplicate changeEmailAddress call - if(typeof timeout !== 'undefined'){ - clearTimeout(timeout); - } - changeEmailAddress(); - } - }); + $('#displayName').keyUpDelayedOrEnter(changeDisplayName); + $('#email').keyUpDelayedOrEnter(changeEmailAddress); $("#languageinput").change( function(){ // Serialize the data @@ -256,7 +253,7 @@ $(document).ready(function(){ $.ajax({ type: 'DELETE', url: OC.generateUrl('/avatar/'), - success: function(msg) { + success: function() { updateAvatar(true); $('#removeavatar').hide(); } @@ -321,7 +318,7 @@ OC.Encryption.msg={ }, finishedDecrypting:function(selector, data){ if( data.status === "success" ){ - $(selector).html( data.data.message ) + $(selector).html( data.data.message ) .addClass('success') .stop(true, true) .delay(3000); -- GitLab From b2f8490be28607241097ce385098c98fbd0ba208 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Mon, 7 Apr 2014 14:05:58 +0200 Subject: [PATCH 242/296] adding underscore.js --- core/js/underscore.js | 1344 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 1344 insertions(+) create mode 100644 core/js/underscore.js diff --git a/core/js/underscore.js b/core/js/underscore.js new file mode 100644 index 00000000000..ca61fdc3a4b --- /dev/null +++ b/core/js/underscore.js @@ -0,0 +1,1344 @@ +// Underscore.js 1.6.0 +// http://underscorejs.org +// (c) 2009-2014 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors +// Underscore may be freely distributed under the MIT license. + +(function() { + + // Baseline setup + // -------------- + + // Establish the root object, `window` in the browser, or `exports` on the server. + var root = this; + + // Save the previous value of the `_` variable. + var previousUnderscore = root._; + + // Establish the object that gets returned to break out of a loop iteration. + var breaker = {}; + + // Save bytes in the minified (but not gzipped) version: + var ArrayProto = Array.prototype, ObjProto = Object.prototype, FuncProto = Function.prototype; + + // Create quick reference variables for speed access to core prototypes. + var + push = ArrayProto.push, + slice = ArrayProto.slice, + concat = ArrayProto.concat, + toString = ObjProto.toString, + hasOwnProperty = ObjProto.hasOwnProperty; + + // All **ECMAScript 5** native function implementations that we hope to use + // are declared here. + var + nativeForEach = ArrayProto.forEach, + nativeMap = ArrayProto.map, + nativeReduce = ArrayProto.reduce, + nativeReduceRight = ArrayProto.reduceRight, + nativeFilter = ArrayProto.filter, + nativeEvery = ArrayProto.every, + nativeSome = ArrayProto.some, + nativeIndexOf = ArrayProto.indexOf, + nativeLastIndexOf = ArrayProto.lastIndexOf, + nativeIsArray = Array.isArray, + nativeKeys = Object.keys, + nativeBind = FuncProto.bind; + + // Create a safe reference to the Underscore object for use below. + var _ = function(obj) { + if (obj instanceof _) return obj; + if (!(this instanceof _)) return new _(obj); + this._wrapped = obj; + }; + + // Export the Underscore object for **Node.js**, with + // backwards-compatibility for the old `require()` API. If we're in + // the browser, add `_` as a global object via a string identifier, + // for Closure Compiler "advanced" mode. + if (typeof exports !== 'undefined') { + if (typeof module !== 'undefined' && module.exports) { + exports = module.exports = _; + } + exports._ = _; + } else { + root._ = _; + } + + // Current version. + _.VERSION = '1.6.0'; + + // Collection Functions + // -------------------- + + // The cornerstone, an `each` implementation, aka `forEach`. + // Handles objects with the built-in `forEach`, arrays, and raw objects. + // Delegates to **ECMAScript 5**'s native `forEach` if available. + var each = _.each = _.forEach = function(obj, iterator, context) { + if (obj == null) return obj; + if (nativeForEach && obj.forEach === nativeForEach) { + obj.forEach(iterator, context); + } else if (obj.length === +obj.length) { + for (var i = 0, length = obj.length; i < length; i++) { + if (iterator.call(context, obj[i], i, obj) === breaker) return; + } + } else { + var keys = _.keys(obj); + for (var i = 0, length = keys.length; i < length; i++) { + if (iterator.call(context, obj[keys[i]], keys[i], obj) === breaker) return; + } + } + return obj; + }; + + // Return the results of applying the iterator to each element. + // Delegates to **ECMAScript 5**'s native `map` if available. + _.map = _.collect = function(obj, iterator, context) { + var results = []; + if (obj == null) return results; + if (nativeMap && obj.map === nativeMap) return obj.map(iterator, context); + each(obj, function(value, index, list) { + results.push(iterator.call(context, value, index, list)); + }); + return results; + }; + + var reduceError = 'Reduce of empty array with no initial value'; + + // **Reduce** builds up a single result from a list of values, aka `inject`, + // or `foldl`. Delegates to **ECMAScript 5**'s native `reduce` if available. + _.reduce = _.foldl = _.inject = function(obj, iterator, memo, context) { + var initial = arguments.length > 2; + if (obj == null) obj = []; + if (nativeReduce && obj.reduce === nativeReduce) { + if (context) iterator = _.bind(iterator, context); + return initial ? obj.reduce(iterator, memo) : obj.reduce(iterator); + } + each(obj, function(value, index, list) { + if (!initial) { + memo = value; + initial = true; + } else { + memo = iterator.call(context, memo, value, index, list); + } + }); + if (!initial) throw new TypeError(reduceError); + return memo; + }; + + // The right-associative version of reduce, also known as `foldr`. + // Delegates to **ECMAScript 5**'s native `reduceRight` if available. + _.reduceRight = _.foldr = function(obj, iterator, memo, context) { + var initial = arguments.length > 2; + if (obj == null) obj = []; + if (nativeReduceRight && obj.reduceRight === nativeReduceRight) { + if (context) iterator = _.bind(iterator, context); + return initial ? obj.reduceRight(iterator, memo) : obj.reduceRight(iterator); + } + var length = obj.length; + if (length !== +length) { + var keys = _.keys(obj); + length = keys.length; + } + each(obj, function(value, index, list) { + index = keys ? keys[--length] : --length; + if (!initial) { + memo = obj[index]; + initial = true; + } else { + memo = iterator.call(context, memo, obj[index], index, list); + } + }); + if (!initial) throw new TypeError(reduceError); + return memo; + }; + + // Return the first value which passes a truth test. Aliased as `detect`. + _.find = _.detect = function(obj, predicate, context) { + var result; + any(obj, function(value, index, list) { + if (predicate.call(context, value, index, list)) { + result = value; + return true; + } + }); + return result; + }; + + // Return all the elements that pass a truth test. + // Delegates to **ECMAScript 5**'s native `filter` if available. + // Aliased as `select`. + _.filter = _.select = function(obj, predicate, context) { + var results = []; + if (obj == null) return results; + if (nativeFilter && obj.filter === nativeFilter) return obj.filter(predicate, context); + each(obj, function(value, index, list) { + if (predicate.call(context, value, index, list)) results.push(value); + }); + return results; + }; + + // Return all the elements for which a truth test fails. + _.reject = function(obj, predicate, context) { + return _.filter(obj, function(value, index, list) { + return !predicate.call(context, value, index, list); + }, context); + }; + + // Determine whether all of the elements match a truth test. + // Delegates to **ECMAScript 5**'s native `every` if available. + // Aliased as `all`. + _.every = _.all = function(obj, predicate, context) { + predicate || (predicate = _.identity); + var result = true; + if (obj == null) return result; + if (nativeEvery && obj.every === nativeEvery) return obj.every(predicate, context); + each(obj, function(value, index, list) { + if (!(result = result && predicate.call(context, value, index, list))) return breaker; + }); + return !!result; + }; + + // Determine if at least one element in the object matches a truth test. + // Delegates to **ECMAScript 5**'s native `some` if available. + // Aliased as `any`. + var any = _.some = _.any = function(obj, predicate, context) { + predicate || (predicate = _.identity); + var result = false; + if (obj == null) return result; + if (nativeSome && obj.some === nativeSome) return obj.some(predicate, context); + each(obj, function(value, index, list) { + if (result || (result = predicate.call(context, value, index, list))) return breaker; + }); + return !!result; + }; + + // Determine if the array or object contains a given value (using `===`). + // Aliased as `include`. + _.contains = _.include = function(obj, target) { + if (obj == null) return false; + if (nativeIndexOf && obj.indexOf === nativeIndexOf) return obj.indexOf(target) != -1; + return any(obj, function(value) { + return value === target; + }); + }; + + // Invoke a method (with arguments) on every item in a collection. + _.invoke = function(obj, method) { + var args = slice.call(arguments, 2); + var isFunc = _.isFunction(method); + return _.map(obj, function(value) { + return (isFunc ? method : value[method]).apply(value, args); + }); + }; + + // Convenience version of a common use case of `map`: fetching a property. + _.pluck = function(obj, key) { + return _.map(obj, _.property(key)); + }; + + // Convenience version of a common use case of `filter`: selecting only objects + // containing specific `key:value` pairs. + _.where = function(obj, attrs) { + return _.filter(obj, _.matches(attrs)); + }; + + // Convenience version of a common use case of `find`: getting the first object + // containing specific `key:value` pairs. + _.findWhere = function(obj, attrs) { + return _.find(obj, _.matches(attrs)); + }; + + // Return the maximum element or (element-based computation). + // Can't optimize arrays of integers longer than 65,535 elements. + // See [WebKit Bug 80797](https://bugs.webkit.org/show_bug.cgi?id=80797) + _.max = function(obj, iterator, context) { + if (!iterator && _.isArray(obj) && obj[0] === +obj[0] && obj.length < 65535) { + return Math.max.apply(Math, obj); + } + var result = -Infinity, lastComputed = -Infinity; + each(obj, function(value, index, list) { + var computed = iterator ? iterator.call(context, value, index, list) : value; + if (computed > lastComputed) { + result = value; + lastComputed = computed; + } + }); + return result; + }; + + // Return the minimum element (or element-based computation). + _.min = function(obj, iterator, context) { + if (!iterator && _.isArray(obj) && obj[0] === +obj[0] && obj.length < 65535) { + return Math.min.apply(Math, obj); + } + var result = Infinity, lastComputed = Infinity; + each(obj, function(value, index, list) { + var computed = iterator ? iterator.call(context, value, index, list) : value; + if (computed < lastComputed) { + result = value; + lastComputed = computed; + } + }); + return result; + }; + + // Shuffle an array, using the modern version of the + // [Fisher-Yates shuffle](http://en.wikipedia.org/wiki/Fisher–Yates_shuffle). + _.shuffle = function(obj) { + var rand; + var index = 0; + var shuffled = []; + each(obj, function(value) { + rand = _.random(index++); + shuffled[index - 1] = shuffled[rand]; + shuffled[rand] = value; + }); + return shuffled; + }; + + // Sample **n** random values from a collection. + // If **n** is not specified, returns a single random element. + // The internal `guard` argument allows it to work with `map`. + _.sample = function(obj, n, guard) { + if (n == null || guard) { + if (obj.length !== +obj.length) obj = _.values(obj); + return obj[_.random(obj.length - 1)]; + } + return _.shuffle(obj).slice(0, Math.max(0, n)); + }; + + // An internal function to generate lookup iterators. + var lookupIterator = function(value) { + if (value == null) return _.identity; + if (_.isFunction(value)) return value; + return _.property(value); + }; + + // Sort the object's values by a criterion produced by an iterator. + _.sortBy = function(obj, iterator, context) { + iterator = lookupIterator(iterator); + return _.pluck(_.map(obj, function(value, index, list) { + return { + value: value, + index: index, + criteria: iterator.call(context, value, index, list) + }; + }).sort(function(left, right) { + var a = left.criteria; + var b = right.criteria; + if (a !== b) { + if (a > b || a === void 0) return 1; + if (a < b || b === void 0) return -1; + } + return left.index - right.index; + }), 'value'); + }; + + // An internal function used for aggregate "group by" operations. + var group = function(behavior) { + return function(obj, iterator, context) { + var result = {}; + iterator = lookupIterator(iterator); + each(obj, function(value, index) { + var key = iterator.call(context, value, index, obj); + behavior(result, key, value); + }); + return result; + }; + }; + + // Groups the object's values by a criterion. Pass either a string attribute + // to group by, or a function that returns the criterion. + _.groupBy = group(function(result, key, value) { + _.has(result, key) ? result[key].push(value) : result[key] = [value]; + }); + + // Indexes the object's values by a criterion, similar to `groupBy`, but for + // when you know that your index values will be unique. + _.indexBy = group(function(result, key, value) { + result[key] = value; + }); + + // Counts instances of an object that group by a certain criterion. Pass + // either a string attribute to count by, or a function that returns the + // criterion. + _.countBy = group(function(result, key) { + _.has(result, key) ? result[key]++ : result[key] = 1; + }); + + // Use a comparator function to figure out the smallest index at which + // an object should be inserted so as to maintain order. Uses binary search. + _.sortedIndex = function(array, obj, iterator, context) { + iterator = lookupIterator(iterator); + var value = iterator.call(context, obj); + var low = 0, high = array.length; + while (low < high) { + var mid = (low + high) >>> 1; + iterator.call(context, array[mid]) < value ? low = mid + 1 : high = mid; + } + return low; + }; + + // Safely create a real, live array from anything iterable. + _.toArray = function(obj) { + if (!obj) return []; + if (_.isArray(obj)) return slice.call(obj); + if (obj.length === +obj.length) return _.map(obj, _.identity); + return _.values(obj); + }; + + // Return the number of elements in an object. + _.size = function(obj) { + if (obj == null) return 0; + return (obj.length === +obj.length) ? obj.length : _.keys(obj).length; + }; + + // Array Functions + // --------------- + + // Get the first element of an array. Passing **n** will return the first N + // values in the array. Aliased as `head` and `take`. The **guard** check + // allows it to work with `_.map`. + _.first = _.head = _.take = function(array, n, guard) { + if (array == null) return void 0; + if ((n == null) || guard) return array[0]; + if (n < 0) return []; + return slice.call(array, 0, n); + }; + + // Returns everything but the last entry of the array. Especially useful on + // the arguments object. Passing **n** will return all the values in + // the array, excluding the last N. The **guard** check allows it to work with + // `_.map`. + _.initial = function(array, n, guard) { + return slice.call(array, 0, array.length - ((n == null) || guard ? 1 : n)); + }; + + // Get the last element of an array. Passing **n** will return the last N + // values in the array. The **guard** check allows it to work with `_.map`. + _.last = function(array, n, guard) { + if (array == null) return void 0; + if ((n == null) || guard) return array[array.length - 1]; + return slice.call(array, Math.max(array.length - n, 0)); + }; + + // Returns everything but the first entry of the array. Aliased as `tail` and `drop`. + // Especially useful on the arguments object. Passing an **n** will return + // the rest N values in the array. The **guard** + // check allows it to work with `_.map`. + _.rest = _.tail = _.drop = function(array, n, guard) { + return slice.call(array, (n == null) || guard ? 1 : n); + }; + + // Trim out all falsy values from an array. + _.compact = function(array) { + return _.filter(array, _.identity); + }; + + // Internal implementation of a recursive `flatten` function. + var flatten = function(input, shallow, output) { + if (shallow && _.every(input, _.isArray)) { + return concat.apply(output, input); + } + each(input, function(value) { + if (_.isArray(value) || _.isArguments(value)) { + shallow ? push.apply(output, value) : flatten(value, shallow, output); + } else { + output.push(value); + } + }); + return output; + }; + + // Flatten out an array, either recursively (by default), or just one level. + _.flatten = function(array, shallow) { + return flatten(array, shallow, []); + }; + + // Return a version of the array that does not contain the specified value(s). + _.without = function(array) { + return _.difference(array, slice.call(arguments, 1)); + }; + + // Split an array into two arrays: one whose elements all satisfy the given + // predicate, and one whose elements all do not satisfy the predicate. + _.partition = function(array, predicate, context) { + predicate = lookupIterator(predicate); + var pass = [], fail = []; + each(array, function(elem) { + (predicate.call(context, elem) ? pass : fail).push(elem); + }); + return [pass, fail]; + }; + + // Produce a duplicate-free version of the array. If the array has already + // been sorted, you have the option of using a faster algorithm. + // Aliased as `unique`. + _.uniq = _.unique = function(array, isSorted, iterator, context) { + if (_.isFunction(isSorted)) { + context = iterator; + iterator = isSorted; + isSorted = false; + } + var initial = iterator ? _.map(array, iterator, context) : array; + var results = []; + var seen = []; + each(initial, function(value, index) { + if (isSorted ? (!index || seen[seen.length - 1] !== value) : !_.contains(seen, value)) { + seen.push(value); + results.push(array[index]); + } + }); + return results; + }; + + // Produce an array that contains the union: each distinct element from all of + // the passed-in arrays. + _.union = function() { + return _.uniq(_.flatten(arguments, true)); + }; + + // Produce an array that contains every item shared between all the + // passed-in arrays. + _.intersection = function(array) { + var rest = slice.call(arguments, 1); + return _.filter(_.uniq(array), function(item) { + return _.every(rest, function(other) { + return _.contains(other, item); + }); + }); + }; + + // Take the difference between one array and a number of other arrays. + // Only the elements present in just the first array will remain. + _.difference = function(array) { + var rest = concat.apply(ArrayProto, slice.call(arguments, 1)); + return _.filter(array, function(value){ return !_.contains(rest, value); }); + }; + + // Zip together multiple lists into a single array -- elements that share + // an index go together. + _.zip = function() { + var length = _.max(_.pluck(arguments, 'length').concat(0)); + var results = new Array(length); + for (var i = 0; i < length; i++) { + results[i] = _.pluck(arguments, '' + i); + } + return results; + }; + + // Converts lists into objects. Pass either a single array of `[key, value]` + // pairs, or two parallel arrays of the same length -- one of keys, and one of + // the corresponding values. + _.object = function(list, values) { + if (list == null) return {}; + var result = {}; + for (var i = 0, length = list.length; i < length; i++) { + if (values) { + result[list[i]] = values[i]; + } else { + result[list[i][0]] = list[i][1]; + } + } + return result; + }; + + // If the browser doesn't supply us with indexOf (I'm looking at you, **MSIE**), + // we need this function. Return the position of the first occurrence of an + // item in an array, or -1 if the item is not included in the array. + // Delegates to **ECMAScript 5**'s native `indexOf` if available. + // If the array is large and already in sort order, pass `true` + // for **isSorted** to use binary search. + _.indexOf = function(array, item, isSorted) { + if (array == null) return -1; + var i = 0, length = array.length; + if (isSorted) { + if (typeof isSorted == 'number') { + i = (isSorted < 0 ? Math.max(0, length + isSorted) : isSorted); + } else { + i = _.sortedIndex(array, item); + return array[i] === item ? i : -1; + } + } + if (nativeIndexOf && array.indexOf === nativeIndexOf) return array.indexOf(item, isSorted); + for (; i < length; i++) if (array[i] === item) return i; + return -1; + }; + + // Delegates to **ECMAScript 5**'s native `lastIndexOf` if available. + _.lastIndexOf = function(array, item, from) { + if (array == null) return -1; + var hasIndex = from != null; + if (nativeLastIndexOf && array.lastIndexOf === nativeLastIndexOf) { + return hasIndex ? array.lastIndexOf(item, from) : array.lastIndexOf(item); + } + var i = (hasIndex ? from : array.length); + while (i--) if (array[i] === item) return i; + return -1; + }; + + // Generate an integer Array containing an arithmetic progression. A port of + // the native Python `range()` function. See + // [the Python documentation](http://docs.python.org/library/functions.html#range). + _.range = function(start, stop, step) { + if (arguments.length <= 1) { + stop = start || 0; + start = 0; + } + step = arguments[2] || 1; + + var length = Math.max(Math.ceil((stop - start) / step), 0); + var idx = 0; + var range = new Array(length); + + while(idx < length) { + range[idx++] = start; + start += step; + } + + return range; + }; + + // Function (ahem) Functions + // ------------------ + + // Reusable constructor function for prototype setting. + var ctor = function(){}; + + // Create a function bound to a given object (assigning `this`, and arguments, + // optionally). Delegates to **ECMAScript 5**'s native `Function.bind` if + // available. + _.bind = function(func, context) { + var args, bound; + if (nativeBind && func.bind === nativeBind) return nativeBind.apply(func, slice.call(arguments, 1)); + if (!_.isFunction(func)) throw new TypeError; + args = slice.call(arguments, 2); + return bound = function() { + if (!(this instanceof bound)) return func.apply(context, args.concat(slice.call(arguments))); + ctor.prototype = func.prototype; + var self = new ctor; + ctor.prototype = null; + var result = func.apply(self, args.concat(slice.call(arguments))); + if (Object(result) === result) return result; + return self; + }; + }; + + // Partially apply a function by creating a version that has had some of its + // arguments pre-filled, without changing its dynamic `this` context. _ acts + // as a placeholder, allowing any combination of arguments to be pre-filled. + _.partial = function(func) { + var boundArgs = slice.call(arguments, 1); + return function() { + var position = 0; + var args = boundArgs.slice(); + for (var i = 0, length = args.length; i < length; i++) { + if (args[i] === _) args[i] = arguments[position++]; + } + while (position < arguments.length) args.push(arguments[position++]); + return func.apply(this, args); + }; + }; + + // Bind a number of an object's methods to that object. Remaining arguments + // are the method names to be bound. Useful for ensuring that all callbacks + // defined on an object belong to it. + _.bindAll = function(obj) { + var funcs = slice.call(arguments, 1); + if (funcs.length === 0) throw new Error('bindAll must be passed function names'); + each(funcs, function(f) { obj[f] = _.bind(obj[f], obj); }); + return obj; + }; + + // Memoize an expensive function by storing its results. + _.memoize = function(func, hasher) { + var memo = {}; + hasher || (hasher = _.identity); + return function() { + var key = hasher.apply(this, arguments); + return _.has(memo, key) ? memo[key] : (memo[key] = func.apply(this, arguments)); + }; + }; + + // Delays a function for the given number of milliseconds, and then calls + // it with the arguments supplied. + _.delay = function(func, wait) { + var args = slice.call(arguments, 2); + return setTimeout(function(){ return func.apply(null, args); }, wait); + }; + + // Defers a function, scheduling it to run after the current call stack has + // cleared. + _.defer = function(func) { + return _.delay.apply(_, [func, 1].concat(slice.call(arguments, 1))); + }; + + // Returns a function, that, when invoked, will only be triggered at most once + // during a given window of time. Normally, the throttled function will run + // as much as it can, without ever going more than once per `wait` duration; + // but if you'd like to disable the execution on the leading edge, pass + // `{leading: false}`. To disable execution on the trailing edge, ditto. + _.throttle = function(func, wait, options) { + var context, args, result; + var timeout = null; + var previous = 0; + options || (options = {}); + var later = function() { + previous = options.leading === false ? 0 : _.now(); + timeout = null; + result = func.apply(context, args); + context = args = null; + }; + return function() { + var now = _.now(); + if (!previous && options.leading === false) previous = now; + var remaining = wait - (now - previous); + context = this; + args = arguments; + if (remaining <= 0) { + clearTimeout(timeout); + timeout = null; + previous = now; + result = func.apply(context, args); + context = args = null; + } else if (!timeout && options.trailing !== false) { + timeout = setTimeout(later, remaining); + } + return result; + }; + }; + + // Returns a function, that, as long as it continues to be invoked, will not + // be triggered. The function will be called after it stops being called for + // N milliseconds. If `immediate` is passed, trigger the function on the + // leading edge, instead of the trailing. + _.debounce = function(func, wait, immediate) { + var timeout, args, context, timestamp, result; + + var later = function() { + var last = _.now() - timestamp; + if (last < wait) { + timeout = setTimeout(later, wait - last); + } else { + timeout = null; + if (!immediate) { + result = func.apply(context, args); + context = args = null; + } + } + }; + + return function() { + context = this; + args = arguments; + timestamp = _.now(); + var callNow = immediate && !timeout; + if (!timeout) { + timeout = setTimeout(later, wait); + } + if (callNow) { + result = func.apply(context, args); + context = args = null; + } + + return result; + }; + }; + + // Returns a function that will be executed at most one time, no matter how + // often you call it. Useful for lazy initialization. + _.once = function(func) { + var ran = false, memo; + return function() { + if (ran) return memo; + ran = true; + memo = func.apply(this, arguments); + func = null; + return memo; + }; + }; + + // Returns the first function passed as an argument to the second, + // allowing you to adjust arguments, run code before and after, and + // conditionally execute the original function. + _.wrap = function(func, wrapper) { + return _.partial(wrapper, func); + }; + + // Returns a function that is the composition of a list of functions, each + // consuming the return value of the function that follows. + _.compose = function() { + var funcs = arguments; + return function() { + var args = arguments; + for (var i = funcs.length - 1; i >= 0; i--) { + args = [funcs[i].apply(this, args)]; + } + return args[0]; + }; + }; + + // Returns a function that will only be executed after being called N times. + _.after = function(times, func) { + return function() { + if (--times < 1) { + return func.apply(this, arguments); + } + }; + }; + + // Object Functions + // ---------------- + + // Retrieve the names of an object's properties. + // Delegates to **ECMAScript 5**'s native `Object.keys` + _.keys = function(obj) { + if (!_.isObject(obj)) return []; + if (nativeKeys) return nativeKeys(obj); + var keys = []; + for (var key in obj) if (_.has(obj, key)) keys.push(key); + return keys; + }; + + // Retrieve the values of an object's properties. + _.values = function(obj) { + var keys = _.keys(obj); + var length = keys.length; + var values = new Array(length); + for (var i = 0; i < length; i++) { + values[i] = obj[keys[i]]; + } + return values; + }; + + // Convert an object into a list of `[key, value]` pairs. + _.pairs = function(obj) { + var keys = _.keys(obj); + var length = keys.length; + var pairs = new Array(length); + for (var i = 0; i < length; i++) { + pairs[i] = [keys[i], obj[keys[i]]]; + } + return pairs; + }; + + // Invert the keys and values of an object. The values must be serializable. + _.invert = function(obj) { + var result = {}; + var keys = _.keys(obj); + for (var i = 0, length = keys.length; i < length; i++) { + result[obj[keys[i]]] = keys[i]; + } + return result; + }; + + // Return a sorted list of the function names available on the object. + // Aliased as `methods` + _.functions = _.methods = function(obj) { + var names = []; + for (var key in obj) { + if (_.isFunction(obj[key])) names.push(key); + } + return names.sort(); + }; + + // Extend a given object with all the properties in passed-in object(s). + _.extend = function(obj) { + each(slice.call(arguments, 1), function(source) { + if (source) { + for (var prop in source) { + obj[prop] = source[prop]; + } + } + }); + return obj; + }; + + // Return a copy of the object only containing the whitelisted properties. + _.pick = function(obj) { + var copy = {}; + var keys = concat.apply(ArrayProto, slice.call(arguments, 1)); + each(keys, function(key) { + if (key in obj) copy[key] = obj[key]; + }); + return copy; + }; + + // Return a copy of the object without the blacklisted properties. + _.omit = function(obj) { + var copy = {}; + var keys = concat.apply(ArrayProto, slice.call(arguments, 1)); + for (var key in obj) { + if (!_.contains(keys, key)) copy[key] = obj[key]; + } + return copy; + }; + + // Fill in a given object with default properties. + _.defaults = function(obj) { + each(slice.call(arguments, 1), function(source) { + if (source) { + for (var prop in source) { + if (obj[prop] === void 0) obj[prop] = source[prop]; + } + } + }); + return obj; + }; + + // Create a (shallow-cloned) duplicate of an object. + _.clone = function(obj) { + if (!_.isObject(obj)) return obj; + return _.isArray(obj) ? obj.slice() : _.extend({}, obj); + }; + + // Invokes interceptor with the obj, and then returns obj. + // The primary purpose of this method is to "tap into" a method chain, in + // order to perform operations on intermediate results within the chain. + _.tap = function(obj, interceptor) { + interceptor(obj); + return obj; + }; + + // Internal recursive comparison function for `isEqual`. + var eq = function(a, b, aStack, bStack) { + // Identical objects are equal. `0 === -0`, but they aren't identical. + // See the [Harmony `egal` proposal](http://wiki.ecmascript.org/doku.php?id=harmony:egal). + if (a === b) return a !== 0 || 1 / a == 1 / b; + // A strict comparison is necessary because `null == undefined`. + if (a == null || b == null) return a === b; + // Unwrap any wrapped objects. + if (a instanceof _) a = a._wrapped; + if (b instanceof _) b = b._wrapped; + // Compare `[[Class]]` names. + var className = toString.call(a); + if (className != toString.call(b)) return false; + switch (className) { + // Strings, numbers, dates, and booleans are compared by value. + case '[object String]': + // Primitives and their corresponding object wrappers are equivalent; thus, `"5"` is + // equivalent to `new String("5")`. + return a == String(b); + case '[object Number]': + // `NaN`s are equivalent, but non-reflexive. An `egal` comparison is performed for + // other numeric values. + return a != +a ? b != +b : (a == 0 ? 1 / a == 1 / b : a == +b); + case '[object Date]': + case '[object Boolean]': + // Coerce dates and booleans to numeric primitive values. Dates are compared by their + // millisecond representations. Note that invalid dates with millisecond representations + // of `NaN` are not equivalent. + return +a == +b; + // RegExps are compared by their source patterns and flags. + case '[object RegExp]': + return a.source == b.source && + a.global == b.global && + a.multiline == b.multiline && + a.ignoreCase == b.ignoreCase; + } + if (typeof a != 'object' || typeof b != 'object') return false; + // Assume equality for cyclic structures. The algorithm for detecting cyclic + // structures is adapted from ES 5.1 section 15.12.3, abstract operation `JO`. + var length = aStack.length; + while (length--) { + // Linear search. Performance is inversely proportional to the number of + // unique nested structures. + if (aStack[length] == a) return bStack[length] == b; + } + // Objects with different constructors are not equivalent, but `Object`s + // from different frames are. + var aCtor = a.constructor, bCtor = b.constructor; + if (aCtor !== bCtor && !(_.isFunction(aCtor) && (aCtor instanceof aCtor) && + _.isFunction(bCtor) && (bCtor instanceof bCtor)) + && ('constructor' in a && 'constructor' in b)) { + return false; + } + // Add the first object to the stack of traversed objects. + aStack.push(a); + bStack.push(b); + var size = 0, result = true; + // Recursively compare objects and arrays. + if (className == '[object Array]') { + // Compare array lengths to determine if a deep comparison is necessary. + size = a.length; + result = size == b.length; + if (result) { + // Deep compare the contents, ignoring non-numeric properties. + while (size--) { + if (!(result = eq(a[size], b[size], aStack, bStack))) break; + } + } + } else { + // Deep compare objects. + for (var key in a) { + if (_.has(a, key)) { + // Count the expected number of properties. + size++; + // Deep compare each member. + if (!(result = _.has(b, key) && eq(a[key], b[key], aStack, bStack))) break; + } + } + // Ensure that both objects contain the same number of properties. + if (result) { + for (key in b) { + if (_.has(b, key) && !(size--)) break; + } + result = !size; + } + } + // Remove the first object from the stack of traversed objects. + aStack.pop(); + bStack.pop(); + return result; + }; + + // Perform a deep comparison to check if two objects are equal. + _.isEqual = function(a, b) { + return eq(a, b, [], []); + }; + + // Is a given array, string, or object empty? + // An "empty" object has no enumerable own-properties. + _.isEmpty = function(obj) { + if (obj == null) return true; + if (_.isArray(obj) || _.isString(obj)) return obj.length === 0; + for (var key in obj) if (_.has(obj, key)) return false; + return true; + }; + + // Is a given value a DOM element? + _.isElement = function(obj) { + return !!(obj && obj.nodeType === 1); + }; + + // Is a given value an array? + // Delegates to ECMA5's native Array.isArray + _.isArray = nativeIsArray || function(obj) { + return toString.call(obj) == '[object Array]'; + }; + + // Is a given variable an object? + _.isObject = function(obj) { + return obj === Object(obj); + }; + + // Add some isType methods: isArguments, isFunction, isString, isNumber, isDate, isRegExp. + each(['Arguments', 'Function', 'String', 'Number', 'Date', 'RegExp'], function(name) { + _['is' + name] = function(obj) { + return toString.call(obj) == '[object ' + name + ']'; + }; + }); + + // Define a fallback version of the method in browsers (ahem, IE), where + // there isn't any inspectable "Arguments" type. + if (!_.isArguments(arguments)) { + _.isArguments = function(obj) { + return !!(obj && _.has(obj, 'callee')); + }; + } + + // Optimize `isFunction` if appropriate. + if (typeof (/./) !== 'function') { + _.isFunction = function(obj) { + return typeof obj === 'function'; + }; + } + + // Is a given object a finite number? + _.isFinite = function(obj) { + return isFinite(obj) && !isNaN(parseFloat(obj)); + }; + + // Is the given value `NaN`? (NaN is the only number which does not equal itself). + _.isNaN = function(obj) { + return _.isNumber(obj) && obj != +obj; + }; + + // Is a given value a boolean? + _.isBoolean = function(obj) { + return obj === true || obj === false || toString.call(obj) == '[object Boolean]'; + }; + + // Is a given value equal to null? + _.isNull = function(obj) { + return obj === null; + }; + + // Is a given variable undefined? + _.isUndefined = function(obj) { + return obj === void 0; + }; + + // Shortcut function for checking if an object has a given property directly + // on itself (in other words, not on a prototype). + _.has = function(obj, key) { + return hasOwnProperty.call(obj, key); + }; + + // Utility Functions + // ----------------- + + // Run Underscore.js in *noConflict* mode, returning the `_` variable to its + // previous owner. Returns a reference to the Underscore object. + _.noConflict = function() { + root._ = previousUnderscore; + return this; + }; + + // Keep the identity function around for default iterators. + _.identity = function(value) { + return value; + }; + + _.constant = function(value) { + return function () { + return value; + }; + }; + + _.property = function(key) { + return function(obj) { + return obj[key]; + }; + }; + + // Returns a predicate for checking whether an object has a given set of `key:value` pairs. + _.matches = function(attrs) { + return function(obj) { + if (obj === attrs) return true; //avoid comparing an object to itself. + for (var key in attrs) { + if (attrs[key] !== obj[key]) + return false; + } + return true; + } + }; + + // Run a function **n** times. + _.times = function(n, iterator, context) { + var accum = Array(Math.max(0, n)); + for (var i = 0; i < n; i++) accum[i] = iterator.call(context, i); + return accum; + }; + + // Return a random integer between min and max (inclusive). + _.random = function(min, max) { + if (max == null) { + max = min; + min = 0; + } + return min + Math.floor(Math.random() * (max - min + 1)); + }; + + // A (possibly faster) way to get the current timestamp as an integer. + _.now = Date.now || function() { return new Date().getTime(); }; + + // List of HTML entities for escaping. + var entityMap = { + escape: { + '&': '&', + '<': '<', + '>': '>', + '"': '"', + "'": ''' + } + }; + entityMap.unescape = _.invert(entityMap.escape); + + // Regexes containing the keys and values listed immediately above. + var entityRegexes = { + escape: new RegExp('[' + _.keys(entityMap.escape).join('') + ']', 'g'), + unescape: new RegExp('(' + _.keys(entityMap.unescape).join('|') + ')', 'g') + }; + + // Functions for escaping and unescaping strings to/from HTML interpolation. + _.each(['escape', 'unescape'], function(method) { + _[method] = function(string) { + if (string == null) return ''; + return ('' + string).replace(entityRegexes[method], function(match) { + return entityMap[method][match]; + }); + }; + }); + + // If the value of the named `property` is a function then invoke it with the + // `object` as context; otherwise, return it. + _.result = function(object, property) { + if (object == null) return void 0; + var value = object[property]; + return _.isFunction(value) ? value.call(object) : value; + }; + + // Add your own custom functions to the Underscore object. + _.mixin = function(obj) { + each(_.functions(obj), function(name) { + var func = _[name] = obj[name]; + _.prototype[name] = function() { + var args = [this._wrapped]; + push.apply(args, arguments); + return result.call(this, func.apply(_, args)); + }; + }); + }; + + // Generate a unique integer id (unique within the entire client session). + // Useful for temporary DOM ids. + var idCounter = 0; + _.uniqueId = function(prefix) { + var id = ++idCounter + ''; + return prefix ? prefix + id : id; + }; + + // By default, Underscore uses ERB-style template delimiters, change the + // following template settings to use alternative delimiters. + _.templateSettings = { + evaluate : /<%([\s\S]+?)%>/g, + interpolate : /<%=([\s\S]+?)%>/g, + escape : /<%-([\s\S]+?)%>/g + }; + + // When customizing `templateSettings`, if you don't want to define an + // interpolation, evaluation or escaping regex, we need one that is + // guaranteed not to match. + var noMatch = /(.)^/; + + // Certain characters need to be escaped so that they can be put into a + // string literal. + var escapes = { + "'": "'", + '\\': '\\', + '\r': 'r', + '\n': 'n', + '\t': 't', + '\u2028': 'u2028', + '\u2029': 'u2029' + }; + + var escaper = /\\|'|\r|\n|\t|\u2028|\u2029/g; + + // JavaScript micro-templating, similar to John Resig's implementation. + // Underscore templating handles arbitrary delimiters, preserves whitespace, + // and correctly escapes quotes within interpolated code. + _.template = function(text, data, settings) { + var render; + settings = _.defaults({}, settings, _.templateSettings); + + // Combine delimiters into one regular expression via alternation. + var matcher = new RegExp([ + (settings.escape || noMatch).source, + (settings.interpolate || noMatch).source, + (settings.evaluate || noMatch).source + ].join('|') + '|$', 'g'); + + // Compile the template source, escaping string literals appropriately. + var index = 0; + var source = "__p+='"; + text.replace(matcher, function(match, escape, interpolate, evaluate, offset) { + source += text.slice(index, offset) + .replace(escaper, function(match) { return '\\' + escapes[match]; }); + + if (escape) { + source += "'+\n((__t=(" + escape + "))==null?'':_.escape(__t))+\n'"; + } + if (interpolate) { + source += "'+\n((__t=(" + interpolate + "))==null?'':__t)+\n'"; + } + if (evaluate) { + source += "';\n" + evaluate + "\n__p+='"; + } + index = offset + match.length; + return match; + }); + source += "';\n"; + + // If a variable is not specified, place data values in local scope. + if (!settings.variable) source = 'with(obj||{}){\n' + source + '}\n'; + + source = "var __t,__p='',__j=Array.prototype.join," + + "print=function(){__p+=__j.call(arguments,'');};\n" + + source + "return __p;\n"; + + try { + render = new Function(settings.variable || 'obj', '_', source); + } catch (e) { + e.source = source; + throw e; + } + + if (data) return render(data, _); + var template = function(data) { + return render.call(this, data, _); + }; + + // Provide the compiled function source as a convenience for precompilation. + template.source = 'function(' + (settings.variable || 'obj') + '){\n' + source + '}'; + + return template; + }; + + // Add a "chain" function, which will delegate to the wrapper. + _.chain = function(obj) { + return _(obj).chain(); + }; + + // OOP + // --------------- + // If Underscore is called as a function, it returns a wrapped object that + // can be used OO-style. This wrapper holds altered versions of all the + // underscore functions. Wrapped objects may be chained. + + // Helper function to continue chaining intermediate results. + var result = function(obj) { + return this._chain ? _(obj).chain() : obj; + }; + + // Add all of the Underscore functions to the wrapper object. + _.mixin(_); + + // Add all mutator Array functions to the wrapper. + each(['pop', 'push', 'reverse', 'shift', 'sort', 'splice', 'unshift'], function(name) { + var method = ArrayProto[name]; + _.prototype[name] = function() { + var obj = this._wrapped; + method.apply(obj, arguments); + if ((name == 'shift' || name == 'splice') && obj.length === 0) delete obj[0]; + return result.call(this, obj); + }; + }); + + // Add all accessor Array functions to the wrapper. + each(['concat', 'join', 'slice'], function(name) { + var method = ArrayProto[name]; + _.prototype[name] = function() { + return result.call(this, method.apply(this._wrapped, arguments)); + }; + }); + + _.extend(_.prototype, { + + // Start chaining a wrapped Underscore object. + chain: function() { + this._chain = true; + return this; + }, + + // Extracts the result from a wrapped and chained object. + value: function() { + return this._wrapped; + } + + }); + + // AMD registration happens at the end for compatibility with AMD loaders + // that may not enforce next-turn semantics on modules. Even though general + // practice for AMD registration is to be anonymous, underscore registers + // as a named module because, like jQuery, it is a base library that is + // popular enough to be bundled in a third party lib, but not be part of + // an AMD load request. Those cases could generate an error when an + // anonymous define() is called outside of a loader request. + if (typeof define === 'function' && define.amd) { + define('underscore', [], function() { + return _; + }); + } +}).call(this); -- GitLab From de07f25bc29abf7aa44cdfdb956f810b14d08d1b Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Mon, 7 Apr 2014 14:06:20 +0200 Subject: [PATCH 243/296] Use git checkout on directory as some files may not be in git resulting in, e.g.: error: pathspec 'tests/data/lorem-copy.txt' did not match any file(s) known to git. error: pathspec 'tests/data/testimage-copy.png' did not match any file(s) known to git. --- autotest.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autotest.sh b/autotest.sh index b88e9cf68b4..4030fc0250e 100755 --- a/autotest.sh +++ b/autotest.sh @@ -139,7 +139,7 @@ function execute_tests { cd $BASEDIR # revert changes to tests/data - git checkout tests/data/* + git checkout tests/data # reset data directory rm -rf $DATADIR -- GitLab From d7bc23e16d54ea1f3c24fc9ec2297f6dcd7d856b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Mon, 7 Apr 2014 14:31:43 +0200 Subject: [PATCH 244/296] adding ownCloud globals to jshintrc: OC, t, n --- .jshintrc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.jshintrc b/.jshintrc index 9faacfce1b9..02fbd84e6a8 100644 --- a/.jshintrc +++ b/.jshintrc @@ -23,6 +23,9 @@ "beforeEach": true, "afterEach": true, "sinon": true, - "fakeServer": true + "fakeServer": true, + "OC": true, + "t": true, + "n": true } } -- GitLab From 4253d63f9f79b2df9a259089ab5e1dba9cf1cf5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Mon, 7 Apr 2014 17:11:30 +0200 Subject: [PATCH 245/296] ignore underscore.js in scrutinizer.yml --- .scrutinizer.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.scrutinizer.yml b/.scrutinizer.yml index 0f529be3989..57b88568854 100644 --- a/.scrutinizer.yml +++ b/.scrutinizer.yml @@ -16,6 +16,7 @@ filter: - 'core/js/jquery-ui-1.10.0.custom.js' - 'core/js/jquery.inview.js' - 'core/js/jquery.placeholder.js' + - 'core/js/underscore.js' imports: -- GitLab From 3ac009c2b45e1980222e9a8b990b2f1b794c82a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Mon, 7 Apr 2014 20:18:57 +0200 Subject: [PATCH 246/296] unit tests for dynamic backend registration --- apps/files_external/lib/config.php | 52 ++++++--- .../tests/dynamicmountconfig.php | 103 ++++++++++++++++++ 2 files changed, 141 insertions(+), 14 deletions(-) create mode 100644 apps/files_external/tests/dynamicmountconfig.php diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index 242cdff911c..613f0b2609c 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -41,6 +41,11 @@ class OC_Mount_Config { private static $backends = array(); + /** + * @param string $class + * @param array $definition + * @return bool + */ public static function registerBackend($class, $definition) { if (!isset($definition['backend'])) { return false; @@ -50,6 +55,18 @@ class OC_Mount_Config { return true; } + /** + * Setup backends + * + * @return array of previously registered backends + */ + public static function setUp($backends = array()) { + $backup = self::$backends; + self::$backends = $backends; + + return $backup; + } + /** * Get details on each of the external storage backends, used for the mount config UI * If a custom UI is needed, add the key 'custom' and a javascript file with that name will be loaded @@ -57,28 +74,32 @@ class OC_Mount_Config { * If the configuration parameter is a boolean, add a '!' to the beginning of the value * If the configuration parameter is optional, add a '&' to the beginning of the value * If the configuration parameter is hidden, add a '#' to the beginning of the value - * @return string + * @return array */ public static function getBackends() { $sortFunc = function($a, $b) { return strcasecmp($a['backend'], $b['backend']); }; + $backEnds = array(); + foreach (OC_Mount_Config::$backends as $class => $backend) { if (isset($backend['has_dependencies']) and $backend['has_dependencies'] === true) { if (!method_exists($class, 'checkDependencies')) { - \OCP\Util::writeLog('files_external', "Backend class $class has dependencies but doesn't provide method checkDependencies()", \OCP\Util::DEBUG); + \OCP\Util::writeLog('files_external', + "Backend class $class has dependencies but doesn't provide method checkDependencies()", + \OCP\Util::DEBUG); continue; } elseif ($class::checkDependencies() !== true) { continue; } } - $backends[$class] = $backend; + $backEnds[$class] = $backend; } - uasort($backends, $sortFunc); + uasort($backEnds, $sortFunc); - return $backends; + return $backEnds; } /** @@ -185,19 +206,19 @@ class OC_Mount_Config { */ public static function getPersonalBackends() { - $backends = self::getBackends(); + $backEnds = self::getBackends(); // Remove local storage and other disabled storages - unset($backends['\OC\Files\Storage\Local']); + unset($backEnds['\OC\Files\Storage\Local']); - $allowed_backends = explode(',', OCP\Config::getAppValue('files_external', 'user_mounting_backends', '')); - foreach ($backends as $backend => $null) { - if (!in_array($backend, $allowed_backends)) { - unset($backends[$backend]); + $allowedBackEnds = explode(',', OCP\Config::getAppValue('files_external', 'user_mounting_backends', '')); + foreach ($backEnds as $backend => $null) { + if (!in_array($backend, $allowedBackEnds)) { + unset($backEnds[$backend]); } } - return $backends; + return $backEnds; } /** @@ -280,7 +301,7 @@ class OC_Mount_Config { */ public static function getPersonalMountPoints() { $mountPoints = self::readData(true); - $backends = self::getBackends(); + $backEnds = self::getBackends(); $uid = OCP\User::getUser(); $personal = array(); if (isset($mountPoints[self::MOUNT_TYPE_USER][$uid])) { @@ -294,7 +315,7 @@ class OC_Mount_Config { 'class' => $mount['class'], // Remove '/uid/files/' from mount point 'mountpoint' => substr($mountPoint, strlen($uid) + 8), - 'backend' => $backends[$mount['class']]['backend'], + 'backend' => $backEnds[$mount['class']]['backend'], 'options' => $mount['options'], 'status' => self::getBackendStatus($mount['class'], $mount['options'], true) ); @@ -529,6 +550,9 @@ class OC_Mount_Config { if (isset($backend['has_dependencies']) and $backend['has_dependencies'] === true) { $result = $class::checkDependencies(); if ($result !== true) { + if (!is_array($result)) { + $result = array($result); + } foreach ($result as $key => $value) { if (is_numeric($key)) { OC_Mount_Config::addDependency($dependencies, $value, $backend['backend']); diff --git a/apps/files_external/tests/dynamicmountconfig.php b/apps/files_external/tests/dynamicmountconfig.php new file mode 100644 index 00000000000..81a31e14c60 --- /dev/null +++ b/apps/files_external/tests/dynamicmountconfig.php @@ -0,0 +1,103 @@ + + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE + * License as published by the Free Software Foundation; either + * version 3 of the License, or any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU Affero General Public + * License along with this library. If not, see . + * + */ + +require_once __DIR__ . '/../../../lib/base.php'; + +require __DIR__ . '/../lib/config.php'; + +/** + * Class Test_Mount_Config_Dummy_Backend + */ +class Test_Mount_Config_Dummy_Backend { + public static $checkDependencies = true; + + public static function checkDependencies() { + return self::$checkDependencies; + } +} + +/** + * Class Test_Dynamic_Mount_Config + */ +class Test_Dynamic_Mount_Config extends \PHPUnit_Framework_TestCase { + + private $backup; + + public function testRegistration() { + + // second registration shall return false + $result = OC_Mount_Config::registerBackend('Test_Mount_Config_Dummy_Backend', array( + 'backend' => 'Test Dummy', + 'configuration' => array(), + 'has_dependencies' => true)); + + $this->assertTrue($result); + } + + public function testDependencyGetBackend() { + + // is the backend listed? + Test_Mount_Config_Dummy_Backend::$checkDependencies = true; + $backEnds = OC_Mount_Config::getBackends(); + $this->assertArrayHasKey('Test_Mount_Config_Dummy_Backend', $backEnds); + + // backend shall not be listed + Test_Mount_Config_Dummy_Backend::$checkDependencies = false; + + $backEnds = OC_Mount_Config::getBackends(); + $this->assertArrayNotHasKey('Test_Mount_Config_Dummy_Backend', $backEnds); + + } + + public function testCheckDependencies() { + + Test_Mount_Config_Dummy_Backend::$checkDependencies = true; + $message = OC_Mount_Config::checkDependencies(); + $this->assertEmpty($message); + + // backend shall not be listed + Test_Mount_Config_Dummy_Backend::$checkDependencies = array('dummy'); + + $message = OC_Mount_Config::checkDependencies(); + $this->assertEquals('
      Note: "dummy" is not installed. Mounting of Test Dummy is not possible. Please ask your system administrator to install it.', + $message); + + } + + protected function setUp() { + + $this->backup = OC_Mount_Config::setUp(); + + // register dummy backend + $result = OC_Mount_Config::registerBackend('Test_Mount_Config_Dummy_Backend', array( + 'backend' => 'Test Dummy', + 'configuration' => array(), + 'has_dependencies' => true)); + + $this->assertTrue($result); + } + + protected function tearDown() + { + OC_Mount_Config::setUp($this->backup); + } +} -- GitLab From 240d1ae6b9aa506de4c21e93258a17b23052ac5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Mon, 7 Apr 2014 20:56:43 +0200 Subject: [PATCH 247/296] unit test testSetAppValueIfSetToNull() added --- tests/lib/public/config.php | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 tests/lib/public/config.php diff --git a/tests/lib/public/config.php b/tests/lib/public/config.php new file mode 100644 index 00000000000..68367034e9a --- /dev/null +++ b/tests/lib/public/config.php @@ -0,0 +1,37 @@ +. + */ + +class Test_Config extends PHPUnit_Framework_TestCase +{ + + public function testSetAppValueIfSetToNull() { + + $key = uniqid("key-"); + + $result = \OCP\Config::setAppValue('unit-test', $key, null); + $this->assertTrue($result); + + $result = \OCP\Config::setAppValue('unit-test', $key, '12'); + $this->assertTrue($result); + + } + +} -- GitLab From 85e7921b149cf555e5c5f81837da5cd68696014a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Mon, 7 Apr 2014 20:57:08 +0200 Subject: [PATCH 248/296] fixing undefined exception classes --- lib/public/config.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/public/config.php b/lib/public/config.php index bb973939f44..8e3791b449b 100644 --- a/lib/public/config.php +++ b/lib/public/config.php @@ -64,7 +64,7 @@ class Config { public static function setSystemValue( $key, $value ) { try { \OC_Config::setValue( $key, $value ); - } catch (Exception $e) { + } catch (\Exception $e) { return false; } return true; @@ -96,7 +96,7 @@ class Config { public static function setAppValue( $app, $key, $value ) { try { \OC_Appconfig::setValue( $app, $key, $value ); - } catch (Exception $e) { + } catch (\Exception $e) { return false; } return true; @@ -131,7 +131,7 @@ class Config { public static function setUserValue( $user, $app, $key, $value ) { try { \OC_Preferences::setValue( $user, $app, $key, $value ); - } catch (Exception $e) { + } catch (\Exception $e) { return false; } return true; -- GitLab From c1fd3000484972b9eaca22831ca4cc441bde5cf2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Mon, 7 Apr 2014 21:05:48 +0200 Subject: [PATCH 249/296] using array_key_exists() instead of isset() - required because in case the value is null isset is returning false --- lib/private/appconfig.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/appconfig.php b/lib/private/appconfig.php index cfb84309c67..fed6989a438 100644 --- a/lib/private/appconfig.php +++ b/lib/private/appconfig.php @@ -147,7 +147,7 @@ class AppConfig implements \OCP\IAppConfig { */ public function hasKey($app, $key) { $values = $this->getAppValues($app); - return isset($values[$key]); + return array_key_exists($key, $values); } /** -- GitLab From 4ad4b9768cd8b7e1107de0f9a15c039486c9c793 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Tue, 8 Apr 2014 01:57:51 -0400 Subject: [PATCH 250/296] [tx-robot] updated from transifex --- apps/files/l10n/ast.php | 10 + apps/files/l10n/jv.php | 8 + apps/files/l10n/sk_SK.php | 5 + apps/files_external/l10n/ast.php | 5 + apps/files_external/l10n/et_EE.php | 2 + apps/files_trashbin/l10n/ast.php | 5 + apps/user_ldap/l10n/ast.php | 7 + apps/user_ldap/l10n/az.php | 6 +- apps/user_ldap/l10n/jv.php | 6 + core/l10n/ast.php | 34 ++ core/l10n/jv.php | 9 + core/l10n/sk_SK.php | 13 +- l10n/ach/core.po | 64 ++- l10n/ach/user_ldap.po | 51 +- l10n/ady/core.po | 64 ++- l10n/ady/user_ldap.po | 51 +- l10n/af/core.po | 64 ++- l10n/af/user_ldap.po | 51 +- l10n/af_ZA/core.po | 64 ++- l10n/af_ZA/user_ldap.po | 51 +- l10n/ak/core.po | 64 ++- l10n/ak/user_ldap.po | 51 +- l10n/am_ET/core.po | 64 ++- l10n/am_ET/user_ldap.po | 51 +- l10n/ar/core.po | 66 ++- l10n/ar/user_ldap.po | 53 +- l10n/ast/core.po | 809 +++++++++++++++++++++++++++ l10n/ast/files.po | 408 ++++++++++++++ l10n/ast/files_encryption.po | 201 +++++++ l10n/ast/files_external.po | 127 +++++ l10n/ast/files_sharing.po | 72 +++ l10n/ast/files_trashbin.po | 64 +++ l10n/ast/files_versions.po | 43 ++ l10n/ast/lib.po | 338 ++++++++++++ l10n/ast/settings.po | 824 ++++++++++++++++++++++++++++ l10n/ast/user_ldap.po | 534 ++++++++++++++++++ l10n/ast/user_webdavauth.po | 33 ++ l10n/az/core.po | 64 ++- l10n/az/user_ldap.po | 55 +- l10n/be/core.po | 64 ++- l10n/be/user_ldap.po | 51 +- l10n/bg_BG/core.po | 64 ++- l10n/bg_BG/user_ldap.po | 51 +- l10n/bn_BD/core.po | 64 ++- l10n/bn_BD/user_ldap.po | 51 +- l10n/bs/core.po | 64 ++- l10n/bs/user_ldap.po | 51 +- l10n/ca/core.po | 66 ++- l10n/ca/user_ldap.po | 53 +- l10n/cs_CZ/core.po | 66 ++- l10n/cs_CZ/user_ldap.po | 53 +- l10n/cy_GB/core.po | 64 ++- l10n/cy_GB/user_ldap.po | 51 +- l10n/da/core.po | 66 ++- l10n/da/user_ldap.po | 51 +- l10n/de/core.po | 66 ++- l10n/de/user_ldap.po | 53 +- l10n/de_AT/core.po | 64 ++- l10n/de_AT/user_ldap.po | 51 +- l10n/de_CH/core.po | 64 ++- l10n/de_CH/user_ldap.po | 51 +- l10n/de_DE/core.po | 66 ++- l10n/de_DE/user_ldap.po | 53 +- l10n/el/core.po | 52 +- l10n/el/user_ldap.po | 53 +- l10n/en@pirate/core.po | 64 ++- l10n/en@pirate/user_ldap.po | 51 +- l10n/en_GB/core.po | 66 ++- l10n/en_GB/user_ldap.po | 53 +- l10n/eo/core.po | 64 ++- l10n/eo/user_ldap.po | 51 +- l10n/es/core.po | 52 +- l10n/es/user_ldap.po | 53 +- l10n/es_AR/core.po | 64 ++- l10n/es_AR/user_ldap.po | 51 +- l10n/es_CL/core.po | 64 ++- l10n/es_CL/user_ldap.po | 51 +- l10n/es_MX/core.po | 64 ++- l10n/es_MX/user_ldap.po | 51 +- l10n/et_EE/core.po | 52 +- l10n/et_EE/files_external.po | 10 +- l10n/et_EE/user_ldap.po | 53 +- l10n/eu/core.po | 64 ++- l10n/eu/user_ldap.po | 51 +- l10n/eu_ES/core.po | 64 ++- l10n/eu_ES/user_ldap.po | 51 +- l10n/fa/core.po | 64 ++- l10n/fa/user_ldap.po | 51 +- l10n/fi_FI/core.po | 64 ++- l10n/fi_FI/user_ldap.po | 51 +- l10n/fr/core.po | 26 +- l10n/fr/user_ldap.po | 53 +- l10n/fr_CA/core.po | 64 ++- l10n/fr_CA/user_ldap.po | 51 +- l10n/gl/core.po | 66 ++- l10n/gl/user_ldap.po | 53 +- l10n/he/core.po | 64 ++- l10n/he/user_ldap.po | 51 +- l10n/hi/core.po | 64 ++- l10n/hi/user_ldap.po | 51 +- l10n/hr/core.po | 64 ++- l10n/hr/user_ldap.po | 51 +- l10n/hu_HU/core.po | 64 ++- l10n/hu_HU/user_ldap.po | 51 +- l10n/hy/core.po | 64 ++- l10n/hy/user_ldap.po | 51 +- l10n/ia/core.po | 64 ++- l10n/ia/user_ldap.po | 51 +- l10n/id/core.po | 64 ++- l10n/id/user_ldap.po | 51 +- l10n/is/core.po | 64 ++- l10n/is/user_ldap.po | 51 +- l10n/it/core.po | 66 ++- l10n/it/user_ldap.po | 53 +- l10n/ja/core.po | 26 +- l10n/ja/user_ldap.po | 53 +- l10n/jv/core.po | 809 +++++++++++++++++++++++++++ l10n/jv/files.po | 408 ++++++++++++++ l10n/jv/files_encryption.po | 201 +++++++ l10n/jv/files_external.po | 127 +++++ l10n/jv/files_sharing.po | 72 +++ l10n/jv/files_trashbin.po | 64 +++ l10n/jv/files_versions.po | 43 ++ l10n/jv/lib.po | 338 ++++++++++++ l10n/jv/settings.po | 824 ++++++++++++++++++++++++++++ l10n/jv/user_ldap.po | 534 ++++++++++++++++++ l10n/jv/user_webdavauth.po | 33 ++ l10n/ka_GE/core.po | 64 ++- l10n/ka_GE/user_ldap.po | 51 +- l10n/km/core.po | 64 ++- l10n/km/user_ldap.po | 51 +- l10n/kn/core.po | 64 ++- l10n/kn/user_ldap.po | 51 +- l10n/ko/core.po | 64 ++- l10n/ko/user_ldap.po | 51 +- l10n/ku_IQ/core.po | 64 ++- l10n/ku_IQ/user_ldap.po | 51 +- l10n/lb/core.po | 64 ++- l10n/lb/user_ldap.po | 51 +- l10n/lt_LT/core.po | 64 ++- l10n/lt_LT/user_ldap.po | 51 +- l10n/lv/core.po | 64 ++- l10n/lv/user_ldap.po | 51 +- l10n/mk/core.po | 64 ++- l10n/mk/user_ldap.po | 51 +- l10n/ml/core.po | 64 ++- l10n/ml/user_ldap.po | 51 +- l10n/ml_IN/core.po | 64 ++- l10n/ml_IN/user_ldap.po | 51 +- l10n/mn/core.po | 64 ++- l10n/mn/user_ldap.po | 51 +- l10n/ms_MY/core.po | 64 ++- l10n/ms_MY/user_ldap.po | 51 +- l10n/my_MM/core.po | 64 ++- l10n/my_MM/user_ldap.po | 51 +- l10n/nb_NO/core.po | 26 +- l10n/nb_NO/user_ldap.po | 51 +- l10n/nds/core.po | 64 ++- l10n/nds/user_ldap.po | 51 +- l10n/ne/core.po | 64 ++- l10n/ne/user_ldap.po | 51 +- l10n/nl/core.po | 66 ++- l10n/nl/user_ldap.po | 53 +- l10n/nn_NO/core.po | 64 ++- l10n/nn_NO/user_ldap.po | 51 +- l10n/nqo/core.po | 64 ++- l10n/nqo/user_ldap.po | 51 +- l10n/oc/core.po | 64 ++- l10n/oc/user_ldap.po | 51 +- l10n/pa/core.po | 64 ++- l10n/pa/user_ldap.po | 51 +- l10n/pl/core.po | 66 ++- l10n/pl/user_ldap.po | 53 +- l10n/pt_BR/core.po | 66 ++- l10n/pt_BR/user_ldap.po | 53 +- l10n/pt_PT/core.po | 64 ++- l10n/pt_PT/user_ldap.po | 51 +- l10n/ro/core.po | 64 ++- l10n/ro/user_ldap.po | 51 +- l10n/ru/core.po | 66 ++- l10n/ru/user_ldap.po | 51 +- l10n/si_LK/core.po | 64 ++- l10n/si_LK/user_ldap.po | 51 +- l10n/sk/core.po | 64 ++- l10n/sk/user_ldap.po | 51 +- l10n/sk_SK/core.po | 76 +-- l10n/sk_SK/files.po | 16 +- l10n/sk_SK/settings.po | 96 ++-- l10n/sk_SK/user_ldap.po | 51 +- l10n/sl/core.po | 52 +- l10n/sl/user_ldap.po | 53 +- l10n/sq/core.po | 64 ++- l10n/sq/user_ldap.po | 51 +- l10n/sr/core.po | 64 ++- l10n/sr/user_ldap.po | 51 +- l10n/sr@latin/core.po | 64 ++- l10n/sr@latin/user_ldap.po | 51 +- l10n/su/core.po | 64 ++- l10n/su/user_ldap.po | 51 +- l10n/sv/core.po | 26 +- l10n/sv/user_ldap.po | 53 +- l10n/sw_KE/core.po | 64 ++- l10n/sw_KE/user_ldap.po | 51 +- l10n/ta_LK/core.po | 64 ++- l10n/ta_LK/user_ldap.po | 51 +- l10n/te/core.po | 64 ++- l10n/te/user_ldap.po | 51 +- l10n/templates/core.pot | 22 +- 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 | 16 +- l10n/templates/user_ldap.pot | 49 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 64 ++- l10n/th_TH/user_ldap.po | 51 +- l10n/tr/core.po | 26 +- l10n/tr/user_ldap.po | 53 +- l10n/tzm/core.po | 64 ++- l10n/tzm/user_ldap.po | 51 +- l10n/ug/core.po | 64 ++- l10n/ug/user_ldap.po | 51 +- l10n/uk/core.po | 64 ++- l10n/uk/user_ldap.po | 51 +- l10n/ur/core.po | 64 ++- l10n/ur/user_ldap.po | 51 +- l10n/ur_PK/core.po | 64 ++- l10n/ur_PK/user_ldap.po | 51 +- l10n/uz/core.po | 64 ++- l10n/uz/user_ldap.po | 51 +- l10n/vi/core.po | 64 ++- l10n/vi/user_ldap.po | 51 +- l10n/zh_CN/core.po | 64 ++- l10n/zh_CN/user_ldap.po | 51 +- l10n/zh_HK/core.po | 64 ++- l10n/zh_HK/user_ldap.po | 51 +- l10n/zh_TW/core.po | 64 ++- l10n/zh_TW/user_ldap.po | 51 +- lib/l10n/ast.php | 9 + lib/l10n/jv.php | 8 + settings/l10n/ast.php | 7 + settings/l10n/jv.php | 5 + settings/l10n/sk_SK.php | 5 + 248 files changed, 13590 insertions(+), 4684 deletions(-) create mode 100644 apps/files/l10n/ast.php create mode 100644 apps/files/l10n/jv.php create mode 100644 apps/files_external/l10n/ast.php create mode 100644 apps/files_trashbin/l10n/ast.php create mode 100644 apps/user_ldap/l10n/ast.php create mode 100644 apps/user_ldap/l10n/jv.php create mode 100644 core/l10n/ast.php create mode 100644 core/l10n/jv.php create mode 100644 l10n/ast/core.po create mode 100644 l10n/ast/files.po create mode 100644 l10n/ast/files_encryption.po create mode 100644 l10n/ast/files_external.po create mode 100644 l10n/ast/files_sharing.po create mode 100644 l10n/ast/files_trashbin.po create mode 100644 l10n/ast/files_versions.po create mode 100644 l10n/ast/lib.po create mode 100644 l10n/ast/settings.po create mode 100644 l10n/ast/user_ldap.po create mode 100644 l10n/ast/user_webdavauth.po create mode 100644 l10n/jv/core.po create mode 100644 l10n/jv/files.po create mode 100644 l10n/jv/files_encryption.po create mode 100644 l10n/jv/files_external.po create mode 100644 l10n/jv/files_sharing.po create mode 100644 l10n/jv/files_trashbin.po create mode 100644 l10n/jv/files_versions.po create mode 100644 l10n/jv/lib.po create mode 100644 l10n/jv/settings.po create mode 100644 l10n/jv/user_ldap.po create mode 100644 l10n/jv/user_webdavauth.po create mode 100644 lib/l10n/ast.php create mode 100644 lib/l10n/jv.php create mode 100644 settings/l10n/ast.php create mode 100644 settings/l10n/jv.php diff --git a/apps/files/l10n/ast.php b/apps/files/l10n/ast.php new file mode 100644 index 00000000000..ba7ccfad2db --- /dev/null +++ b/apps/files/l10n/ast.php @@ -0,0 +1,10 @@ + "Compartir", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), +"_Uploading %n file_::_Uploading %n files_" => array("",""), +"Download" => "Descargar", +"Delete" => "Desaniciar" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/jv.php b/apps/files/l10n/jv.php new file mode 100644 index 00000000000..cfab5af7d1c --- /dev/null +++ b/apps/files/l10n/jv.php @@ -0,0 +1,8 @@ + array("",""), +"_%n file_::_%n files_" => array("",""), +"_Uploading %n file_::_Uploading %n files_" => array("",""), +"Download" => "Njipuk" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/sk_SK.php b/apps/files/l10n/sk_SK.php index 95c07afba57..cffb89c294d 100644 --- a/apps/files/l10n/sk_SK.php +++ b/apps/files/l10n/sk_SK.php @@ -3,7 +3,9 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Nie je možné presunúť %s - súbor s týmto menom už existuje", "Could not move %s" => "Nie je možné presunúť %s", "File name cannot be empty." => "Meno súboru nemôže byť prázdne", +"\"%s\" is an invalid file name." => "\"%s\" je neplatné meno súboru.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nesprávne meno, '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nie sú povolené hodnoty.", +"The target folder has been moved or deleted." => "Cieľový priečinok bol premiestnený alebo odstránený.", "The name %s is already used in the folder %s. Please choose a different name." => "Názov %s už používa priečinok s%. Prosím zvoľte iný názov.", "Not a valid source" => "Neplatný zdroj", "Server is not allowed to open URLs, please check the server configuration" => "Server nie je oprávnený otvárať adresy URL. Overte nastavenia servera.", @@ -27,6 +29,8 @@ $TRANSLATIONS = array( "Invalid directory." => "Neplatný priečinok.", "Files" => "Súbory", "Unable to upload {filename} as it is a directory or has 0 bytes" => "Nemožno nahrať súbor {filename}, pretože je to priečinok, alebo má 0 bitov", +"Total file size {size1} exceeds upload limit {size2}" => "Celková veľkosť súboru {size1} prekračuje upload limit {size2}", +"Not enough free space, you are uploading {size1} but only {size2} is left" => "Nie je dostatok voľného miesta, chcete nahrať {size1} ale k dispozíciji je len {size2}", "Upload cancelled." => "Odosielanie zrušené.", "Could not get result from server." => "Nepodarilo sa dostať výsledky zo servera.", "File upload is in progress. Leaving the page now will cancel the upload." => "Opustenie stránky zruší práve prebiehajúce odosielanie súboru.", @@ -48,6 +52,7 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array("%n súbor","%n súbory","%n súborov"), "{dirs} and {files}" => "{dirs} a {files}", "_Uploading %n file_::_Uploading %n files_" => array("Nahrávam %n súbor","Nahrávam %n súbory","Nahrávam %n súborov"), +"\"{name}\" is an invalid file name." => "\"{name}\" je neplatné meno súboru.", "Your storage is full, files can not be updated or synced anymore!" => "Vaše úložisko je plné. Súbory nemožno aktualizovať ani synchronizovať!", "Your storage is almost full ({usedSpacePercent}%)" => "Vaše úložisko je takmer plné ({usedSpacePercent}%)", "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Aplikácia na šifrovanie je zapnutá, ale vaše kľúče nie sú inicializované. Odhláste sa a znovu sa prihláste.", diff --git a/apps/files_external/l10n/ast.php b/apps/files_external/l10n/ast.php new file mode 100644 index 00000000000..e304b890f99 --- /dev/null +++ b/apps/files_external/l10n/ast.php @@ -0,0 +1,5 @@ + "Desaniciar" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/et_EE.php b/apps/files_external/l10n/et_EE.php index d3aa683673e..0ed0baa44f9 100644 --- a/apps/files_external/l10n/et_EE.php +++ b/apps/files_external/l10n/et_EE.php @@ -14,7 +14,9 @@ $TRANSLATIONS = array( "External storage" => "Väline andmehoidla", "Configuration" => "Seadistamine", "Options" => "Valikud", +"Available for" => "Saadaval", "Add storage" => "Lisa andmehoidla", +"No user or group" => "Ühtki kasutajat või gruppi", "All Users" => "Kõik kasutajad", "Groups" => "Grupid", "Users" => "Kasutajad", diff --git a/apps/files_trashbin/l10n/ast.php b/apps/files_trashbin/l10n/ast.php new file mode 100644 index 00000000000..e304b890f99 --- /dev/null +++ b/apps/files_trashbin/l10n/ast.php @@ -0,0 +1,5 @@ + "Desaniciar" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/ast.php b/apps/user_ldap/l10n/ast.php new file mode 100644 index 00000000000..9cd0d7e7c6d --- /dev/null +++ b/apps/user_ldap/l10n/ast.php @@ -0,0 +1,7 @@ + "Falló'l borráu", +"_%s group found_::_%s groups found_" => array("",""), +"_%s user found_::_%s users found_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/az.php b/apps/user_ldap/l10n/az.php index bba52d53a1a..3a1e002311c 100644 --- a/apps/user_ldap/l10n/az.php +++ b/apps/user_ldap/l10n/az.php @@ -1,6 +1,6 @@ array(""), -"_%s user found_::_%s users found_" => array("") +"_%s group found_::_%s groups found_" => array("",""), +"_%s user found_::_%s users found_" => array("","") ); -$PLURAL_FORMS = "nplurals=1; plural=0;"; +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/jv.php b/apps/user_ldap/l10n/jv.php new file mode 100644 index 00000000000..3a1e002311c --- /dev/null +++ b/apps/user_ldap/l10n/jv.php @@ -0,0 +1,6 @@ + array("",""), +"_%s user found_::_%s users found_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ast.php b/core/l10n/ast.php new file mode 100644 index 00000000000..57f7cdde791 --- /dev/null +++ b/core/l10n/ast.php @@ -0,0 +1,34 @@ + "Domingu", +"Monday" => "Llunes", +"Tuesday" => "Martes", +"Wednesday" => "Miércoles", +"Thursday" => "Xueves", +"Friday" => "Vienres", +"Saturday" => "Sábadu", +"January" => "Xineru", +"February" => "Febreru", +"March" => "Marzu", +"April" => "Abril", +"May" => "Mayu", +"June" => "Xunu", +"July" => "Xunetu", +"August" => "Agostu", +"September" => "Setiembre", +"October" => "Ochobre", +"November" => "Payares", +"December" => "Avientu", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("",""), +"_{count} file conflict_::_{count} file conflicts_" => array("",""), +"Share" => "Compartir", +"group" => "grupu", +"Unshare" => "Dexar de compartir", +"can edit" => "pue editar", +"Delete" => "Desaniciar", +"Personal" => "Personal" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/jv.php b/core/l10n/jv.php new file mode 100644 index 00000000000..ffcdde48d47 --- /dev/null +++ b/core/l10n/jv.php @@ -0,0 +1,9 @@ + array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("",""), +"_{count} file conflict_::_{count} file conflicts_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/sk_SK.php b/core/l10n/sk_SK.php index bb3c9863ce2..853118e7a62 100644 --- a/core/l10n/sk_SK.php +++ b/core/l10n/sk_SK.php @@ -1,5 +1,6 @@ " \t\nDátum expirácie spadá do minulosti.", "Couldn't send mail to following users: %s " => "Nebolo možné odoslať email týmto používateľom: %s ", "Turned on maintenance mode" => "Mód údržby je zapnutý", "Turned off maintenance mode" => "Mód údržby e vypnutý", @@ -56,6 +57,11 @@ $TRANSLATIONS = array( "(all selected)" => "(všetko vybrané)", "({count} selected)" => "({count} vybraných)", "Error loading file exists template" => "Chyba pri nahrávaní šablóny existencie súboru", +"Very weak password" => "Veľmi slabé heslo", +"Weak password" => "Slabé heslo", +"So-so password" => "Priemerné heslo", +"Good password" => "Dobré heslo", +"Strong password" => "Silné heslo", "Shared" => "Zdieľané", "Share" => "Zdieľať", "Error" => "Chyba", @@ -103,6 +109,7 @@ $TRANSLATIONS = array( "The update was unsuccessful. Please report this issue to the ownCloud community." => "Aktualizácia nebola úspešná. Problém nahláste ownCloud comunite.", "The update was successful. Redirecting you to ownCloud now." => "Aktualizácia bola úspešná. Presmerovávam vás na prihlasovaciu stránku.", "%s password reset" => "reset hesla %s", +"A problem has occurred whilst sending the email, please contact your administrator." => "Vyskytol sa problém pri odosielaní emailu, prosím obráťte sa na správcu.", "Use the following link to reset your password: {link}" => "Použite nasledujúci odkaz pre obnovenie vášho hesla: {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 ." => "Odkaz na obnovenie hesla bol odoslaný na vašu emailovú adresu.
      Ak ho v krátkej dobe neobdržíte, skontrolujte si váš kôš a priečinok spam.
      Ak ho ani tam nenájdete, kontaktujte svojho administrátora.", "Request failed!
      Did you make sure your email/username was right?" => "Požiadavka zlyhala.
      Uistili ste sa, že vaše používateľské meno a email sú správne?", @@ -115,6 +122,8 @@ $TRANSLATIONS = array( "To login page" => "Na prihlasovaciu stránku", "New password" => "Nové heslo", "Reset password" => "Obnovenie hesla", +"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Mac OS X nie je podporovaný a %s nebude správne fungovať na tejto platforme. Použite ho na vlastné riziko!", +"For the best results, please consider using a GNU/Linux server instead." => "Pre dosiahnutie najlepších výsledkov, prosím zvážte použitie GNU/Linux servera.", "Personal" => "Osobné", "Users" => "Používatelia", "Apps" => "Aplikácie", @@ -129,7 +138,7 @@ $TRANSLATIONS = array( "Error unfavoriting" => "Chyba pri odobratí z obľúbených", "Access forbidden" => "Prístup odmietnutý", "Cloud not found" => "Nenájdené", -"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Ahoj,\n\nchcem ti dať navedomie, že %s s tebou zdieľa %s.\nTu je odkaz: %s\n\n", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Dobrý deň,\n\nPoužívateľ %s zdieľa s vami súbor, alebo priečinok s názvom %s.\nPre zobrazenie kliknite na túto linku: %s\n", "The share will expire on %s." => "Zdieľanie expiruje %s.", "Cheers!" => "Pekný deň!", "Security Warning" => "Bezpečnostné varovanie", @@ -140,6 +149,7 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Váš priečinok s dátami a súbormi je dostupný z internetu, lebo súbor .htaccess nefunguje.", "For information how to properly configure your server, please see the documentation." => "Pre informácie, ako správne nastaviť váš server, sa pozrite do dokumentácie.", "Create an admin account" => "Vytvoriť administrátorský účet", +"Storage & database" => "Úložislo & databáza", "Data folder" => "Priečinok dát", "Configure the database" => "Nastaviť databázu", "will be used" => "bude použité", @@ -162,6 +172,7 @@ $TRANSLATIONS = array( "remember" => "zapamätať", "Log in" => "Prihlásiť sa", "Alternative Logins" => "Alternatívne prihlásenie", +"Hey there,

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

      " => "Dobrý deň,

      Používateľ %s zdieľa s vami súbor, alebo priečinok s názvom »%s«.
      Pre zobrazenie kliknite na túto linku!

      ", "This ownCloud instance is currently in single user mode." => "Táto inštancia ownCloudu je teraz v jednopoužívateľskom móde.", "This means only administrators can use the instance." => "Len správca systému môže používať túto inštanciu.", "Contact your system administrator if this message persists or appeared unexpectedly." => "Kontaktujte prosím správcu systému, ak sa táto správa objavuje opakovane alebo neočakávane.", diff --git a/l10n/ach/core.po b/l10n/ach/core.po index 3640708d6e3..ca25a26988f 100644 --- a/l10n/ach/core.po +++ b/l10n/ach/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -17,24 +17,24 @@ msgstr "" "Language: ach\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -134,63 +134,63 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "" -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "" @@ -229,32 +229,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -533,14 +541,14 @@ msgstr "" msgid "Reset password" msgstr "" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/ach/user_ldap.po b/l10n/ach/user_ldap.po index 8516b5a6fea..8ca354d2020 100644 --- a/l10n/ach/user_ldap.po +++ b/l10n/ach/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -419,41 +419,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -469,15 +480,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -488,19 +499,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -514,10 +525,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/ady/core.po b/l10n/ady/core.po index a686756ba93..3c1f515e05a 100644 --- a/l10n/ady/core.po +++ b/l10n/ady/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" "MIME-Version: 1.0\n" @@ -17,24 +17,24 @@ msgstr "" "Language: ady\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -134,63 +134,63 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "" -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "" @@ -229,32 +229,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -533,14 +541,14 @@ msgstr "" msgid "Reset password" msgstr "" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/ady/user_ldap.po b/l10n/ady/user_ldap.po index 705677146f4..04cdd0397c4 100644 --- a/l10n/ady/user_ldap.po +++ b/l10n/ady/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" "MIME-Version: 1.0\n" @@ -419,41 +419,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -469,15 +480,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -488,19 +499,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -514,10 +525,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/af/core.po b/l10n/af/core.po index 94d53b73573..2dd7b1f1a45 100644 --- a/l10n/af/core.po +++ b/l10n/af/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" @@ -17,24 +17,24 @@ msgstr "" "Language: af\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -134,63 +134,63 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "" -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "" @@ -229,32 +229,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -533,14 +541,14 @@ msgstr "" msgid "Reset password" msgstr "" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/af/user_ldap.po b/l10n/af/user_ldap.po index 32c77bec4a9..b0e9bc1b3ab 100644 --- a/l10n/af/user_ldap.po +++ b/l10n/af/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" @@ -419,41 +419,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -469,15 +480,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -488,19 +499,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -514,10 +525,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index 1edc5b40a1d..38344accb9b 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -17,24 +17,24 @@ msgstr "" "Language: af_ZA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -134,63 +134,63 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Instellings" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "" -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "" @@ -229,32 +229,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -533,14 +541,14 @@ msgstr "Nuwe wagwoord" msgid "Reset password" msgstr "Herstel wagwoord" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/af_ZA/user_ldap.po b/l10n/af_ZA/user_ldap.po index 4f4ab643287..581eb34d236 100644 --- a/l10n/af_ZA/user_ldap.po +++ b/l10n/af_ZA/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -419,41 +419,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -469,15 +480,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -488,19 +499,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -514,10 +525,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/ak/core.po b/l10n/ak/core.po index f498dda78d8..1fd891dc6ef 100644 --- a/l10n/ak/core.po +++ b/l10n/ak/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" @@ -17,24 +17,24 @@ msgstr "" "Language: ak\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -134,63 +134,63 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "" -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "" @@ -229,32 +229,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -533,14 +541,14 @@ msgstr "" msgid "Reset password" msgstr "" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/ak/user_ldap.po b/l10n/ak/user_ldap.po index 537c7c79d09..2dae2aaf95c 100644 --- a/l10n/ak/user_ldap.po +++ b/l10n/ak/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" @@ -419,41 +419,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -469,15 +480,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -488,19 +499,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -514,10 +525,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/am_ET/core.po b/l10n/am_ET/core.po index 7101e46cec9..e66052cc04c 100644 --- a/l10n/am_ET/core.po +++ b/l10n/am_ET/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-25 09:38+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" "MIME-Version: 1.0\n" @@ -17,24 +17,24 @@ msgstr "" "Language: am_ET\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -134,63 +134,63 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "" -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "" @@ -229,32 +229,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -533,14 +541,14 @@ msgstr "" msgid "Reset password" msgstr "" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/am_ET/user_ldap.po b/l10n/am_ET/user_ldap.po index df272f69784..0dc3459fe7e 100644 --- a/l10n/am_ET/user_ldap.po +++ b/l10n/am_ET/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-25 09:38+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" "MIME-Version: 1.0\n" @@ -419,41 +419,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -469,15 +480,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -488,19 +499,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -514,10 +525,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index b31f6772137..a92aaeb919f 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-25 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 14:00+0000\n" -"Last-Translator: Abderraouf Mehdi Bouhali \n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,24 +19,24 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -136,19 +136,19 @@ msgstr "تشرين الثاني" msgid "December" msgstr "كانون الاول" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "إعدادات" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "جاري الحفظ..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "منذ ثواني" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -158,7 +158,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" @@ -168,15 +168,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "اليوم" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "يوم أمس" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" @@ -186,11 +186,11 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "الشهر الماضي" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -200,15 +200,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "شهر مضى" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "السنةالماضية" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "سنة مضت" @@ -251,32 +251,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "الغاء" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -555,14 +563,14 @@ msgstr "كلمات سر جديدة" msgid "Reset password" msgstr "تعديل كلمة السر" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index a4e3832904c..3b92bebccea 100644 --- a/l10n/ar/user_ldap.po +++ b/l10n/ar/user_ldap.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" -"Last-Translator: m.shehab \n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -428,41 +428,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "خانة البريد الإلكتروني" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -478,15 +489,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -497,19 +508,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -523,10 +534,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/ast/core.po b/l10n/ast/core.po new file mode 100644 index 00000000000..eacc22af16a --- /dev/null +++ b/l10n/ast/core.po @@ -0,0 +1,809 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ast\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/share.php:87 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:119 ajax/share.php:161 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/update.php:10 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:13 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:16 +msgid "Updated database" +msgstr "" + +#: avatar/controller.php:62 +msgid "No image or file provided" +msgstr "" + +#: avatar/controller.php:81 +msgid "Unknown filetype" +msgstr "" + +#: avatar/controller.php:85 +msgid "Invalid image" +msgstr "" + +#: avatar/controller.php:115 avatar/controller.php:142 +msgid "No temporary profile picture available, try again" +msgstr "" + +#: avatar/controller.php:135 +msgid "No crop data provided" +msgstr "" + +#: js/config.php:36 +msgid "Sunday" +msgstr "Domingu" + +#: js/config.php:37 +msgid "Monday" +msgstr "Llunes" + +#: js/config.php:38 +msgid "Tuesday" +msgstr "Martes" + +#: js/config.php:39 +msgid "Wednesday" +msgstr "Miércoles" + +#: js/config.php:40 +msgid "Thursday" +msgstr "Xueves" + +#: js/config.php:41 +msgid "Friday" +msgstr "Vienres" + +#: js/config.php:42 +msgid "Saturday" +msgstr "Sábadu" + +#: js/config.php:47 +msgid "January" +msgstr "Xineru" + +#: js/config.php:48 +msgid "February" +msgstr "Febreru" + +#: js/config.php:49 +msgid "March" +msgstr "Marzu" + +#: js/config.php:50 +msgid "April" +msgstr "Abril" + +#: js/config.php:51 +msgid "May" +msgstr "Mayu" + +#: js/config.php:52 +msgid "June" +msgstr "Xunu" + +#: js/config.php:53 +msgid "July" +msgstr "Xunetu" + +#: js/config.php:54 +msgid "August" +msgstr "Agostu" + +#: js/config.php:55 +msgid "September" +msgstr "Setiembre" + +#: js/config.php:56 +msgid "October" +msgstr "Ochobre" + +#: js/config.php:57 +msgid "November" +msgstr "Payares" + +#: js/config.php:58 +msgid "December" +msgstr "Avientu" + +#: js/js.js:479 +msgid "Settings" +msgstr "" + +#: js/js.js:564 +msgid "Saving..." +msgstr "" + +#: js/js.js:1124 +msgid "seconds ago" +msgstr "" + +#: js/js.js:1125 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:1126 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:1127 +msgid "today" +msgstr "" + +#: js/js.js:1128 +msgid "yesterday" +msgstr "" + +#: js/js.js:1129 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:1130 +msgid "last month" +msgstr "" + +#: js/js.js:1131 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:1132 +msgid "months ago" +msgstr "" + +#: js/js.js:1133 +msgid "last year" +msgstr "" + +#: js/js.js:1134 +msgid "years ago" +msgstr "" + +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + +#: js/oc-dialogs.js:146 +msgid "Error loading file picker template: {error}" +msgstr "" + +#: js/oc-dialogs.js:172 +msgid "Yes" +msgstr "" + +#: js/oc-dialogs.js:182 +msgid "No" +msgstr "" + +#: js/oc-dialogs.js:199 +msgid "Ok" +msgstr "" + +#: js/oc-dialogs.js:219 +msgid "Error loading message template: {error}" +msgstr "" + +#: js/oc-dialogs.js:347 +msgid "{count} file conflict" +msgid_plural "{count} file conflicts" +msgstr[0] "" +msgstr[1] "" + +#: js/oc-dialogs.js:361 +msgid "One file conflict" +msgstr "" + +#: js/oc-dialogs.js:367 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 +msgid "" +"If you select both versions, the copied file will have a number added to its" +" name." +msgstr "" + +#: js/oc-dialogs.js:379 +msgid "Cancel" +msgstr "" + +#: js/oc-dialogs.js:389 +msgid "Continue" +msgstr "" + +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +msgid "(all selected)" +msgstr "" + +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +msgid "({count} selected)" +msgstr "" + +#: js/oc-dialogs.js:460 +msgid "Error loading file exists template" +msgstr "" + +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + +#: js/share.js:51 js/share.js:66 js/share.js:106 +msgid "Shared" +msgstr "" + +#: js/share.js:109 +msgid "Share" +msgstr "Compartir" + +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: templates/installation.php:10 +msgid "Error" +msgstr "" + +#: js/share.js:160 js/share.js:767 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:171 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:178 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:188 +msgid "Shared with you and the group {group} by {owner}" +msgstr "" + +#: js/share.js:190 +msgid "Shared with you by {owner}" +msgstr "" + +#: js/share.js:214 +msgid "Share with user or group …" +msgstr "" + +#: js/share.js:220 +msgid "Share link" +msgstr "" + +#: js/share.js:223 +msgid "Password protect" +msgstr "" + +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 +msgid "Password" +msgstr "" + +#: js/share.js:230 +msgid "Allow Public Upload" +msgstr "" + +#: js/share.js:234 +msgid "Email link to person" +msgstr "" + +#: js/share.js:235 +msgid "Send" +msgstr "" + +#: js/share.js:240 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:241 +msgid "Expiration date" +msgstr "" + +#: js/share.js:277 +msgid "Share via email:" +msgstr "" + +#: js/share.js:280 +msgid "No people found" +msgstr "" + +#: js/share.js:324 js/share.js:363 +msgid "group" +msgstr "grupu" + +#: js/share.js:335 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:379 +msgid "Shared in {item} with {user}" +msgstr "" + +#: js/share.js:401 +msgid "Unshare" +msgstr "Dexar de compartir" + +#: js/share.js:409 +msgid "notify by email" +msgstr "" + +#: js/share.js:412 +msgid "can edit" +msgstr "pue editar" + +#: js/share.js:414 +msgid "access control" +msgstr "" + +#: js/share.js:417 +msgid "create" +msgstr "" + +#: js/share.js:420 +msgid "update" +msgstr "" + +#: js/share.js:423 +msgid "delete" +msgstr "" + +#: js/share.js:426 +msgid "share" +msgstr "" + +#: js/share.js:698 +msgid "Password protected" +msgstr "" + +#: js/share.js:711 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:729 +msgid "Error setting expiration date" +msgstr "" + +#: js/share.js:754 +msgid "Sending ..." +msgstr "" + +#: js/share.js:765 +msgid "Email sent" +msgstr "" + +#: js/share.js:789 +msgid "Warning" +msgstr "" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Desaniciar" + +#: js/tags.js:31 +msgid "Add" +msgstr "" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + +#: js/update.js:8 +msgid "Please reload the page." +msgstr "" + +#: js/update.js:17 +msgid "" +"The update was unsuccessful. Please report this issue to the ownCloud " +"community." +msgstr "" + +#: js/update.js:21 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "" + +#: lostpassword/controller.php:70 +#, php-format +msgid "%s password reset" +msgstr "" + +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + +#: lostpassword/templates/email.php:2 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php: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 "" + +#: lostpassword/templates/lostpassword.php:15 +msgid "Request failed!
      Did you make sure your email/username was right?" +msgstr "" + +#: 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:53 +#: templates/login.php:32 +msgid "Username" +msgstr "" + +#: lostpassword/templates/lostpassword.php:25 +msgid "" +"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?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:27 +msgid "Yes, I really want to reset my password now" +msgstr "" + +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "" + +#: setup/controller.php:140 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:144 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + +#: strings.php:5 +msgid "Personal" +msgstr "Personal" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 templates/layout.user.php:116 +msgid "Apps" +msgstr "" + +#: strings.php:8 +msgid "Admin" +msgstr "" + +#: strings.php:9 +msgid "Help" +msgstr "" + +#: tags/controller.php:22 +msgid "Error loading tags" +msgstr "" + +#: tags/controller.php:48 +msgid "Tag already exists" +msgstr "" + +#: tags/controller.php:64 +msgid "Error deleting tag(s)" +msgstr "" + +#: tags/controller.php:75 +msgid "Error tagging" +msgstr "" + +#: tags/controller.php:86 +msgid "Error untagging" +msgstr "" + +#: tags/controller.php:97 +msgid "Error favoriting" +msgstr "" + +#: tags/controller.php:108 +msgid "Error unfavoriting" +msgstr "" + +#: templates/403.php:12 +msgid "Access forbidden" +msgstr "" + +#: templates/404.php:15 +msgid "Cloud not found" +msgstr "" + +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +msgstr "" + +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" + +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 +msgid "Security Warning" +msgstr "" + +#: templates/installation.php:26 +msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" +msgstr "" + +#: templates/installation.php:27 +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "" + +#: templates/installation.php:33 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: 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:40 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + +#: templates/installation.php:42 +#, php-format +msgid "" +"For information how to properly configure your server, please see the documentation." +msgstr "" + +#: templates/installation.php:48 +msgid "Create an admin account" +msgstr "" + +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" + +#: templates/installation.php:77 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:90 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:94 +msgid "will be used" +msgstr "" + +#: templates/installation.php:109 +msgid "Database user" +msgstr "" + +#: templates/installation.php:118 +msgid "Database password" +msgstr "" + +#: templates/installation.php:123 +msgid "Database name" +msgstr "" + +#: templates/installation.php:132 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:140 +msgid "Database host" +msgstr "" + +#: templates/installation.php:150 +msgid "Finish setup" +msgstr "" + +#: templates/installation.php:150 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript and re-load this interface." +msgstr "" + +#: templates/layout.user.php:44 +#, php-format +msgid "%s is available. Get more information on how to update." +msgstr "" + +#: templates/layout.user.php:74 templates/singleuser.user.php:8 +msgid "Log out" +msgstr "" + +#: templates/login.php:9 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:10 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:12 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:46 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:51 +msgid "remember" +msgstr "" + +#: templates/login.php:54 +msgid "Log in" +msgstr "" + +#: templates/login.php:60 +msgid "Alternative Logins" +msgstr "" + +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

      just letting you know that %s shared %s " +"with you.
      View it!

      " +msgstr "" + +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "" + +#: templates/singleuser.user.php:4 +msgid "This means only administrators can use the instance." +msgstr "" + +#: templates/singleuser.user.php:5 templates/update.user.php:5 +msgid "" +"Contact your system administrator if this message persists or appeared " +"unexpectedly." +msgstr "" + +#: templates/singleuser.user.php:7 templates/update.user.php:6 +msgid "Thank you for your patience." +msgstr "" + +#: templates/update.admin.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "" + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "" diff --git a/l10n/ast/files.po b/l10n/ast/files.po new file mode 100644 index 00000000000..79497938ef8 --- /dev/null +++ b/l10n/ast/files.po @@ -0,0 +1,408 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-07 19:30+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ast\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/move.php:15 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:25 ajax/move.php:28 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/newfile.php:58 js/files.js:98 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:63 +#, php-format +msgid "\"%s\" is an invalid file name." +msgstr "" + +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:97 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:102 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:118 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:146 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:22 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:66 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:19 ajax/upload.php:57 +msgid "Unable to set upload directory." +msgstr "" + +#: ajax/upload.php:33 +msgid "Invalid Token" +msgstr "" + +#: ajax/upload.php:75 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:82 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:83 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:85 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:86 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:87 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:88 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:89 +msgid "Failed to write to disk" +msgstr "" + +#: ajax/upload.php:107 +msgid "Not enough storage available" +msgstr "" + +#: ajax/upload.php:159 +msgid "Upload failed. Could not find uploaded file" +msgstr "" + +#: ajax/upload.php:169 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:184 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:11 js/filelist.js:14 +msgid "Files" +msgstr "" + +#: js/file-upload.js:247 +msgid "Unable to upload {filename} as it is a directory or has 0 bytes" +msgstr "" + +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" + +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:340 +msgid "Upload cancelled." +msgstr "" + +#: js/file-upload.js:385 +msgid "Could not get result from server." +msgstr "" + +#: js/file-upload.js:477 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/file-upload.js:542 +msgid "URL cannot be empty" +msgstr "" + +#: js/file-upload.js:546 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "" + +#: js/file-upload.js:548 js/filelist.js:603 +msgid "{new_name} already exists" +msgstr "" + +#: js/file-upload.js:600 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:613 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:653 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:164 +msgid "Share" +msgstr "Compartir" + +#: js/fileactions.js:177 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:238 +msgid "Rename" +msgstr "" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "" + +#: js/filelist.js:267 js/filelist.js:1113 +msgid "Pending" +msgstr "" + +#: js/filelist.js:630 +msgid "Could not rename file" +msgstr "" + +#: js/filelist.js:789 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:822 +msgid "{dirs} and {files}" +msgstr "" + +#: js/filelist.js:1052 js/filelist.js:1090 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" + +#: js/files.js:117 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "" + +#: js/files.js:121 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "" + +#: js/files.js:134 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:138 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:142 +msgid "" +"Encryption was disabled but your files are still encrypted. Please go to " +"your personal settings to decrypt your files." +msgstr "" + +#: js/files.js:331 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" + +#: js/files.js:570 templates/index.php:67 +msgid "Name" +msgstr "" + +#: js/files.js:571 templates/index.php:79 +msgid "Size" +msgstr "" + +#: js/files.js:572 templates/index.php:81 +msgid "Modified" +msgstr "" + +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:93 +#, php-format +msgid "%s could not be renamed" +msgstr "" + +#: lib/helper.php:14 templates/index.php:22 +msgid "Upload" +msgstr "" + +#: templates/admin.php:4 +msgid "File handling" +msgstr "" + +#: templates/admin.php:6 +msgid "Maximum upload size" +msgstr "" + +#: templates/admin.php:9 +msgid "max. possible: " +msgstr "" + +#: templates/admin.php:14 +msgid "Needed for multi-file and folder downloads." +msgstr "" + +#: templates/admin.php:16 +msgid "Enable ZIP-download" +msgstr "" + +#: templates/admin.php:19 +msgid "0 is unlimited" +msgstr "" + +#: templates/admin.php:21 +msgid "Maximum input size for ZIP files" +msgstr "" + +#: templates/admin.php:25 +msgid "Save" +msgstr "" + +#: templates/index.php:5 +msgid "New" +msgstr "" + +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:9 +msgid "Text file" +msgstr "" + +#: templates/index.php:12 +msgid "New folder" +msgstr "" + +#: templates/index.php:13 +msgid "Folder" +msgstr "" + +#: templates/index.php:16 +msgid "From link" +msgstr "" + +#: templates/index.php:40 +msgid "Deleted files" +msgstr "" + +#: templates/index.php:45 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:51 +msgid "You don’t have permission to upload or create files here" +msgstr "" + +#: templates/index.php:56 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:73 +msgid "Download" +msgstr "Descargar" + +#: templates/index.php:84 templates/index.php:85 +msgid "Delete" +msgstr "Desaniciar" + +#: templates/index.php:96 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:98 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:103 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:106 +msgid "Current scanning" +msgstr "" diff --git a/l10n/ast/files_encryption.po b/l10n/ast/files_encryption.po new file mode 100644 index 00000000000..85dc08a6ce7 --- /dev/null +++ b/l10n/ast/files_encryption.po @@ -0,0 +1,201 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-07 14:16+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ast\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/adminrecovery.php:29 +msgid "Recovery key successfully enabled" +msgstr "" + +#: ajax/adminrecovery.php:34 +msgid "" +"Could not enable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/adminrecovery.php:48 +msgid "Recovery key successfully disabled" +msgstr "" + +#: ajax/adminrecovery.php:53 +msgid "" +"Could not disable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/changeRecoveryPassword.php:49 +msgid "Password successfully changed." +msgstr "" + +#: ajax/changeRecoveryPassword.php:51 +msgid "Could not change the password. Maybe the old password was not correct." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:52 +msgid "Private key password successfully updated." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:54 +msgid "" +"Could not update the private key password. Maybe the old password was not " +"correct." +msgstr "" + +#: files/error.php:12 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:16 +#, php-format +msgid "" +"Your private key is not valid! Likely your password was changed outside of " +"%s (e.g. your corporate directory). You can update your private key password" +" in your personal settings to recover access to your encrypted files." +msgstr "" + +#: files/error.php:19 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:22 files/error.php:27 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + +#: hooks/hooks.php:64 +msgid "Missing requirements." +msgstr "" + +#: hooks/hooks.php:65 +msgid "" +"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." +msgstr "" + +#: hooks/hooks.php:295 +msgid "Following users are not set up for encryption:" +msgstr "" + +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" + +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" + +#: templates/invalid_private_key.php:8 +msgid "personal settings" +msgstr "" + +#: templates/settings-admin.php:2 templates/settings-personal.php:2 +msgid "Encryption" +msgstr "" + +#: templates/settings-admin.php:5 +msgid "" +"Enable recovery key (allow to recover users files in case of password loss):" +msgstr "" + +#: templates/settings-admin.php:9 +msgid "Recovery key password" +msgstr "" + +#: templates/settings-admin.php:12 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:19 templates/settings-personal.php:50 +msgid "Enabled" +msgstr "" + +#: templates/settings-admin.php:27 templates/settings-personal.php:58 +msgid "Disabled" +msgstr "" + +#: templates/settings-admin.php:32 +msgid "Change recovery key password:" +msgstr "" + +#: templates/settings-admin.php:38 +msgid "Old Recovery key password" +msgstr "" + +#: templates/settings-admin.php:45 +msgid "New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:51 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:56 +msgid "Change Password" +msgstr "" + +#: templates/settings-personal.php:8 +msgid "Your private key password no longer match your log-in password:" +msgstr "" + +#: templates/settings-personal.php:11 +msgid "Set your old private key password to your current log-in password." +msgstr "" + +#: templates/settings-personal.php:13 +msgid "" +" If you don't remember your old password you can ask your administrator to " +"recover your files." +msgstr "" + +#: templates/settings-personal.php:21 +msgid "Old log-in password" +msgstr "" + +#: templates/settings-personal.php:27 +msgid "Current log-in password" +msgstr "" + +#: templates/settings-personal.php:32 +msgid "Update Private Key Password" +msgstr "" + +#: templates/settings-personal.php:41 +msgid "Enable password recovery:" +msgstr "" + +#: templates/settings-personal.php:43 +msgid "" +"Enabling this option will allow you to reobtain access to your encrypted " +"files in case of password loss" +msgstr "" + +#: templates/settings-personal.php:59 +msgid "File recovery settings updated" +msgstr "" + +#: templates/settings-personal.php:60 +msgid "Could not update file recovery" +msgstr "" diff --git a/l10n/ast/files_external.po b/l10n/ast/files_external.po new file mode 100644 index 00000000000..6cc7ffe3e12 --- /dev/null +++ b/l10n/ast/files_external.po @@ -0,0 +1,127 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-07 19:30+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ast\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:68 js/google.js:89 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:102 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:45 js/google.js:122 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: js/settings.js:318 js/settings.js:325 +msgid "Saved" +msgstr "" + +#: lib/config.php:654 +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:658 +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:661 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + +#: templates/settings.php:2 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:8 templates/settings.php:27 +msgid "Folder name" +msgstr "" + +#: templates/settings.php:9 +msgid "External storage" +msgstr "" + +#: templates/settings.php:10 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:11 +msgid "Options" +msgstr "" + +#: templates/settings.php:12 +msgid "Available for" +msgstr "" + +#: templates/settings.php:32 +msgid "Add storage" +msgstr "" + +#: templates/settings.php:92 +msgid "No user or group" +msgstr "" + +#: templates/settings.php:95 +msgid "All Users" +msgstr "" + +#: templates/settings.php:97 +msgid "Groups" +msgstr "" + +#: templates/settings.php:105 +msgid "Users" +msgstr "" + +#: templates/settings.php:118 templates/settings.php:119 +#: templates/settings.php:158 templates/settings.php:159 +msgid "Delete" +msgstr "Desaniciar" + +#: templates/settings.php:132 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:135 +msgid "Allow users to mount the following external storage" +msgstr "" + +#: templates/settings.php:150 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:168 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/ast/files_sharing.po b/l10n/ast/files_sharing.po new file mode 100644 index 00000000000..75d475c4855 --- /dev/null +++ b/l10n/ast/files_sharing.po @@ -0,0 +1,72 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-07 14:16+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ast\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/share.js:33 +msgid "Shared by {owner}" +msgstr "" + +#: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 +msgid "Password" +msgstr "" + +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:17 +#, php-format +msgid "shared by %s" +msgstr "" + +#: templates/public.php:44 +#, php-format +msgid "Download %s" +msgstr "" + +#: templates/public.php:48 +msgid "Direct link" +msgstr "" diff --git a/l10n/ast/files_trashbin.po b/l10n/ast/files_trashbin.po new file mode 100644 index 00000000000..0df0166dc8f --- /dev/null +++ b/l10n/ast/files_trashbin.po @@ -0,0 +1,64 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-07 19:30+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ast\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/delete.php:59 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:64 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/filelist.js:3 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 +msgid "Error" +msgstr "" + +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "" + +#: lib/trashbin.php:859 lib/trashbin.php:861 +msgid "restored" +msgstr "" + +#: templates/index.php:6 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "" + +#: templates/index.php:18 +msgid "Name" +msgstr "" + +#: templates/index.php:21 templates/index.php:23 +msgid "Restore" +msgstr "" + +#: templates/index.php:29 +msgid "Deleted" +msgstr "" + +#: templates/index.php:32 templates/index.php:33 +msgid "Delete" +msgstr "Desaniciar" diff --git a/l10n/ast/files_versions.po b/l10n/ast/files_versions.po new file mode 100644 index 00000000000..0fbdc2c22ad --- /dev/null +++ b/l10n/ast/files_versions.po @@ -0,0 +1,43 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-07 14:16+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ast\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/rollbackVersion.php:13 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: js/versions.js:39 +msgid "Versions" +msgstr "" + +#: js/versions.js:61 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "" + +#: js/versions.js:88 +msgid "More versions..." +msgstr "" + +#: js/versions.js:126 +msgid "No other versions available" +msgstr "" + +#: js/versions.js:156 +msgid "Restore" +msgstr "" diff --git a/l10n/ast/lib.po b/l10n/ast/lib.po new file mode 100644 index 00000000000..f5115138fc9 --- /dev/null +++ b/l10n/ast/lib.po @@ -0,0 +1,338 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-07 19:30+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ast\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: private/app.php:236 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: private/app.php:248 +msgid "No app name specified" +msgstr "" + +#: private/app.php:353 +msgid "Help" +msgstr "" + +#: private/app.php:366 +msgid "Personal" +msgstr "Personal" + +#: private/app.php:377 +msgid "Settings" +msgstr "" + +#: private/app.php:389 +msgid "Users" +msgstr "" + +#: private/app.php:402 +msgid "Admin" +msgstr "" + +#: private/app.php:875 +#, php-format +msgid "Failed to upgrade \"%s\"." +msgstr "" + +#: private/avatar.php:66 +msgid "Unknown filetype" +msgstr "" + +#: private/avatar.php:71 +msgid "Invalid image" +msgstr "" + +#: private/defaults.php:35 +msgid "web services under your control" +msgstr "" + +#: private/files.php:232 +msgid "ZIP download is turned off." +msgstr "" + +#: private/files.php:233 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: private/files.php:234 private/files.php:262 +msgid "Back to Files" +msgstr "" + +#: private/files.php:259 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: private/files.php:260 +msgid "" +"Please download the files separately in smaller chunks or kindly ask your " +"administrator." +msgstr "" + +#: private/installer.php:64 +msgid "No source specified when installing app" +msgstr "" + +#: private/installer.php:71 +msgid "No href specified when installing app from http" +msgstr "" + +#: private/installer.php:76 +msgid "No path specified when installing app from local file" +msgstr "" + +#: private/installer.php:90 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: private/installer.php:104 +msgid "Failed to open archive when installing app" +msgstr "" + +#: private/installer.php:126 +msgid "App does not provide an info.xml file" +msgstr "" + +#: private/installer.php:132 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: private/installer.php:141 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: private/installer.php:147 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: private/installer.php:160 +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 "" + +#: private/installer.php:170 +msgid "App directory already exists" +msgstr "" + +#: private/installer.php:183 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + +#: private/json.php:29 +msgid "Application is not enabled" +msgstr "" + +#: private/json.php:40 private/json.php:63 private/json.php:88 +msgid "Authentication error" +msgstr "" + +#: private/json.php:52 +msgid "Token expired. Please reload page." +msgstr "" + +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + +#: private/search/provider/file.php:18 private/search/provider/file.php:36 +msgid "Files" +msgstr "" + +#: private/search/provider/file.php:27 private/search/provider/file.php:34 +msgid "Text" +msgstr "" + +#: private/search/provider/file.php:30 +msgid "Images" +msgstr "" + +#: private/setup/abstractdatabase.php:26 +#, php-format +msgid "%s enter the database username." +msgstr "" + +#: private/setup/abstractdatabase.php:29 +#, php-format +msgid "%s enter the database name." +msgstr "" + +#: private/setup/abstractdatabase.php:32 +#, php-format +msgid "%s you may not use dots in the database name" +msgstr "" + +#: private/setup/mssql.php:20 +#, php-format +msgid "MS SQL username and/or password not valid: %s" +msgstr "" + +#: private/setup/mssql.php:21 private/setup/mysql.php:13 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 +msgid "You need to enter either an existing account or the administrator." +msgstr "" + +#: private/setup/mysql.php:12 +msgid "MySQL/MariaDB 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: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:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:68 private/setup/oci.php:55 +#: 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:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 +#, php-format +msgid "Offending command was: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:85 +#, php-format +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" + +#: private/setup/mysql.php:86 +msgid "Drop this user from MySQL/MariaDB" +msgstr "" + +#: private/setup/mysql.php:91 +#, php-format +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" + +#: private/setup/mysql.php:92 +msgid "Drop this user from MySQL/MariaDB." +msgstr "" + +#: private/setup/oci.php:34 +msgid "Oracle connection could not be established" +msgstr "" + +#: private/setup/oci.php:41 private/setup/oci.php:113 +msgid "Oracle username and/or password not valid" +msgstr "" + +#: private/setup/oci.php:170 private/setup/oci.php:202 +#, php-format +msgid "Offending command was: \"%s\", name: %s, password: %s" +msgstr "" + +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 +msgid "PostgreSQL username and/or password not valid" +msgstr "" + +#: private/setup.php:28 +msgid "Set an admin username." +msgstr "" + +#: private/setup.php:31 +msgid "Set an admin password." +msgstr "" + +#: private/setup.php:202 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: private/setup.php:203 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:133 +msgid "seconds ago" +msgstr "" + +#: private/template/functions.php:134 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:135 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:136 +msgid "today" +msgstr "" + +#: private/template/functions.php:137 +msgid "yesterday" +msgstr "" + +#: private/template/functions.php:139 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:141 +msgid "last month" +msgstr "" + +#: private/template/functions.php:142 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:144 +msgid "last year" +msgstr "" + +#: private/template/functions.php:145 +msgid "years ago" +msgstr "" diff --git a/l10n/ast/settings.po b/l10n/ast/settings.po new file mode 100644 index 00000000000..3029c44d880 --- /dev/null +++ b/l10n/ast/settings.po @@ -0,0 +1,824 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-07 19:30+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ast\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:299 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:336 +msgid "Authentication method" +msgstr "" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:31 +msgid "Your full name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 +msgid "Unable to change full name" +msgstr "" + +#: ajax/creategroup.php:10 +msgid "Group already exists" +msgstr "" + +#: ajax/creategroup.php:19 +msgid "Unable to add group" +msgstr "" + +#: ajax/lostpassword.php:12 +msgid "Email saved" +msgstr "" + +#: ajax/lostpassword.php:14 +msgid "Invalid email" +msgstr "" + +#: ajax/removegroup.php:13 +msgid "Unable to delete group" +msgstr "" + +#: ajax/removeuser.php:25 +msgid "Unable to delete user" +msgstr "" + +#: ajax/setlanguage.php:15 +msgid "Language changed" +msgstr "" + +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Solicitú non válida" + +#: ajax/togglegroups.php:12 +msgid "Admins can't remove themself from the admin group" +msgstr "" + +#: ajax/togglegroups.php:30 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:36 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + +#: ajax/updateapp.php:14 +msgid "Couldn't update app." +msgstr "" + +#: changepassword/controller.php:17 +msgid "Wrong password" +msgstr "" + +#: changepassword/controller.php:36 +msgid "No user supplied" +msgstr "" + +#: changepassword/controller.php:68 +msgid "" +"Please provide an admin recovery password, otherwise all user data will be " +"lost" +msgstr "" + +#: changepassword/controller.php:73 +msgid "" +"Wrong admin recovery password. Please check the password and try again." +msgstr "" + +#: changepassword/controller.php:81 +msgid "" +"Back-end doesn't support password change, but the users encryption key was " +"successfully updated." +msgstr "" + +#: changepassword/controller.php:86 changepassword/controller.php:97 +msgid "Unable to change password" +msgstr "" + +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 +msgid "Update to {appversion}" +msgstr "" + +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 +msgid "Disable" +msgstr "" + +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 +msgid "Enable" +msgstr "" + +#: js/apps.js:95 +msgid "Please wait...." +msgstr "" + +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 +msgid "Error while disabling app" +msgstr "" + +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:149 +msgid "Updating...." +msgstr "" + +#: js/apps.js:152 +msgid "Error while updating app" +msgstr "" + +#: js/apps.js:152 +msgid "Error" +msgstr "" + +#: js/apps.js:153 templates/apps.php:55 +msgid "Update" +msgstr "" + +#: js/apps.js:156 +msgid "Updated" +msgstr "" + +#: js/personal.js:243 +msgid "Select a profile picture" +msgstr "" + +#: js/personal.js:274 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:313 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" + +#: js/users.js:47 +msgid "deleted" +msgstr "" + +#: js/users.js:47 +msgid "undo" +msgstr "" + +#: js/users.js:79 +msgid "Unable to remove user" +msgstr "" + +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 +msgid "Groups" +msgstr "" + +#: js/users.js:105 templates/users.php:90 templates/users.php:128 +msgid "Group Admin" +msgstr "" + +#: js/users.js:127 templates/users.php:168 +msgid "Delete" +msgstr "Desaniciar" + +#: js/users.js:310 +msgid "add group" +msgstr "" + +#: js/users.js:486 +msgid "A valid username must be provided" +msgstr "" + +#: js/users.js:487 js/users.js:493 js/users.js:508 +msgid "Error creating user" +msgstr "" + +#: js/users.js:492 +msgid "A valid password must be provided" +msgstr "" + +#: js/users.js:516 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + +#: personal.php:48 personal.php:49 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:8 +msgid "Everything (fatal issues, errors, warnings, info, debug)" +msgstr "" + +#: templates/admin.php:9 +msgid "Info, warnings, errors and fatal issues" +msgstr "" + +#: templates/admin.php:10 +msgid "Warnings, errors and fatal issues" +msgstr "" + +#: templates/admin.php:11 +msgid "Errors and fatal issues" +msgstr "" + +#: templates/admin.php:12 +msgid "Fatal issues only" +msgstr "" + +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:47 templates/admin.php:61 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:50 +#, php-format +msgid "" +"You are accessing %s via HTTP. We strongly suggest you configure your server" +" to require using HTTPS instead." +msgstr "" + +#: templates/admin.php:64 +msgid "" +"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." +msgstr "" + +#: templates/admin.php:75 +msgid "Setup Warning" +msgstr "" + +#: templates/admin.php:78 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: templates/admin.php:79 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: templates/admin.php:90 +msgid "Module 'fileinfo' missing" +msgstr "" + +#: templates/admin.php:93 +msgid "" +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this " +"module to get best results with mime-type detection." +msgstr "" + +#: templates/admin.php:104 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:107 +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:118 +msgid "Locale not working" +msgstr "" + +#: templates/admin.php:123 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:127 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:131 +#, 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:143 +msgid "Internet connection not working" +msgstr "" + +#: templates/admin.php:146 +msgid "" +"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." +msgstr "" + +#: templates/admin.php:160 +msgid "Cron" +msgstr "" + +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 +msgid "Execute one task with each page loaded" +msgstr "" + +#: templates/admin.php:192 +msgid "" +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." +msgstr "" + +#: templates/admin.php:200 +msgid "Use systems cron service to call the cron.php file every 15 minutes." +msgstr "" + +#: templates/admin.php:205 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:211 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:212 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:219 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:220 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:227 +msgid "Allow public uploads" +msgstr "" + +#: templates/admin.php:228 +msgid "" +"Allow users to enable others to upload into their publicly shared folders" +msgstr "" + +#: templates/admin.php:235 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:236 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:243 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:246 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:253 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:254 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:261 +msgid "Security" +msgstr "" + +#: templates/admin.php:274 +msgid "Enforce HTTPS" +msgstr "" + +#: templates/admin.php:276 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" + +#: templates/admin.php:282 +#, php-format +msgid "" +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" + +#: templates/admin.php:294 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:296 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:327 +msgid "From address" +msgstr "" + +#: templates/admin.php:349 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:353 +msgid "Server address" +msgstr "" + +#: templates/admin.php:357 +msgid "Port" +msgstr "" + +#: templates/admin.php:362 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:363 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:366 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:370 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:371 +msgid "Send email" +msgstr "" + +#: templates/admin.php:376 +msgid "Log" +msgstr "" + +#: templates/admin.php:377 +msgid "Log level" +msgstr "" + +#: templates/admin.php:409 +msgid "More" +msgstr "" + +#: templates/admin.php:410 +msgid "Less" +msgstr "" + +#: templates/admin.php:416 templates/personal.php:171 +msgid "Version" +msgstr "" + +#: templates/admin.php:420 templates/personal.php:174 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + +#: templates/apps.php:14 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:31 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:38 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:43 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:49 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:51 +msgid "See application website" +msgstr "" + +#: templates/apps.php:53 +msgid "-licensed by " +msgstr "" + +#: templates/help.php:6 +msgid "Administrator Documentation" +msgstr "" + +#: templates/help.php:9 +msgid "Online Documentation" +msgstr "" + +#: templates/help.php:11 +msgid "Forum" +msgstr "" + +#: templates/help.php:14 +msgid "Bugtracker" +msgstr "" + +#: templates/help.php:17 +msgid "Commercial Support" +msgstr "" + +#: templates/personal.php:8 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:19 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:27 +#, php-format +msgid "You have used %s of the available %s" +msgstr "" + +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 +msgid "Password" +msgstr "" + +#: templates/personal.php:39 +msgid "Your password was changed" +msgstr "" + +#: templates/personal.php:40 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:42 +msgid "Current password" +msgstr "" + +#: templates/personal.php:45 +msgid "New password" +msgstr "" + +#: templates/personal.php:49 +msgid "Change password" +msgstr "" + +#: templates/personal.php:61 templates/users.php:86 +msgid "Full Name" +msgstr "" + +#: templates/personal.php:76 +msgid "Email" +msgstr "" + +#: templates/personal.php:78 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:81 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:89 +msgid "Profile picture" +msgstr "" + +#: templates/personal.php:94 +msgid "Upload new" +msgstr "" + +#: templates/personal.php:96 +msgid "Select new from Files" +msgstr "" + +#: templates/personal.php:97 +msgid "Remove image" +msgstr "" + +#: templates/personal.php:98 +msgid "Either png or jpg. Ideally square but you will be able to crop it." +msgstr "" + +#: templates/personal.php:100 +msgid "Your avatar is provided by your original account." +msgstr "" + +#: templates/personal.php:104 +msgid "Cancel" +msgstr "" + +#: templates/personal.php:105 +msgid "Choose as profile image" +msgstr "" + +#: templates/personal.php:111 templates/personal.php:112 +msgid "Language" +msgstr "" + +#: templates/personal.php:131 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:137 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:139 +#, php-format +msgid "" +"Use this address to access your Files via " +"WebDAV" +msgstr "" + +#: templates/personal.php:151 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "" + +#: templates/personal.php:157 +msgid "Log-in password" +msgstr "" + +#: templates/personal.php:162 +msgid "Decrypt all Files" +msgstr "" + +#: templates/users.php:19 +msgid "Login Name" +msgstr "" + +#: templates/users.php:28 +msgid "Create" +msgstr "" + +#: templates/users.php:34 +msgid "Admin Recovery Password" +msgstr "" + +#: templates/users.php:35 templates/users.php:36 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:40 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:137 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + +#: templates/users.php:46 templates/users.php:146 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:64 templates/users.php:161 +msgid "Other" +msgstr "Otru" + +#: templates/users.php:85 +msgid "Username" +msgstr "" + +#: templates/users.php:92 +msgid "Storage" +msgstr "" + +#: templates/users.php:106 +msgid "change full name" +msgstr "" + +#: templates/users.php:110 +msgid "set new password" +msgstr "" + +#: templates/users.php:141 +msgid "Default" +msgstr "" diff --git a/l10n/ast/user_ldap.po b/l10n/ast/user_ldap.po new file mode 100644 index 00000000000..f13251011b1 --- /dev/null +++ b/l10n/ast/user_ldap.po @@ -0,0 +1,534 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ast\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/clearMappings.php:34 +msgid "Failed to clear the mappings." +msgstr "" + +#: ajax/deleteConfiguration.php:34 +msgid "Failed to delete the server configuration" +msgstr "" + +#: ajax/testConfiguration.php:39 +msgid "The configuration is valid and the connection could be established!" +msgstr "" + +#: ajax/testConfiguration.php:42 +msgid "" +"The configuration is valid, but the Bind failed. Please check the server " +"settings and credentials." +msgstr "" + +#: ajax/testConfiguration.php:46 +msgid "" +"The configuration is invalid. Please have a look at the logs for further " +"details." +msgstr "" + +#: ajax/wizard.php:32 +msgid "No action specified" +msgstr "" + +#: ajax/wizard.php:38 +msgid "No configuration specified" +msgstr "" + +#: ajax/wizard.php:81 +msgid "No data specified" +msgstr "" + +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "" + +#: js/settings.js:67 +msgid "Deletion failed" +msgstr "Falló'l borráu" + +#: js/settings.js:83 +msgid "Take over settings from recent server configuration?" +msgstr "" + +#: js/settings.js:84 +msgid "Keep settings?" +msgstr "" + +#: js/settings.js:99 +msgid "Cannot add server configuration" +msgstr "" + +#: js/settings.js:127 +msgid "mappings cleared" +msgstr "" + +#: js/settings.js:128 +msgid "Success" +msgstr "" + +#: js/settings.js:133 +msgid "Error" +msgstr "" + +#: js/settings.js:838 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:847 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:856 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:873 js/settings.js:882 +msgid "Select groups" +msgstr "" + +#: js/settings.js:876 js/settings.js:885 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:879 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:906 +msgid "Connection test succeeded" +msgstr "" + +#: js/settings.js:913 +msgid "Connection test failed" +msgstr "" + +#: js/settings.js:922 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "" + +#: js/settings.js:923 +msgid "Confirm Deletion" +msgstr "" + +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" +msgstr[1] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" +msgstr[1] "" + +#: lib/wizard.php:784 lib/wizard.php:796 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:963 +msgid "Could not find the desired feature" +msgstr "" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Groups meeting these criteria are available in %s:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:8 +#: templates/part.wizard-userfilter.php:8 +msgid "only those object classes:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:17 +#: templates/part.wizard-userfilter.php:17 +msgid "only from those groups:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:25 +#: templates/part.wizard-loginfilter.php:32 +#: templates/part.wizard-userfilter.php:25 +msgid "Edit raw filter instead" +msgstr "" + +#: templates/part.wizard-groupfilter.php:30 +#: templates/part.wizard-loginfilter.php:37 +#: templates/part.wizard-userfilter.php:30 +msgid "Raw LDAP filter" +msgstr "" + +#: templates/part.wizard-groupfilter.php:31 +#, php-format +msgid "" +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "" + +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "" + +#: templates/part.wizard-loginfilter.php:4 +msgid "Users login with this attribute:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:24 +msgid "Other Attributes:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:38 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" +msgstr "" + +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" +msgstr "" + +#: templates/part.wizard-server.php:30 +msgid "Host" +msgstr "" + +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "" + +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 +msgid "User DN" +msgstr "" + +#: templates/part.wizard-server.php:45 +msgid "" +"The DN of the client user with which the bind shall be done, e.g. " +"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " +"empty." +msgstr "" + +#: templates/part.wizard-server.php:52 +msgid "Password" +msgstr "" + +#: templates/part.wizard-server.php:53 +msgid "For anonymous access, leave DN and Password empty." +msgstr "" + +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "" + +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit %s access to users meeting these criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 +#, php-format +msgid "" +"The filter specifies which LDAP users shall have access to the %s instance." +msgstr "" + +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "" + +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "" + +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php:20 +msgid "Connection Settings" +msgstr "" + +#: templates/settings.php:22 +msgid "Configuration Active" +msgstr "" + +#: templates/settings.php:22 +msgid "When unchecked, this configuration will be skipped." +msgstr "" + +#: templates/settings.php:23 +msgid "Backup (Replica) Host" +msgstr "" + +#: templates/settings.php:23 +msgid "" +"Give an optional backup host. It must be a replica of the main LDAP/AD " +"server." +msgstr "" + +#: templates/settings.php:24 +msgid "Backup (Replica) Port" +msgstr "" + +#: templates/settings.php:25 +msgid "Disable Main Server" +msgstr "" + +#: templates/settings.php:25 +msgid "Only connect to the replica server." +msgstr "" + +#: templates/settings.php:26 +msgid "Case insensitve LDAP server (Windows)" +msgstr "" + +#: templates/settings.php:27 +msgid "Turn off SSL certificate validation." +msgstr "" + +#: templates/settings.php:27 +#, php-format +msgid "" +"Not recommended, use it for testing only! If connection only works with this" +" option, import the LDAP server's SSL certificate in your %s server." +msgstr "" + +#: templates/settings.php:28 +msgid "Cache Time-To-Live" +msgstr "" + +#: templates/settings.php:28 +msgid "in seconds. A change empties the cache." +msgstr "" + +#: templates/settings.php:30 +msgid "Directory Settings" +msgstr "" + +#: templates/settings.php:32 +msgid "User Display Name Field" +msgstr "" + +#: templates/settings.php:32 +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" + +#: templates/settings.php:33 +msgid "Base User Tree" +msgstr "" + +#: templates/settings.php:33 +msgid "One User Base DN per line" +msgstr "" + +#: templates/settings.php:34 +msgid "User Search Attributes" +msgstr "" + +#: templates/settings.php:34 templates/settings.php:37 +msgid "Optional; one attribute per line" +msgstr "" + +#: templates/settings.php:35 +msgid "Group Display Name Field" +msgstr "" + +#: templates/settings.php:35 +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" + +#: templates/settings.php:36 +msgid "Base Group Tree" +msgstr "" + +#: templates/settings.php:36 +msgid "One Group Base DN per line" +msgstr "" + +#: templates/settings.php:37 +msgid "Group Search Attributes" +msgstr "" + +#: templates/settings.php:38 +msgid "Group-Member association" +msgstr "" + +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 +msgid "Special Attributes" +msgstr "" + +#: templates/settings.php:44 +msgid "Quota Field" +msgstr "" + +#: templates/settings.php:45 +msgid "Quota Default" +msgstr "" + +#: templates/settings.php:45 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:46 +msgid "Email Field" +msgstr "" + +#: templates/settings.php:47 +msgid "User Home Folder Naming Rule" +msgstr "" + +#: templates/settings.php:47 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:53 +msgid "Internal Username" +msgstr "" + +#: templates/settings.php:54 +msgid "" +"By default the internal username will be created from the UUID attribute. It" +" makes sure that the username is unique and characters do not need to be " +"converted. The internal username has the restriction that only these " +"characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced " +"with their ASCII correspondence or simply omitted. On collisions a number " +"will be added/increased. The internal username is used to identify a user " +"internally. It is also the default name for the user home folder. It is also" +" a part of remote URLs, for instance for all *DAV services. With this " +"setting, the default behavior can be overridden. To achieve a similar " +"behavior as before ownCloud 5 enter the user display name attribute in the " +"following field. Leave it empty for default behavior. Changes will have " +"effect only on newly mapped (added) LDAP users." +msgstr "" + +#: templates/settings.php:55 +msgid "Internal Username Attribute:" +msgstr "" + +#: templates/settings.php:56 +msgid "Override UUID detection" +msgstr "" + +#: templates/settings.php:57 +msgid "" +"By default, the UUID attribute is automatically detected. The UUID attribute" +" is used to doubtlessly identify LDAP users and groups. Also, the internal " +"username will be created based on the UUID, if not specified otherwise " +"above. You can override the setting and pass an attribute of your choice. " +"You must make sure that the attribute of your choice can be fetched for both" +" users and groups and it is unique. Leave it empty for default behavior. " +"Changes will have effect only on newly mapped (added) LDAP users and groups." +msgstr "" + +#: templates/settings.php:58 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:59 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:60 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:61 +msgid "" +"Usernames are used to store and assign (meta) data. In order to precisely " +"identify and recognize users, each LDAP user will have a internal username. " +"This requires a mapping from username to LDAP user. The created username is " +"mapped to the UUID of the LDAP user. Additionally the DN is cached as well " +"to reduce LDAP interaction, but it is not used for identification. If the DN" +" changes, the changes will be found. The internal username is used all over." +" Clearing the mappings will have leftovers everywhere. Clearing the mappings" +" is not configuration sensitive, it affects all LDAP configurations! Never " +"clear the mappings in a production environment, only in a testing or " +"experimental stage." +msgstr "" + +#: templates/settings.php:62 +msgid "Clear Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:62 +msgid "Clear Groupname-LDAP Group Mapping" +msgstr "" diff --git a/l10n/ast/user_webdavauth.po b/l10n/ast/user_webdavauth.po new file mode 100644 index 00000000000..e3c12d518ce --- /dev/null +++ b/l10n/ast/user_webdavauth.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-07 14:16+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ast\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:2 +msgid "WebDAV Authentication" +msgstr "" + +#: templates/settings.php:3 +msgid "Address: " +msgstr "" + +#: templates/settings.php:6 +msgid "" +"The user credentials will be sent to this address. This plugin checks the " +"response and will interpret the HTTP statuscodes 401 and 403 as invalid " +"credentials, and all other responses as valid credentials." +msgstr "" diff --git a/l10n/az/core.po b/l10n/az/core.po index d27ed545d6b..16e53892b8e 100644 --- a/l10n/az/core.po +++ b/l10n/az/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" @@ -17,24 +17,24 @@ msgstr "" "Language: az\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -134,63 +134,63 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "" -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "" @@ -229,32 +229,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -533,14 +541,14 @@ msgstr "" msgid "Reset password" msgstr "" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/az/user_ldap.po b/l10n/az/user_ldap.po index 5aaa8ff5dcf..df36a475ca0 100644 --- a/l10n/az/user_ldap.po +++ b/l10n/az/user_ldap.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: az\n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/clearMappings.php:34 msgid "Failed to clear the mappings." @@ -131,12 +131,14 @@ msgstr "" msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" +msgstr[1] "" #: lib/wizard.php:122 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" +msgstr[1] "" #: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" @@ -417,41 +419,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -467,15 +480,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -486,19 +499,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -512,10 +525,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/be/core.po b/l10n/be/core.po index b654e238ac4..08ac377c071 100644 --- a/l10n/be/core.po +++ b/l10n/be/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -18,24 +18,24 @@ msgstr "" "Language: be\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -135,19 +135,19 @@ msgstr "Лістапад" msgid "December" msgstr "Снежань" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Налады" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "" -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "Секунд таму" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -155,7 +155,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" @@ -163,15 +163,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "Сёння" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "Ўчора" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" @@ -179,11 +179,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "У мінулым месяцы" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -191,15 +191,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "Месяцаў таму" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "У мінулым годзе" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "Гадоў таму" @@ -240,32 +240,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -544,14 +552,14 @@ msgstr "" msgid "Reset password" msgstr "" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/be/user_ldap.po b/l10n/be/user_ldap.po index 766cac335ef..ba05cf01fbb 100644 --- a/l10n/be/user_ldap.po +++ b/l10n/be/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -423,41 +423,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -473,15 +484,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -492,19 +503,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -518,10 +529,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index ca776f7ede6..53dbcfcf824 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-25 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 08:40+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -18,24 +18,24 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -135,63 +135,63 @@ msgstr "Ноември" msgid "December" msgstr "Декември" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Настройки" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "Записване..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "преди секунди" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "днес" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "вчера" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "последният месец" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "Преди месеци" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "последната година" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "последните години" @@ -230,32 +230,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Отказ" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -534,14 +542,14 @@ msgstr "Нова парола" msgid "Reset password" msgstr "Нулиране на парола" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index 78f3b6a1147..240293f936f 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -419,41 +419,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -469,15 +480,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -488,19 +499,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -514,10 +525,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index de745e7cda0..de3aa807873 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -17,24 +17,24 @@ msgstr "" "Language: bn_BD\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -134,63 +134,63 @@ msgstr "নভেম্বর" msgid "December" msgstr "ডিসেম্বর" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "নিয়ামকসমূহ" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "সংরক্ষণ করা হচ্ছে.." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "সেকেন্ড পূর্বে" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "আজ" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "গতকাল" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "গত মাস" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "মাস পূর্বে" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "গত বছর" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "বছর পূর্বে" @@ -229,32 +229,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "বাতির" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -533,14 +541,14 @@ msgstr "নতুন কূটশব্দ" msgid "Reset password" msgstr "কূটশব্দ পূনঃনির্ধারণ কর" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index a7caeb40194..4c9a205b7bf 100644 --- a/l10n/bn_BD/user_ldap.po +++ b/l10n/bn_BD/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -419,41 +419,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "বাইটে" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "ব্যবহারকারী নামের জন্য ফাঁকা রাখুন (পূর্বনির্ধারিত)। অন্যথায়, LDAP/AD বৈশিষ্ট্য নির্ধারণ করুন।" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -469,15 +480,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -488,19 +499,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -514,10 +525,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/bs/core.po b/l10n/bs/core.po index fe90076c0d4..0b742954372 100644 --- a/l10n/bs/core.po +++ b/l10n/bs/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -17,24 +17,24 @@ msgstr "" "Language: bs\n" "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);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -134,67 +134,67 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "Spašavam..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "" @@ -234,32 +234,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -538,14 +546,14 @@ msgstr "" msgid "Reset password" msgstr "" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/bs/user_ldap.po b/l10n/bs/user_ldap.po index 268fdc806b2..b4625092d33 100644 --- a/l10n/bs/user_ldap.po +++ b/l10n/bs/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -421,41 +421,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -471,15 +482,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -490,19 +501,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -516,10 +527,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 6ea1ff1cdb7..5926fde25bb 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-25 13:08+0000\n" -"Last-Translator: rogerc\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"Last-Translator: I Robot\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" @@ -20,24 +20,24 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "La data de venciment és en el passat." -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "No s'ha pogut enviar correu als usuaris següents: %s" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "Activat el mode de manteniment" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "Desactivat el mode de manteniment" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "Actualitzada la base de dades" @@ -137,63 +137,63 @@ msgstr "Novembre" msgid "December" msgstr "Desembre" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Configuració" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "Desant..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "segons enrere" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "fa %n minut" msgstr[1] "fa %n minuts" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "fa %n hora" msgstr[1] "fa %n hores" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "avui" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "ahir" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "fa %n dies" msgstr[1] "fa %n dies" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "el mes passat" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "fa %n mes" msgstr[1] "fa %n mesos" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "mesos enrere" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "l'any passat" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "anys enrere" @@ -232,32 +232,40 @@ msgid "One file conflict" msgstr "Un fitxer en conflicte" #: js/oc-dialogs.js:367 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" msgstr "Quin fitxer voleu conservar?" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Si seleccioneu les dues versions, el fitxer copiat tindrà un número afegit al seu nom." -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Cancel·la" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "Continua" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "(selecciona-ho tot)" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "({count} seleccionats)" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "Error en carregar la plantilla de fitxer existent" @@ -536,14 +544,14 @@ msgstr "Contrasenya nova" msgid "Reset password" msgstr "Reinicialitza la contrasenya" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "Mac OS X no té suport i %s no funcionarà correctament en aquesta plataforma. Useu-ho al vostre risc!" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "Per millors resultats, millor considereu utilitzar un servidor GNU/Linux." diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index 90f2c187f2f..30ed5e7f450 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" -"Last-Translator: rogerc\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"Last-Translator: I Robot\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" @@ -422,41 +422,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "Quan està activat, els grups que contenen grups estan permesos. (Només funciona si l'atribut del grup membre conté DNs.)" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "Atributs especials" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "Camp de quota" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "Quota per defecte" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "en bytes" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "Camp de correu electrònic" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "Norma per anomenar la carpeta arrel d'usuari" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Deixeu-ho buit pel nom d'usuari (per defecte). Altrament, especifiqueu un atribut LDAP/AD." -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "Nom d'usuari intern" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -472,15 +483,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "Per defecte el nom d'usuari intern es crearà a partir de l'atribut UUID. Això assegura que el nom d'usuari és únic i que els caràcters no s'han de convertir. El nom d'usuari intern té la restricció que només estan permesos els caràcters: [ a-zA-Z0-9_.@- ]. Els altres caràcters es substitueixen pel seu corresponent ASCII o simplement s'ometen. En cas de col·lisió s'incrementa/decrementa en un. El nom d'usuari intern s'utilitza per identificar un usuari internament. També és el nom per defecte de la carpeta home d'usuari. És també un port de URLs remotes, per exemple tots els serveis *DAV. Amb aquest arranjament es pot variar el comportament per defecte. Per obtenir un comportament similar al d'abans de ownCloud 5, escriviu el nom d'usuari a mostrar en el camp següent. Deixei-lo en blanc si preferiu el comportament per defecte. Els canvis tindran efecte només en els nous usuaris LDAP mapats (afegits)." -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "Atribut nom d'usuari intern:" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "Sobrescriu la detecció UUID" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -491,19 +502,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Per defecte, owncloud autodetecta l'atribut UUID. L'atribut UUID s'utilitza per identificar usuaris i grups de forma indubtable. També el nom d'usuari intern es crearà en base a la UUIS, si no heu especificat res diferent a dalt. Podeu sobreescriure l'arranjament i passar l'atribut que desitgeu. Heu d'assegurar-vos que l'atribut que escolliu pot ser recollit tant pels usuaris com pels grups i que és únic. Deixeu-ho en blanc si preferiu el comportament per defecte. els canvis s'aplicaran als usuaris i grups LDAP mapats de nou (afegits)." -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "Atribut UUID per Usuaris:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "Atribut UUID per Grups:" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "Mapatge d'usuari Nom d'usuari-LDAP" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -517,10 +528,10 @@ msgid "" "experimental stage." msgstr "Els noms d'usuari s'usen per desar i assignar (meta)dades. Per tal d'identificar amb precisió i reconèixer els usuaris, cada usuari LDAP tindrà un nom d'usuari intern. Això requereix mapatge del nom d'usuari a l'usuari LDAP. El nom d'usuari creat es mapa a la UUID de l'usuari LDAP. A més, la DN es posa a la memòria de cau per reduir la interacció LDAP, però no s'usa per identificació. En cas que la DN canvïi, els canvis es trobaran. El nom d'usuari intern s'usa a tot arreu. Si esborreu els mapatges quedaran sobrants a tot arreu. Esborrar els mapatges no és sensible a la configuració, afecta a totes les configuracions LDAP! No esborreu mai els mapatges en un entorn de producció, només en un estadi de prova o experimental." -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "Elimina el mapatge d'usuari Nom d'usuari-LDAP" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Elimina el mapatge de grup Nom de grup-LDAP" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 32fec75418b..3daadc82e18 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-23 22:41+0000\n" -"Last-Translator: pstast \n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -25,24 +25,24 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "Datum expirace je v minulosti." -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Nebylo možné odeslat e-mail následujícím uživatelům: %s" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "Zapnut režim údržby" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "Vypnut režim údržby" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "Zaktualizována databáze" @@ -142,67 +142,67 @@ msgstr "Listopad" msgid "December" msgstr "Prosinec" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Nastavení" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "Ukládám..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "před pár vteřinami" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "před %n minutou" msgstr[1] "před %n minutami" msgstr[2] "před %n minutami" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "před %n hodinou" msgstr[1] "před %n hodinami" msgstr[2] "před %n hodinami" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "dnes" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "včera" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "před %n dnem" msgstr[1] "před %n dny" msgstr[2] "před %n dny" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "minulý měsíc" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "před %n měsícem" msgstr[1] "před %n měsíci" msgstr[2] "před %n měsíci" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "před měsíci" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "minulý rok" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "před lety" @@ -242,32 +242,40 @@ msgid "One file conflict" msgstr "Jeden konflikt souboru" #: js/oc-dialogs.js:367 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" msgstr "Které soubory chcete ponechat?" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Pokud zvolíte obě verze, zkopírovaný soubor bude mít název doplněný o číslo." -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Zrušit" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "Pokračovat" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "(vybráno vše)" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "(vybráno {count})" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "Chyba při nahrávání šablony existence souboru" @@ -546,14 +554,14 @@ msgstr "Nové heslo" msgid "Reset password" msgstr "Obnovit heslo" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "Mac OS X není podporován a %s nebude na této platformě správně fungovat. Používejte pouze na vlastní nebezpečí!" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "Místo toho zvažte pro nejlepší funkčnost použití GNU/Linux serveru." diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index f20b90fcd2d..c2845ec7a58 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" -"Last-Translator: pstast \n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -427,41 +427,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "Pokud zapnuto, je možno používat skupiny, které obsahují jiné skupiny. (Funguje pouze pokud atribut člena skupiny obsahuje DN.)" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "Speciální atributy" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "Pole pro kvótu" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "Výchozí kvóta" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "v bajtech" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "Pole e-mailu" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "Pravidlo pojmenování domovské složky uživatele" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Ponechte prázdné pro uživatelské jméno (výchozí). Jinak uveďte LDAP/AD parametr." -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "Interní uživatelské jméno" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -477,15 +488,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "Ve výchozím nastavení bude uživatelské jméno vytvořeno z UUID atributu. To zajistí unikátnost uživatelského jména a není potřeba provádět konverzi znaků. Interní uživatelské jméno je omezeno na znaky: [ a-zA-Z0-9_.@- ]. Ostatní znaky jsou nahrazeny jejich ASCII ekvivalentem nebo jednoduše vynechány. V případě kolize uživatelských jmen bude přidáno/navýšeno číslo. Interní uživatelské jméno je používáno k interní identifikaci uživatele. Je také výchozím názvem uživatelského domovského adresáře. Je také součástí URL pro vzdálený přístup, například všech *DAV služeb. S tímto nastavením může být výchozí chování změněno. Pro dosažení podobného chování jako před ownCloudem 5 uveďte atribut zobrazovaného jména do pole níže. Ponechte prázdné pro výchozí chování. Změna bude mít vliv jen na nově namapované (přidané) uživatele z LDAP." -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "Atribut interního uživatelského jména:" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "Nastavit ručně UUID atribut" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -496,19 +507,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Ve výchozím nastavení je UUID atribut nalezen automaticky. UUID atribut je používán pro nezpochybnitelnou identifikaci uživatelů a skupin z LDAP. Navíc je na základě UUID tvořeno také interní uživatelské jméno, pokud není nastaveno jinak. Můžete výchozí nastavení přepsat a použít atribut, který sami zvolíte. Musíte se ale ujistit, že atribut, který vyberete, bude uveden jak u uživatelů, tak i u skupin a je unikátní. Ponechte prázdné pro výchozí chování. Změna bude mít vliv jen na nově namapované (přidané) uživatele a skupiny z LDAP." -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "UUID atribut pro uživatele:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "UUID atribut pro skupiny:" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "Mapování uživatelských jmen z LDAPu" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -522,10 +533,10 @@ msgid "" "experimental stage." msgstr "Uživatelská jména jsou používány pro uchovávání a přiřazování (meta)dat. Pro správnou identifikaci a rozpoznání uživatelů bude mít každý uživatel z LDAP interní uživatelské jméno. To vyžaduje mapování uživatelských jmen na uživatele LDAP. Vytvořené uživatelské jméno je mapováno na UUID uživatele v LDAP. Navíc je cachována DN pro zmenšení interakce s LDAP, ale není používána pro identifikaci. Pokud se DN změní, bude to správně rozpoznáno. Interní uživatelské jméno se používá celé. Vyčištění mapování zanechá zbytky všude. Vyčištění navíc není specifické konfiguraci, bude mít vliv na všechny LDAP konfigurace! Nikdy nečistěte mapování v produkčním prostředí, jen v testovací nebo experimentální fázi." -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "Zrušit mapování uživatelských jmen LDAPu" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Zrušit mapování názvů skupin LDAPu" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index 68a772c1cb9..2e8afc0dbc8 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -18,24 +18,24 @@ msgstr "" "Language: cy_GB\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -135,19 +135,19 @@ msgstr "Tachwedd" msgid "December" msgstr "Rhagfyr" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Gosodiadau" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "Yn cadw..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "eiliad yn ôl" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -155,7 +155,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" @@ -163,15 +163,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "heddiw" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "ddoe" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" @@ -179,11 +179,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "mis diwethaf" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -191,15 +191,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "misoedd yn ôl" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "y llynedd" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "blwyddyn yn ôl" @@ -240,32 +240,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Diddymu" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -544,14 +552,14 @@ msgstr "Cyfrinair newydd" msgid "Reset password" msgstr "Ailosod cyfrinair" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po index cc9dff4f5d9..e7a8c333fd3 100644 --- a/l10n/cy_GB/user_ldap.po +++ b/l10n/cy_GB/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -423,41 +423,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -473,15 +484,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -492,19 +503,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -518,10 +529,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/da/core.po b/l10n/da/core.po index 352b90b2cff..7cee7a2d715 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-25 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 11:00+0000\n" -"Last-Translator: Sappe\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,24 +24,24 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Kunne ikke sende mail til følgende brugere: %s" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "Startede vedligeholdelsestilstand" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "standsede vedligeholdelsestilstand" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "Opdaterede database" @@ -141,63 +141,63 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Indstillinger" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "Gemmer..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut siden" msgstr[1] "%n minutter siden" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n time siden" msgstr[1] "%n timer siden" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "i dag" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "i går" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dag siden" msgstr[1] "%n dage siden" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "sidste måned" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n måned siden" msgstr[1] "%n måneder siden" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "måneder siden" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "sidste år" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "år siden" @@ -236,32 +236,40 @@ msgid "One file conflict" msgstr "En filkonflikt" #: js/oc-dialogs.js:367 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" msgstr "Hvilke filer ønsker du at beholde?" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Hvis du vælger begge versioner, vil den kopierede fil få tilføjet et nummer til sit navn." -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Annuller" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "Videre" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "(alle valgt)" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "({count} valgt)" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "Fejl ved inlæsning af; fil eksistere skabelon" @@ -540,14 +548,14 @@ msgstr "Nyt kodeord" msgid "Reset password" msgstr "Nulstil kodeord" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index 91bc2bece8a..d97bda300db 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -420,41 +420,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "Kvote Felt" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "i bytes" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "Email Felt" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "Internt Brugernavn" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -470,15 +481,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -489,19 +500,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -515,10 +526,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/de/core.po b/l10n/de/core.po index 471f29b8a0e..7cf5b2bf1cf 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-23 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 10:50+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -27,24 +27,24 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "Ablaufdatum liegt in der Vergangenheit." -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Die E-Mail konnte nicht an folgende Benutzer gesendet werden: %s" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "Wartungsmodus eingeschaltet" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "Wartungsmodus ausgeschaltet" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "Datenbank aktualisiert" @@ -144,63 +144,63 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "Speichern..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Vor %n Minute" msgstr[1] "Vor %n Minuten" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Vor %n Stunde" msgstr[1] "Vor %n Stunden" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "Heute" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "Gestern" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Vor %n Tag" msgstr[1] "Vor %n Tagen" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Vor %n Monat" msgstr[1] "Vor %n Monaten" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "Vor Jahren" @@ -239,32 +239,40 @@ msgid "One file conflict" msgstr "Ein Dateikonflikt" #: js/oc-dialogs.js:367 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" msgstr "Welche Dateien möchtest Du behalten?" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Wenn Du beide Versionen auswählst, erhält die kopierte Datei eine Zahl am Ende des Dateinamens." -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Abbrechen" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "Fortsetzen" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "(Alle ausgewählt)" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "({count} ausgewählt)" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "Fehler beim Laden der vorhanden Dateivorlage" @@ -543,14 +551,14 @@ msgstr "Neues Passwort" msgid "Reset password" msgstr "Passwort zurücksetzen" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "Mac OSX wird nicht unterstützt und %s wird auf dieser Platform nicht korrekt funktionieren. Benutzung auf eigenes Risiko!" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "Für die besten Resultate sollte stattdessen ein GNU/Linux Server verwendet werden." diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index 61ce5eaac60..91044ece8b3 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -423,41 +423,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "Wenn aktiviert, werden Gruppen, die Gruppen enthalten, unterstützt. (Funktioniert nur, wenn das Merkmal des Gruppenmitgliedes den Domain-Namen enthält.)" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "Spezielle Eigenschaften" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "Kontingent Feld" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "Standard Kontingent" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "in Bytes" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "E-Mail Feld" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "Benennungsregel für das Home-Verzeichnis des Benutzers" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Ohne Eingabe wird der Benutzername (Standard) verwendet. Anderenfall trage ein LDAP/AD-Attribut ein." -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "Interner Benutzername" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -473,15 +484,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "Standardmäßig wird der interne Benutzername mittels des UUID-Attributes erzeugt. Dies stellt sicher, dass der Benutzername einzigartig ist und keinerlei Zeichen konvertiert werden müssen. Der interne Benutzername unterliegt Beschränkungen, die nur die nachfolgenden Zeichen erlauben: [ a-zA-Z0-9_.@- ]. Andere Zeichen werden mittels ihrer korrespondierenden Zeichen ersetzt oder einfach ausgelassen. Bei Kollisionen wird ein Zähler hinzugefügt bzw. der Zähler um einen Wert erhöht. Der interne Benutzername wird benutzt, um einen Benutzer intern zu identifizieren. Es ist ebenso der standardmäßig vorausgewählte Namen des Heimatverzeichnisses. Es ist auch ein Teil der Remote-URLs - zum Beispiel für alle *DAV-Dienste. Mit dieser Einstellung kann das Standardverhalten überschrieben werden. Um ein ähnliches Verhalten wie vor ownCloud 5 zu erzielen, fügen Sie das anzuzeigende Attribut des Benutzernamens in das nachfolgende Feld ein. Lassen Sie dies hingegen für das Standardverhalten leer. Die Änderungen werden sich nur auf neu gemappte (hinzugefügte) LDAP-Benutzer auswirken." -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "Attribut für interne Benutzernamen:" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "UUID-Erkennung überschreiben" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -492,19 +503,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Standardmäßig wird die UUID-Eigenschaft automatisch erkannt. Die UUID-Eigenschaft wird genutzt, um einen LDAP-Benutzer und Gruppen einwandfrei zu identifizieren. Außerdem wird der interne Benutzername erzeugt, der auf Eigenschaften der UUID basiert, wenn es oben nicht anders angegeben wurde. Du musst allerdings sicherstellen, dass deine gewählten Eigenschaften zur Identifikation der Benutzer und Gruppen eindeutig sind und zugeordnet werden können. Lasse es frei, um es beim Standardverhalten zu belassen. Änderungen wirken sich nur auf neu gemappte (hinzugefügte) LDAP-Benutzer und -Gruppen aus." -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "UUID-Attribute für Benutzer:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "UUID-Attribute für Gruppen:" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "LDAP-Benutzernamenzuordnung" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -518,10 +529,10 @@ msgid "" "experimental stage." msgstr "Die Benutzernamen werden genutzt, um (Meta)Daten zuzuordnen und zu speichern. Um Benutzer eindeutig und präzise zu identifizieren, hat jeder LDAP-Benutzer einen internen Benutzernamen. Dies erfordert eine Zuordnung (mappen) von Benutzernamen zum LDAP-Benutzer. Der erstellte Benutzername wird der UUID des LDAP-Benutzernamens zugeordnet. Zusätzlich wird der DN zwischengespeichert, um die Interaktion mit dem LDAP zu minimieren, was aber nicht der Identifikation dient. Ändert sich der DN, werden die Änderungen durch gefunden. Der interne Benutzername, wird in überall verwendet. Werden die Zuordnungen gelöscht, bleiben überall Reste zurück. Die Löschung der Zuordnungen kann nicht in der Konfiguration vorgenommen werden, beeinflusst aber die LDAP-Konfiguration! Löschen Sie niemals die Zuordnungen in einer produktiven Umgebung. Lösche die Zuordnungen nur in einer Test- oder Experimentierumgebung." -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "Lösche LDAP-Benutzernamenzuordnung" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Lösche LDAP-Gruppennamenzuordnung" diff --git a/l10n/de_AT/core.po b/l10n/de_AT/core.po index 1134976fb22..9d060609c66 100644 --- a/l10n/de_AT/core.po +++ b/l10n/de_AT/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -18,24 +18,24 @@ msgstr "" "Language: de_AT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -135,63 +135,63 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "" -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "" @@ -230,32 +230,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Abbrechen" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -534,14 +542,14 @@ msgstr "" msgid "Reset password" msgstr "" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/de_AT/user_ldap.po b/l10n/de_AT/user_ldap.po index 1e86832a9e0..23ae3177db3 100644 --- a/l10n/de_AT/user_ldap.po +++ b/l10n/de_AT/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -419,41 +419,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -469,15 +480,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -488,19 +499,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -514,10 +525,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/de_CH/core.po b/l10n/de_CH/core.po index bb41b4f03b5..dcd044d0b5c 100644 --- a/l10n/de_CH/core.po +++ b/l10n/de_CH/core.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -27,24 +27,24 @@ msgstr "" "Language: de_CH\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "Wartungsmodus eingeschaltet" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "Wartungsmodus ausgeschaltet" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "Datenbank aktualisiert" @@ -144,63 +144,63 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "Speichern..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Vor %n Minute" msgstr[1] "Vor %n Minuten" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Vor %n Stunde" msgstr[1] "Vor %n Stunden" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "Heute" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "Gestern" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Vor %n Tag" msgstr[1] "Vor %n Tagen" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Vor %n Monat" msgstr[1] "Vor %n Monaten" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "Vor Jahren" @@ -239,32 +239,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Abbrechen" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -543,14 +551,14 @@ msgstr "Neues Passwort" msgid "Reset password" msgstr "Passwort zurücksetzen" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/de_CH/user_ldap.po b/l10n/de_CH/user_ldap.po index 14344bc7b1d..2ae224c6325 100644 --- a/l10n/de_CH/user_ldap.po +++ b/l10n/de_CH/user_ldap.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -427,41 +427,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "Spezielle Eigenschaften" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "Kontingent-Feld" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "Standard-Kontingent" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "in Bytes" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "E-Mail-Feld" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "Benennungsregel für das Home-Verzeichnis des Benutzers" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Ohne Eingabe wird der Benutzername (Standard) verwendet. Anderenfalls tragen Sie bitte ein LDAP/AD-Attribut ein." -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "Interner Benutzername" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -477,15 +488,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "Standardmässig wird der interne Benutzername mittels des UUID-Attributes erzeugt. Dies stellt sicher, dass der Benutzername einzigartig ist und keinerlei Zeichen konvertiert werden müssen. Der interne Benutzername unterliegt Beschränkungen, die nur die nachfolgenden Zeichen erlauben: [ a-zA-Z0-9_.@- ]. Andere Zeichen werden mittels ihrer korrespondierenden Zeichen ersetzt oder einfach ausgelassen. Bei Kollisionen wird ein Zähler hinzugefügt bzw. der Zähler um einen Wert erhöht. Der interne Benutzername wird benutzt, um einen Benutzer intern zu identifizieren. Es ist ebenso der standardmässig vorausgewählte Namen des Heimatverzeichnisses. Es ist auch ein Teil der Remote-URLs - zum Beispiel für alle *DAV-Dienste. Mit dieser Einstellung kann das Standardverhalten überschrieben werden. Um ein ähnliches Verhalten wie vor ownCloud 5 zu erzielen, fügen Sie das anzuzeigende Attribut des Benutzernamens in das nachfolgende Feld ein. Lassen Sie dies hingegen für das Standardverhalten leer. Die Änderungen werden sich nur auf neu gemappte (hinzugefügte) LDAP-Benutzer auswirken." -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "Interne Eigenschaften des Benutzers:" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "UUID-Erkennung überschreiben" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -496,19 +507,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Standardmässig wird die UUID-Eigenschaft automatisch erkannt. Die UUID-Eigenschaft wird genutzt, um einen LDAP-Benutzer und Gruppen einwandfrei zu identifizieren. Ausserdem wird der interne Benutzername erzeugt, der auf Eigenschaften der UUID basiert, wenn es oben nicht anders angegeben wurde. Sie müssen allerdings sicherstellen, dass Ihre gewählten Eigenschaften zur Identifikation der Benutzer und Gruppen eindeutig sind und zugeordnet werden können. Lassen Sie es frei, um es beim Standardverhalten zu belassen. Änderungen wirken sich nur auf neu gemappte (hinzugefügte) LDAP-Benutzer und -Gruppen aus." -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "LDAP-Benutzernamenzuordnung" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -522,10 +533,10 @@ msgid "" "experimental stage." msgstr "Die Benutzernamen werden genutzt, um (Meta)Daten zuzuordnen und zu speichern. Um Benutzer eindeutig und präzise zu identifizieren, hat jeder LDAP-Benutzer einen internen Benutzernamen. Dies erfordert eine Zuordnung (mappen) von Benutzernamen zum LDAP-Benutzer. Der erstellte Benutzername wird der UUID des LDAP-Benutzernamens zugeordnet. Zusätzlich wird der DN zwischengespeichert, um die Interaktion mit dem LDAP zu minimieren, was aber nicht der Identifikation dient. Ändert sich der DN, werden die Änderungen durch gefunden. Der interne Benutzername, wird in überall verwendet. Werden die Zuordnungen gelöscht, bleiben überall Reste zurück. Die Löschung der Zuordnungen kann nicht in der Konfiguration vorgenommen werden, beeinflusst aber die LDAP-Konfiguration! Löschen Sie niemals die Zuordnungen in einer produktiven Umgebung. Löschen Sie die Zuordnungen nur in einer Test- oder Experimentierumgebung." -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "Lösche LDAP-Benutzernamenzuordnung" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Lösche LDAP-Gruppennamenzuordnung" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 16a7061e933..c04fc90ee20 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-23 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 10:50+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -28,24 +28,24 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "Ablaufdatum liegt in der Vergangenheit." -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "An folgende Benutzer konnte keine E-Mail gesendet werden: %s" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "Wartungsmodus eingeschaltet " -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "Wartungsmodus ausgeschaltet" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "Datenbank aktualisiert" @@ -145,63 +145,63 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "Speichern..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Vor %n Minute" msgstr[1] "Vor %n Minuten" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Vor %n Stunde" msgstr[1] "Vor %n Stunden" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "Heute" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "Gestern" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Vor %n Tag" msgstr[1] "Vor %n Tagen" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Vor %n Monat" msgstr[1] "Vor %n Monaten" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "Vor Jahren" @@ -240,32 +240,40 @@ msgid "One file conflict" msgstr "Ein Dateikonflikt" #: js/oc-dialogs.js:367 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" msgstr "Welche Dateien möchten Sie behalten?" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Wenn Sie beide Versionen auswählen, erhält die kopierte Datei eine Zahl am Ende des Dateinamens." -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Abbrechen" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "Fortsetzen" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "(Alle ausgewählt)" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "({count} ausgewählt)" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "Fehler beim Laden der vorhanden Dateivorlage" @@ -544,14 +552,14 @@ msgstr "Neues Passwort" msgid "Reset password" msgstr "Passwort zurücksetzen" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "Mac OSX wird nicht unterstützt und %s wird auf dieser Platform nicht korrekt funktionieren. Benutzung auf eigenes Risiko!" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "Für die besten Resultate sollte stattdessen ein GNU/Linux Server verwendet werden." diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index 721016886e3..07050c277c5 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -425,41 +425,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "Wenn aktiviert, werden Gruppen, die Gruppen enthalten, unterstützt. (Funktioniert nur, wenn das Merkmal des Gruppenmitgliedes den Domain-Namen enthält.)" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "Spezielle Eigenschaften" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "Kontingent-Feld" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "Standard-Kontingent" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "in Bytes" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "E-Mail-Feld" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "Benennungsregel für das Home-Verzeichnis des Benutzers" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Ohne Eingabe wird der Benutzername (Standard) verwendet. Anderenfalls tragen Sie bitte ein LDAP/AD-Attribut ein." -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "Interner Benutzername" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -475,15 +486,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "Standardmäßig wird der interne Benutzername mittels des UUID-Attributes erzeugt. Dies stellt sicher, dass der Benutzername einzigartig ist und keinerlei Zeichen konvertiert werden müssen. Der interne Benutzername unterliegt Beschränkungen, die nur die nachfolgenden Zeichen erlauben: [ a-zA-Z0-9_.@- ]. Andere Zeichen werden mittels ihrer korrespondierenden Zeichen ersetzt oder einfach ausgelassen. Bei Kollisionen wird ein Zähler hinzugefügt bzw. der Zähler um einen Wert erhöht. Der interne Benutzername wird benutzt, um einen Benutzer intern zu identifizieren. Es ist ebenso der standardmäßig vorausgewählte Namen des Heimatverzeichnisses. Es ist auch ein Teil der Remote-URLs - zum Beispiel für alle *DAV-Dienste. Mit dieser Einstellung kann das Standardverhalten überschrieben werden. Um ein ähnliches Verhalten wie vor ownCloud 5 zu erzielen, fügen Sie das anzuzeigende Attribut des Benutzernamens in das nachfolgende Feld ein. Lassen Sie dies hingegen für das Standardverhalten leer. Die Änderungen werden sich nur auf neu gemappte (hinzugefügte) LDAP-Benutzer auswirken." -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "Interne Eigenschaften des Benutzers:" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "UUID-Erkennung überschreiben" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -494,19 +505,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Standardmäßig wird die UUID-Eigenschaft automatisch erkannt. Die UUID-Eigenschaft wird genutzt, um einen LDAP-Benutzer und Gruppen einwandfrei zu identifizieren. Außerdem wird der interne Benutzername erzeugt, der auf Eigenschaften der UUID basiert, wenn es oben nicht anders angegeben wurde. Sie müssen allerdings sicherstellen, dass Ihre gewählten Eigenschaften zur Identifikation der Benutzer und Gruppen eindeutig sind und zugeordnet werden können. Lassen Sie es frei, um es beim Standardverhalten zu belassen. Änderungen wirken sich nur auf neu gemappte (hinzugefügte) LDAP-Benutzer und -Gruppen aus." -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "UUID-Attribute für Benutzer:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "UUID-Attribute für Gruppen:" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "LDAP-Benutzernamenzuordnung" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -520,10 +531,10 @@ msgid "" "experimental stage." msgstr "Die Benutzernamen werden genutzt, um (Meta)Daten zuzuordnen und zu speichern. Um Benutzer eindeutig und präzise zu identifizieren, hat jeder LDAP-Benutzer einen internen Benutzernamen. Dies erfordert eine Zuordnung (mappen) von Benutzernamen zum LDAP-Benutzer. Der erstellte Benutzername wird der UUID des LDAP-Benutzernamens zugeordnet. Zusätzlich wird der DN zwischengespeichert, um die Interaktion mit dem LDAP zu minimieren, was aber nicht der Identifikation dient. Ändert sich der DN, werden die Änderungen durch gefunden. Der interne Benutzername, wird in überall verwendet. Werden die Zuordnungen gelöscht, bleiben überall Reste zurück. Die Löschung der Zuordnungen kann nicht in der Konfiguration vorgenommen werden, beeinflusst aber die LDAP-Konfiguration! Löschen Sie niemals die Zuordnungen in einer produktiven Umgebung. Löschen Sie die Zuordnungen nur in einer Test- oder Experimentierumgebung." -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "Lösche LDAP-Benutzernamenzuordnung" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Lösche LDAP-Gruppennamenzuordnung" diff --git a/l10n/el/core.po b/l10n/el/core.po index 7f52a39aed6..e12cf5bd9ae 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-01 01:55-0400\n" -"PO-Revision-Date: 2014-03-31 16:30+0000\n" -"Last-Translator: pe_ppe \n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -144,63 +144,63 @@ msgstr "Νοέμβριος" msgid "December" msgstr "Δεκέμβριος" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Ρυθμίσεις" -#: js/js.js:543 +#: js/js.js:564 msgid "Saving..." msgstr "Γίνεται αποθήκευση..." -#: js/js.js:1103 +#: js/js.js:1124 msgid "seconds ago" msgstr "δευτερόλεπτα πριν" -#: js/js.js:1104 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n λεπτό πριν" msgstr[1] "%n λεπτά πριν" -#: js/js.js:1105 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n ώρα πριν" msgstr[1] "%n ώρες πριν" -#: js/js.js:1106 +#: js/js.js:1127 msgid "today" msgstr "σήμερα" -#: js/js.js:1107 +#: js/js.js:1128 msgid "yesterday" msgstr "χτες" -#: js/js.js:1108 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n ημέρα πριν" msgstr[1] "%n ημέρες πριν" -#: js/js.js:1109 +#: js/js.js:1130 msgid "last month" msgstr "τελευταίο μήνα" -#: js/js.js:1110 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n μήνας πριν" msgstr[1] "%n μήνες πριν" -#: js/js.js:1111 +#: js/js.js:1132 msgid "months ago" msgstr "μήνες πριν" -#: js/js.js:1112 +#: js/js.js:1133 msgid "last year" msgstr "τελευταίο χρόνο" -#: js/js.js:1113 +#: js/js.js:1134 msgid "years ago" msgstr "χρόνια πριν" @@ -239,32 +239,40 @@ msgid "One file conflict" msgstr "Ένα αρχείο διαφέρει" #: js/oc-dialogs.js:367 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" msgstr "Ποια αρχεία θέλετε να κρατήσετε;" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Εάν επιλέξετε και τις δυο εκδοχές, ένας αριθμός θα προστεθεί στο αντιγραφόμενο αρχείο." -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Άκυρο" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "Συνέχεια" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "(όλα τα επιλεγμένα)" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "({count} επιλέχθησαν)" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "Σφάλμα κατά την φόρτωση του προτύπου ύπαρξης αρχείου" diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index aeb2e200366..690afb7856d 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-01 01:55-0400\n" -"PO-Revision-Date: 2014-03-31 17:11+0000\n" -"Last-Translator: pe_ppe \n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -422,41 +422,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "Ειδικά Χαρακτηριστικά " -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "Ποσοσταση πεδιου" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "Προκαθισμενο πεδιο" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "σε bytes" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "Email τυπος" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "Χρήστης Προσωπικόςφάκελος Ονομασία Κανόνας " -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Αφήστε το κενό για το όνομα χρήστη (προεπιλογή). Διαφορετικά, συμπληρώστε μία ιδιότητα LDAP/AD." -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "Εσωτερικό Όνομα Χρήστη" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -472,15 +483,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "Εξ ορισμού, το εσωτερικό όνομα χρήστη θα δημιουργηθεί από το χαρακτηριστικό UUID. Αυτό βεβαιώνει ότι το όνομα χρήστη είναι μοναδικό και δεν χρειάζεται μετατροπή χαρακτήρων. Το εσωτερικό όνομα χρήστη έχει τον περιορισμό ότι μόνο αυτοί οι χαρακτήρες επιτρέπονται: [ a-zA-Z0-9_.@- ]. Οι άλλοι χαρακτήρες αντικαθίστανται με τους αντίστοιχους ASCII ή απλά παραλείπονται. Στις συγκρούσεις ένας αριθμός θα προστεθεί / αυξηθεί. Το εσωτερικό όνομα χρήστη χρησιμοποιείται για την αναγνώριση ενός χρήστη εσωτερικά. Είναι επίσης το προεπιλεγμένο όνομα για τον αρχικό φάκελο χρήστη. Αποτελεί επίσης μέρος των απομακρυσμένων διευθύνσεων URL, για παράδειγμα για όλες τις υπηρεσίες *DAV. Με αυτή τη ρύθμιση, η προεπιλεγμένη συμπεριφορά μπορεί να παρακαμφθεί. Για να επιτευχθεί μια παρόμοια συμπεριφορά όπως πριν το ownCloud 5 εισάγετε το χαρακτηριστικό του προβαλλόμενου ονόματος χρήστη στο παρακάτω πεδίο. Αφήστε το κενό για την προεπιλεγμένη λειτουργία. Οι αλλαγές θα έχουν ισχύ μόνο σε νεώτερους (προστιθέμενους) χρήστες LDAP." -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "Ιδιότητα Εσωτερικού Ονόματος Χρήστη:" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "Παράκαμψη ανίχνευσης UUID" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -491,19 +502,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Από προεπιλογή, το χαρακτηριστικό UUID εντοπίζεται αυτόματα. Το χαρακτηριστικό UUID χρησιμοποιείται για την αναγνώριση χωρίς αμφιβολία χρηστών και ομάδων LDAP. Επίσης, το εσωτερικό όνομα χρήστη θα δημιουργηθεί με βάση το UUID, εφόσον δεν ορίζεται διαφορετικά ανωτέρω. Μπορείτε να παρακάμψετε τη ρύθμιση και να ορίσετε ένα χαρακτηριστικό της επιλογής σας. Θα πρέπει να βεβαιωθείτε ότι το χαρακτηριστικό της επιλογής σας μπορεί να ληφθεί για τους χρήστες και τις ομάδες και ότι είναι μοναδικό. Αφήστε το κενό για την προεπιλεγμένη λειτουργία. Οι αλλαγές θα έχουν ισχύ μόνο σε πρόσφατα αντιστοιχισμένους (προστιθέμενους) χρήστες και ομάδες LDAP." -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "Χαρακτηριστικό UUID για Χρήστες:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "Χαρακτηριστικό UUID για Ομάδες:" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "Αντιστοίχιση Χρηστών Όνομα Χρήστη-LDAP" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -517,10 +528,10 @@ msgid "" "experimental stage." msgstr "Τα ονόματα χρηστών χρησιμοποιούνται για την αποθήκευση και την ανάθεση (μετα) δεδομένων. Προκειμένου να προσδιοριστούν με ακρίβεια και να αναγνωρίστουν οι χρήστες, κάθε χρήστης LDAP θα έχει ένα εσωτερικό όνομα. Αυτό απαιτεί μια αντιστοίχιση του ονόματος χρήστη με το χρήστη LDAP. Το όνομα χρήστη που δημιουργήθηκε αντιστοιχίζεται στην UUID του χρήστη LDAP. Επιπροσθέτως, το DN αποθηκεύεται προσωρινά (cache) ώστε να μειωθεί η αλληλεπίδραση LDAP, αλλά δεν χρησιμοποιείται για την ταυτοποίηση. Αν το DN αλλάξει, οι αλλαγές θα βρεθούν. Το εσωτερικό όνομα χρήστη χρησιμοποιείται παντού. Η εκκαθάριση των αντιστοιχίσεων θα αφήσει κατάλοιπα παντού. Η εκκαθάριση των αντιστοιχίσεων δεν επηρεάζεται από τη διαμόρφωση, επηρεάζει όλες τις διαμορφώσεις LDAP! Μην διαγράψετε ποτέ τις αντιστοιχίσεις σε ένα λειτουργικό περιβάλλον παρά μόνο σε δοκιμές ή σε πειραματικό στάδιο." -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "Διαγραφή αντιστοίχησης Ονόματος Χρήστη LDAP-Χρήστη" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Διαγραφή αντιστοίχησης Ονόματος Ομάδας-LDAP Ομάδας" diff --git a/l10n/en@pirate/core.po b/l10n/en@pirate/core.po index 90ddc87e52a..ccdc20247b6 100644 --- a/l10n/en@pirate/core.po +++ b/l10n/en@pirate/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -18,24 +18,24 @@ msgstr "" "Language: en@pirate\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -135,63 +135,63 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "" -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "" @@ -230,32 +230,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -534,14 +542,14 @@ msgstr "" msgid "Reset password" msgstr "" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/en@pirate/user_ldap.po b/l10n/en@pirate/user_ldap.po index e236d0b96dc..dc0cd36afee 100644 --- a/l10n/en@pirate/user_ldap.po +++ b/l10n/en@pirate/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -419,41 +419,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -469,15 +480,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -488,19 +499,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -514,10 +525,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/en_GB/core.po b/l10n/en_GB/core.po index b6c1fd256b2..1dd7f065f01 100644 --- a/l10n/en_GB/core.po +++ b/l10n/en_GB/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-23 15:01+0000\n" -"Last-Translator: mnestis \n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -18,24 +18,24 @@ msgstr "" "Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "Expiration date is in the past." -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Couldn't send mail to following users: %s " -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "Turned on maintenance mode" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "Turned off maintenance mode" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "Updated database" @@ -135,63 +135,63 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Settings" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "Saving..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "seconds ago" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minute ago" msgstr[1] "%n minutes ago" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n hour ago" msgstr[1] "%n hours ago" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "today" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "yesterday" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n day ago" msgstr[1] "%n days ago" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "last month" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n month ago" msgstr[1] "%n months ago" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "months ago" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "last year" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "years ago" @@ -230,32 +230,40 @@ msgid "One file conflict" msgstr "One file conflict" #: js/oc-dialogs.js:367 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" msgstr "Which files do you wish to keep?" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "If you select both versions, the copied file will have a number added to its name." -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Cancel" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "Continue" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "(all selected)" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "({count} selected)" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "Error loading file exists template" @@ -534,14 +542,14 @@ msgstr "New password" msgid "Reset password" msgstr "Reset password" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "For the best results, please consider using a GNU/Linux server instead." diff --git a/l10n/en_GB/user_ldap.po b/l10n/en_GB/user_ldap.po index 334316ca9ef..40e5e22c87e 100644 --- a/l10n/en_GB/user_ldap.po +++ b/l10n/en_GB/user_ldap.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" -"Last-Translator: mnestis \n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -420,41 +420,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "When switched on, groups that contain groups are supported. (Only works if the group member attribute contains DNs.)" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "Special Attributes" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "Quota Field" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "Quota Default" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "in bytes" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "Email Field" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "User Home Folder Naming Rule" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "Internal Username" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -470,15 +481,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "By default the internal username will be created from the UUID attribute. It makes sure that the username is unique and characters do not need to be converted. The internal username has the restriction that only these characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced with their ASCII correspondence or simply omitted. On collisions a number will be added/increased. The internal username is used to identify a user internally. It is also the default name for the user home folder. It is also a part of remote URLs, for instance for all *DAV services. With this setting, the default behavior can be overridden. To achieve a similar behaviour as before ownCloud 5 enter the user display name attribute in the following field. Leave it empty for default behaviour. Changes will have effect only on newly mapped (added) LDAP users." -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "Internal Username Attribute:" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "Override UUID detection" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -489,19 +500,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "By default, the UUID attribute is automatically detected. The UUID attribute is used to unambiguously identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behaviour. Changes will have effect only on newly mapped (added) LDAP users and groups." -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "UUID Attribute for Users:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "UUID Attribute for Groups:" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "Username-LDAP User Mapping" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -515,10 +526,10 @@ msgid "" "experimental stage." msgstr "Usernames are used to store and assign (meta) data. In order to precisely identify and recognise users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "Clear Username-LDAP User Mapping" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Clear Groupname-LDAP Group Mapping" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index c6fd33cd860..c82b3cafbeb 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -19,24 +19,24 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "Ĝisdatiĝis datumbazo" @@ -136,63 +136,63 @@ msgstr "Novembro" msgid "December" msgstr "Decembro" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Agordo" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "Konservante..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "sekundoj antaŭe" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "antaŭ %n minuto" msgstr[1] "antaŭ %n minutoj" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "antaŭ %n horo" msgstr[1] "antaŭ %n horoj" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "hodiaŭ" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "hieraŭ" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "antaŭ %n tago" msgstr[1] "antaŭ %n tagoj" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "lastamonate" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "antaŭ %n monato" msgstr[1] "antaŭ %n monatoj" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "monatoj antaŭe" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "lastajare" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "jaroj antaŭe" @@ -231,32 +231,40 @@ msgid "One file conflict" msgstr "Unu dosierkonflikto" #: js/oc-dialogs.js:367 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" msgstr "Kiujn dosierojn vi volas konservi?" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Se vi elektos ambaŭ eldonojn, la kopiota dosiero havos numeron aldonitan al sia nomo." -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Nuligi" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "(ĉiuj elektitas)" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "({count} elektitas)" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -535,14 +543,14 @@ msgstr "Nova pasvorto" msgid "Reset password" msgstr "Rekomenci la pasvorton" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index 1f0d5fdcec3..83e2dc3b628 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -420,41 +420,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "Specialaj atribuoj" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "Kampo de kvoto" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "duumoke" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "Kampo de retpoŝto" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Lasu malplena por uzantonomo (defaŭlto). Alie, specifu LDAP/AD-atributon." -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "Ena uzantonomo" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -470,15 +481,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "Atribuo de ena uzantonomo:" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -489,19 +500,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "UUID-atribuo por uzantoj:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "UUID-atribuo por grupoj:" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -515,10 +526,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/es/core.po b/l10n/es/core.po index 758f1024ad2..808e4ef74ff 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-29 01:55-0400\n" -"PO-Revision-Date: 2014-03-28 06:06+0000\n" -"Last-Translator: victormce \n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -148,63 +148,63 @@ msgstr "Noviembre" msgid "December" msgstr "Diciembre" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Ajustes" -#: js/js.js:543 +#: js/js.js:564 msgid "Saving..." msgstr "Guardando..." -#: js/js.js:1103 +#: js/js.js:1124 msgid "seconds ago" msgstr "segundos antes" -#: js/js.js:1104 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Hace %n minuto" msgstr[1] "Hace %n minutos" -#: js/js.js:1105 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Hace %n hora" msgstr[1] "Hace %n horas" -#: js/js.js:1106 +#: js/js.js:1127 msgid "today" msgstr "hoy" -#: js/js.js:1107 +#: js/js.js:1128 msgid "yesterday" msgstr "ayer" -#: js/js.js:1108 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Hace %n día" msgstr[1] "Hace %n días" -#: js/js.js:1109 +#: js/js.js:1130 msgid "last month" msgstr "el mes pasado" -#: js/js.js:1110 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Hace %n mes" msgstr[1] "Hace %n meses" -#: js/js.js:1111 +#: js/js.js:1132 msgid "months ago" msgstr "meses antes" -#: js/js.js:1112 +#: js/js.js:1133 msgid "last year" msgstr "el año pasado" -#: js/js.js:1113 +#: js/js.js:1134 msgid "years ago" msgstr "años antes" @@ -243,32 +243,40 @@ msgid "One file conflict" msgstr "On conflicto de archivo" #: js/oc-dialogs.js:367 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" msgstr "¿Que archivos deseas mantener?" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Si seleccionas ambas versiones, el archivo copiado tendrá añadido un número en su nombre." -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Cancelar" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "Continuar" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "(seleccionados todos)" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "({count} seleccionados)" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "Error cargando plantilla de archivo existente" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index 81a43116f95..836a65c92ac 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" -"Last-Translator: Jose Luis Tirado \n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -428,41 +428,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "Cuando se active, se permitirán grupos que contenga otros grupos (solo funciona si el atributo de miembro de grupo contiene DNs)." -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "Atributos especiales" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "Cuota" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "Cuota por defecto" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "en bytes" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "E-mail" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "Regla para la carpeta Home de usuario" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Vacío para el nombre de usuario (por defecto). En otro caso, especifique un atributo LDAP/AD." -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "Nombre de usuario interno" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -478,15 +489,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "El nombre de usuario interno será creado de forma predeterminada desde el atributo UUID. Esto asegura que el nombre de usuario es único y los caracteres no necesitan ser convertidos. En el nombre de usuario interno sólo se pueden usar estos caracteres: [ a-zA-Z0-9_.@- ]. El resto de caracteres son sustituidos por su correspondiente en ASCII o simplemente omitidos. En caso de duplicidades, se añadirá o incrementará un número. El nombre de usuario interno es usado para identificar un usuario. Es también el nombre predeterminado para la carpeta personal del usuario en ownCloud. También es parte de URLs remotas, por ejemplo, para todos los servicios *DAV. Con esta configuración el comportamiento predeterminado puede ser cambiado. Para conseguir un comportamiento similar a como era antes de ownCloud 5, introduzca el campo del nombre para mostrar del usuario en la siguiente caja. Déjelo vacío para el comportamiento predeterminado. Los cambios solo tendrán efecto en los usuarios LDAP mapeados (añadidos) recientemente." -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "Atributo Nombre de usuario Interno:" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "Sobrescribir la detección UUID" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -497,19 +508,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Por defecto, el atributo UUID es autodetectado. Este atributo es usado para identificar indudablemente usuarios y grupos LDAP. Además, el nombre de usuario interno será creado en base al UUID, si no ha sido especificado otro comportamiento arriba. Puedes sobrescribir la configuración y pasar un atributo de tu elección. Debes asegurarte de que el atributo de tu elección sea accesible por los usuarios y grupos y ser único. Déjalo en blanco para usar el comportamiento por defecto. Los cambios tendrán efecto solo en los usuarios y grupos de LDAP mapeados (añadidos) recientemente." -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "Atributo UUID para usuarios:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "Atributo UUID para Grupos:" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "Asignación del Nombre de usuario de un usuario LDAP" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -523,10 +534,10 @@ msgid "" "experimental stage." msgstr "Los usuarios son usados para almacenar y asignar (meta) datos. Con el fin de identificar de forma precisa y reconocer usuarios, cada usuario de LDAP tendrá un nombre de usuario interno. Esto requiere un mapeo entre el nombre de usuario y el usuario del LDAP. El nombre de usuario creado es mapeado respecto al UUID del usuario en el LDAP. De forma adicional, el DN es cacheado para reducir la interacción entre el LDAP, pero no es usado para identificar. Si el DN cambia, los cambios serán aplicados. El nombre de usuario interno es usado por encima de todo. Limpiar los mapeos dejará restos por todas partes, no es sensible a configuración, ¡afecta a todas las configuraciones del LDAP! Nunca limpies los mapeos en un entorno de producción, únicamente en una fase de desarrollo o experimental." -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "Borrar la asignación de los Nombres de usuario de los usuarios LDAP" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Borrar la asignación de los Nombres de grupo de los grupos de LDAP" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index 3250550af81..422d04ec0d9 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -19,24 +19,24 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "No se pudieron mandar correos a los siguientes usuarios: %s" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "Modo de mantenimiento activado" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "Modo de mantenimiento desactivado" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "Base de datos actualizada" @@ -136,63 +136,63 @@ msgstr "noviembre" msgid "December" msgstr "diciembre" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Configuración" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "Guardando..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Hace %n minuto" msgstr[1] "Hace %n minutos" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Hace %n hora" msgstr[1] "Hace %n horas" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "hoy" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "ayer" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Hace %n día" msgstr[1] "Hace %n días" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "el mes pasado" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Hace %n mes" msgstr[1] "Hace %n meses" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "meses atrás" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "el año pasado" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "años atrás" @@ -231,32 +231,40 @@ msgid "One file conflict" msgstr "Un archivo en conflicto" #: js/oc-dialogs.js:367 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" msgstr "¿Qué archivos deseas retener?" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Si tu seleccionas ambas versiones, el archivo copiado tendrá un número agregado a su nombre." -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Cancelar" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "Continuar" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "(todos están seleccionados)" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "({count} seleccionados)" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "Error cargando la plantilla de archivo existente" @@ -535,14 +543,14 @@ msgstr "Nueva contraseña:" msgid "Reset password" msgstr "Restablecer contraseña" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index bbccd0908e1..797a098e3a8 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -421,41 +421,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "Atributos Especiales" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "Campo de cuota" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "Cuota por defecto" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "en bytes" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "Campo de e-mail" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "Regla de nombre de los directorios de usuario" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Vacío para el nombre de usuario (por defecto). En otro caso, especificá un atributo LDAP/AD." -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "Nombre interno de usuario" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -471,15 +482,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "Por defecto, el nombre de usuario interno es creado a partir del atributo UUID. Esto asegura que el nombre de usuario es único y no es necesaria una conversión de caracteres. El nombre de usuario interno sólo se pueden usar estos caracteres: [ a-zA-Z0-9_.@- ]. El resto de caracteres son sustituidos por su correspondiente en ASCII o simplemente omitidos. En caso colisiones, se agregará o incrementará un número. El nombre de usuario interno es usado para identificar un usuario. Es también el nombre predeterminado para el directorio personal del usuario en ownCloud. También es parte de las URLs remotas, por ejemplo, para los servicios *DAV. Con esta opción, se puede cambiar el comportamiento por defecto. Para conseguir un comportamiento similar a versiones anteriores a ownCloud 5, ingresá el atributo del nombre mostrado en el campo siguiente. Dejalo vacío para el comportamiento por defecto. Los cambios solo tendrán efecto en los nuevos usuarios LDAP mapeados (agregados)." -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "Atributo Nombre Interno de usuario:" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "Sobrescribir la detección UUID" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -490,19 +501,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Por defecto, el atributo UUID es detectado automáticamente. Este atributo es usado para identificar de manera certera usuarios y grupos LDAP. Además, el nombre de usuario interno será creado en base al UUID, si no fue especificado otro comportamiento más arriba. Podés sobrescribir la configuración y pasar un atributo de tu elección. Tenés que asegurarte que el atributo de tu elección sea accesible por los usuarios y grupos y que sea único. Dejalo en blanco para usar el comportamiento por defecto. Los cambios tendrán efecto sólo en los nuevos usuarios y grupos de LDAP mapeados (agregados)." -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "Atributo UUID para usuarios:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "Atributo UUID para grupos:" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "Asignación del Nombre de usuario de un usuario LDAP" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -516,10 +527,10 @@ msgid "" "experimental stage." msgstr "Los usuarios son usados para almacenar y asignar datos (metadatos). Con el fin de identificar de forma precisa y reconocer usuarios, a cada usuario de LDAP se será asignado un nombre de usuario interno. Esto requiere un mapeo entre el nombre de usuario y el usuario del LDAP. El nombre de usuario creado es mapeado respecto al UUID del usuario en el LDAP. De forma adicional, el DN es dejado en caché para reducir la interacción entre el LDAP, pero no es usado para la identificación. Si el DN cambia, los cambios van a ser aplicados. El nombre de usuario interno es usado en todos los lugares. Vaciar los mapeos, deja restos por todas partes. Vaciar los mapeos, no es sensible a configuración, ¡afecta a todas las configuraciones del LDAP! Nunca limpies los mapeos en un entorno de producción, solamente en fase de desarrollo o experimental." -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "Borrar la asignación de los Nombres de usuario de los usuarios LDAP" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Borrar la asignación de los Nombres de grupo de los grupos de LDAP" diff --git a/l10n/es_CL/core.po b/l10n/es_CL/core.po index e028df6bb61..911131ea81b 100644 --- a/l10n/es_CL/core.po +++ b/l10n/es_CL/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -18,24 +18,24 @@ msgstr "" "Language: es_CL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -135,63 +135,63 @@ msgstr "Noviembre" msgid "December" msgstr "Diciembre" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Configuración" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "" -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "segundos antes" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "hoy" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "ayer" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "mes anterior" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "meses antes" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "último año" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "años anteriores" @@ -230,32 +230,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Cancelar" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -534,14 +542,14 @@ msgstr "" msgid "Reset password" msgstr "" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/es_CL/user_ldap.po b/l10n/es_CL/user_ldap.po index 5a138f0da1b..f1d3cad48fb 100644 --- a/l10n/es_CL/user_ldap.po +++ b/l10n/es_CL/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -419,41 +419,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -469,15 +480,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -488,19 +499,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -514,10 +525,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/es_MX/core.po b/l10n/es_MX/core.po index 7486794d9d7..10a4321b52f 100644 --- a/l10n/es_MX/core.po +++ b/l10n/es_MX/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -17,24 +17,24 @@ msgstr "" "Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "No se pudo enviar el mensaje a los siguientes usuarios: %s" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "Modo mantenimiento activado" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "Modo mantenimiento desactivado" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "Base de datos actualizada" @@ -134,63 +134,63 @@ msgstr "Noviembre" msgid "December" msgstr "Diciembre" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Ajustes" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "Guardando..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "segundos antes" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Hace %n minuto" msgstr[1] "Hace %n minutos" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Hace %n hora" msgstr[1] "Hace %n horas" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "hoy" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "ayer" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Hace %n día" msgstr[1] "Hace %n días" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "el mes pasado" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Hace %n mes" msgstr[1] "Hace %n meses" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "meses antes" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "el año pasado" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "años antes" @@ -229,32 +229,40 @@ msgid "One file conflict" msgstr "Un conflicto de archivo" #: js/oc-dialogs.js:367 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" msgstr "¿Que archivos deseas mantener?" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Si seleccionas ambas versiones, el archivo copiado tendrá añadido un número en su nombre." -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Cancelar" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "Continuar" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "(todos seleccionados)" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "({count} seleccionados)" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "Error cargando plantilla de archivo existente" @@ -533,14 +541,14 @@ msgstr "Nueva contraseña" msgid "Reset password" msgstr "Restablecer contraseña" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/es_MX/user_ldap.po b/l10n/es_MX/user_ldap.po index 78711d7f98b..7687611cb1c 100644 --- a/l10n/es_MX/user_ldap.po +++ b/l10n/es_MX/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -419,41 +419,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "Atributos especiales" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "Cuota" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "Cuota por defecto" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "en bytes" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "E-mail" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "Regla para la carpeta Home de usuario" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Vacío para el nombre de usuario (por defecto). En otro caso, especifique un atributo LDAP/AD." -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "Nombre de usuario interno" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -469,15 +480,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "El nombre de usuario interno será creado de forma predeterminada desde el atributo UUID. Esto asegura que el nombre de usuario es único y los caracteres no necesitan ser convertidos. En el nombre de usuario interno sólo se pueden usar estos caracteres: [ a-zA-Z0-9_.@- ]. El resto de caracteres son sustituidos por su correspondiente en ASCII o simplemente omitidos. En caso de duplicidades, se añadirá o incrementará un número. El nombre de usuario interno es usado para identificar un usuario. Es también el nombre predeterminado para la carpeta personal del usuario en ownCloud. También es parte de URLs remotas, por ejemplo, para todos los servicios *DAV. Con esta configuración el comportamiento predeterminado puede ser cambiado. Para conseguir un comportamiento similar a como era antes de ownCloud 5, introduzca el campo del nombre para mostrar del usuario en la siguiente caja. Déjelo vacío para el comportamiento predeterminado. Los cambios solo tendrán efecto en los usuarios LDAP mapeados (añadidos) recientemente." -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "Atributo Nombre de usuario Interno:" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "Sobrescribir la detección UUID" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -488,19 +499,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Por defecto, el atributo UUID es autodetectado. Este atributo es usado para identificar indudablemente usuarios y grupos LDAP. Además, el nombre de usuario interno será creado en base al UUID, si no ha sido especificado otro comportamiento arriba. Puedes sobrescribir la configuración y pasar un atributo de tu elección. Debes asegurarte de que el atributo de tu elección sea accesible por los usuarios y grupos y ser único. Déjalo en blanco para usar el comportamiento por defecto. Los cambios tendrán efecto solo en los usuarios y grupos de LDAP mapeados (añadidos) recientemente." -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "Atributo UUID para usuarios:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "Atributo UUID para Grupos:" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "Asignación del Nombre de usuario de un usuario LDAP" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -514,10 +525,10 @@ msgid "" "experimental stage." msgstr "Los usuarios son usados para almacenar y asignar (meta) datos. Con el fin de identificar de forma precisa y reconocer usuarios, cada usuario de LDAP tendrá un nombre de usuario interno. Esto requiere un mapeo entre el nombre de usuario y el usuario del LDAP. El nombre de usuario creado es mapeado respecto al UUID del usuario en el LDAP. De forma adicional, el DN es cacheado para reducir la interacción entre el LDAP, pero no es usado para identificar. Si el DN cambia, los cambios serán aplicados. El nombre de usuario interno es usado por encima de todo. Limpiar los mapeos dejará restos por todas partes, no es sensible a configuración, ¡afecta a todas las configuraciones del LDAP! Nunca limpies los mapeos en un entorno de producción, únicamente en una fase de desarrollo o experimental." -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "Borrar la asignación de los Nombres de usuario de los usuarios LDAP" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Borrar la asignación de los Nombres de grupo de los grupos de LDAP" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index cad1b261fb2..f006da74b91 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-01 07:30+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -136,63 +136,63 @@ msgstr "November" msgid "December" msgstr "Detsember" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Seaded" -#: js/js.js:543 +#: js/js.js:564 msgid "Saving..." msgstr "Salvestamine..." -#: js/js.js:1103 +#: js/js.js:1124 msgid "seconds ago" msgstr "sekundit tagasi" -#: js/js.js:1104 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut tagasi" msgstr[1] "%n minutit tagasi" -#: js/js.js:1105 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n tund tagasi" msgstr[1] "%n tundi tagasi" -#: js/js.js:1106 +#: js/js.js:1127 msgid "today" msgstr "täna" -#: js/js.js:1107 +#: js/js.js:1128 msgid "yesterday" msgstr "eile" -#: js/js.js:1108 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n päev tagasi" msgstr[1] "%n päeva tagasi" -#: js/js.js:1109 +#: js/js.js:1130 msgid "last month" msgstr "viimasel kuul" -#: js/js.js:1110 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n kuu tagasi" msgstr[1] "%n kuud tagasi" -#: js/js.js:1111 +#: js/js.js:1132 msgid "months ago" msgstr "kuu tagasi" -#: js/js.js:1112 +#: js/js.js:1133 msgid "last year" msgstr "viimasel aastal" -#: js/js.js:1113 +#: js/js.js:1134 msgid "years ago" msgstr "aastat tagasi" @@ -231,32 +231,40 @@ msgid "One file conflict" msgstr "Üks failikonflikt" #: js/oc-dialogs.js:367 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" msgstr "Milliseid faile sa soovid alles hoida?" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Kui valid mõlemad versioonid, siis lisatakse kopeeritud faili nimele number." -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Loobu" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "Jätka" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "(kõik valitud)" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "({count} valitud)" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "Viga faili olemasolu malli laadimisel" diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index 5997b64962b..7e81ca1b008 100644 --- a/l10n/et_EE/files_external.po +++ b/l10n/et_EE/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-07 15:10+0000\n" +"Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -85,7 +85,7 @@ msgstr "Valikud" #: templates/settings.php:12 msgid "Available for" -msgstr "" +msgstr "Saadaval" #: templates/settings.php:32 msgid "Add storage" @@ -93,7 +93,7 @@ msgstr "Lisa andmehoidla" #: templates/settings.php:92 msgid "No user or group" -msgstr "" +msgstr "Ühtki kasutajat või gruppi" #: templates/settings.php:95 msgid "All Users" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index f5726070dde..01175efd2a3 100644 --- a/l10n/et_EE/user_ldap.po +++ b/l10n/et_EE/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-01 07:05+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -421,41 +421,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "Sisse lülitamisel on toetatakse gruppe sisaldavad gruppe. (Toimib, kui grupi liikme atribuut sisaldab DN-e.)" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "Spetsiifilised atribuudid" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "Mahupiirangu atribuut" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "Vaikimisi mahupiirang" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "baitides" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "E-posti väli" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "Kasutaja kodukataloogi nimetamise reegel" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Kasutajanime (vaikeväärtus) kasutamiseks jäta tühjaks. Vastasel juhul määra LDAP/AD omadus." -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "Sisemine kasutajanimi" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -471,15 +482,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "Vaikimisi tekitatakse sisemine kasutajanimi UUID atribuudist. See tagab, et kasutajanimi on unikaalne ja sümboleid pole vaja muuta. Sisemisel kasutajatunnuse puhul on lubatud ainult järgmised sümbolid: [ a-zA-Z0-9_.@- ]. Muud sümbolid asendatakse nende ASCII vastega või lihtsalt hüljatakse. Tõrgete korral lisatakse number või suurendatakse seda. Sisemist kasutajatunnust kasutatakse kasutaja sisemiseks tuvastamiseks. Ühtlasi on see ownCloudis kasutaja vaikimisi kodukataloogi nimeks. See on ka serveri URLi osaks, näiteks kõikidel *DAV teenustel. Selle seadistusega saab tühistada vaikimisi käitumise. Saavutamaks sarnast käitumist eelnevate ownCloud 5 versioonidega, sisesta kasutaja kuvatava nime atribuut järgnevale väljale. Vaikimisi seadistuseks jäta tühjaks. Muudatused mõjutavad ainult uusi (lisatud) LDAP kasutajate vastendusi." -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "Sisemise kasutajatunnuse atribuut:" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "Tühista UUID tuvastus" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -490,19 +501,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Vaikimis ownCloud tuvastab automaatselt UUID atribuudi. UUID atribuuti kasutatakse LDAP kasutajate ja gruppide kindlaks tuvastamiseks. Samuti tekitatakse sisemine kasutajanimi UUID alusel, kui pole määratud teisiti. Sa saad tühistada selle seadistuse ning määrata atribuudi omal valikul. Pead veenduma, et valitud atribuut toimib nii kasutajate kui gruppide puhul ning on unikaalne. Vaikimisi seadistuseks jäta tühjaks. Muudatused mõjutavad ainult uusi (lisatud) LDAP kasutajate vastendusi." -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "UUID atribuut kasutajatele:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "UUID atribuut gruppidele:" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "LDAP-Kasutajatunnus Kasutaja Vastendus" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -516,10 +527,10 @@ msgid "" "experimental stage." msgstr "ownCloud kasutab kasutajanime talletamaks ja omistamaks (pseudo) andmeid. Et täpselt tuvastada ja määratleda kasutajaid, peab iga LDAP kasutaja omama sisemist kasutajatunnust. See vajab ownCloud kasutajatunnuse vastendust LDAP kasutajaks. Tekitatud kasutajanimi vastendatakse LDAP kasutaja UUID-iks. Lisaks puhverdatakse DN vähendamaks LDAP päringuid, kuid seda ei kasutata tuvastamisel. ownCloud suudab tuvastada ka DN muutumise. ownCloud sisemist kasutajatunnust kasutatakse üle kogu ownCloudi. Eemaldates vastenduse tekivad kõikjal andmejäägid. Vastenduste eemaldamine ei ole konfiguratsiooni tundlik, see mõjutab kõiki LDAP seadistusi! Ära kunagi eemalda vastendusi produktsioonis! Seda võid teha ainult testis või katsetuste masinas." -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "Puhasta LDAP-Kasutajatunnus Kasutaja Vastendus" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Puhasta LDAP-Grupinimi Grupp Vastendus" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index caf5ea80714..aa87563e834 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -19,24 +19,24 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Ezin izan da posta bidali hurrengo erabiltzaileei: %s" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "Mantenu modua gaitu da" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "Mantenu modua desgaitu da" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "Datu basea eguneratu da" @@ -136,63 +136,63 @@ msgstr "Azaroa" msgid "December" msgstr "Abendua" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Ezarpenak" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "Gordetzen..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "segundu" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "orain dela minutu %n" msgstr[1] "orain dela %n minutu" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "orain dela ordu %n" msgstr[1] "orain dela %n ordu" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "gaur" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "atzo" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "orain dela egun %n" msgstr[1] "orain dela %n egun" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "joan den hilabetean" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "orain dela hilabete %n" msgstr[1] "orain dela %n hilabete" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "hilabete" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "joan den urtean" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "urte" @@ -231,32 +231,40 @@ msgid "One file conflict" msgstr "Fitxategi batek konfliktua sortu du" #: js/oc-dialogs.js:367 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" msgstr "Ze fitxategi mantendu nahi duzu?" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Bi bertsioak hautatzen badituzu, kopiatutako fitxategiaren izenean zenbaki bat atxikituko zaio." -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Ezeztatu" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "Jarraitu" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "(denak hautatuta)" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "({count} hautatuta)" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "Errorea fitxategia existitzen da txantiloiak kargatzerakoan" @@ -535,14 +543,14 @@ msgstr "Pasahitz berria" msgid "Reset password" msgstr "Berrezarri pasahitza" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 502322ad159..2b4fbff486d 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -420,41 +420,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "Atributu Bereziak" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "Kuota Eremua" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "Kuota Lehenetsia" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "bytetan" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "Eposta eremua" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "Erabiltzailearen Karpeta Nagusia Izendatzeko Patroia" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Utzi hutsik erabiltzaile izenarako (lehentsia). Bestela zehaztu LDAP/AD atributua." -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "Barneko erabiltzaile izena" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -470,15 +481,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "Baliogabeko Erabiltzaile Izen atributua" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "Gainidatzi UUID antzematea" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -489,19 +500,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "Erabiltzaileentzako UUID atributuak:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "Taldeentzako UUID atributuak:" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -515,10 +526,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/eu_ES/core.po b/l10n/eu_ES/core.po index d2c3ce4ab95..767e8da8b59 100644 --- a/l10n/eu_ES/core.po +++ b/l10n/eu_ES/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -17,24 +17,24 @@ msgstr "" "Language: eu_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -134,63 +134,63 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "" -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "" @@ -229,32 +229,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Ezeztatu" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -533,14 +541,14 @@ msgstr "" msgid "Reset password" msgstr "" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/eu_ES/user_ldap.po b/l10n/eu_ES/user_ldap.po index bbc3027bfca..8e28c9a6557 100644 --- a/l10n/eu_ES/user_ldap.po +++ b/l10n/eu_ES/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -419,41 +419,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -469,15 +480,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -488,19 +499,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -514,10 +525,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index f16b1d2870f..119af666fc7 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -18,24 +18,24 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -135,59 +135,59 @@ msgstr "نوامبر" msgid "December" msgstr "دسامبر" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "تنظیمات" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "در حال ذخیره سازی..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "ثانیه‌ها پیش" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "امروز" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "دیروز" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "ماه قبل" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "ماه‌های قبل" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "سال قبل" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "سال‌های قبل" @@ -225,32 +225,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "منصرف شدن" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -529,14 +537,14 @@ msgstr "گذرواژه جدید" msgid "Reset password" msgstr "دوباره سازی گذرواژه" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index 978827d9d51..1a904629e87 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -418,41 +418,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "ویژگی های مخصوص" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "سهمیه بندی انجام نشد." -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "سهمیه بندی پیش فرض" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "در بایت" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "ایمیل ارسال نشد." -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "قانون نامگذاری پوشه خانه کاربر" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "خالی گذاشتن برای نام کاربری (پیش فرض). در غیر این صورت، تعیین یک ویژگی LDAP/AD." -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "نام کاربری داخلی" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -468,15 +479,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "ویژگی نام کاربری داخلی:" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "نادیده گرفتن تشخیص UUID " -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -487,19 +498,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "نام کاربری - نگاشت کاربر LDAP " -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -513,10 +524,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "پاک کردن نام کاربری- LDAP نگاشت کاربر " -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "پاک کردن نام گروه -LDAP گروه نقشه برداری" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 5a164229847..267d952cacc 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -20,24 +20,24 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "Päättymispäivä on menneisyydessä." -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Sähköpostin lähetys seuraaville käyttäjille epäonnistui: %s" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "Siirrytty ylläpitotilaan" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "Ylläpitotila laitettu pois päältä" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "Tietokanta ajan tasalla" @@ -137,63 +137,63 @@ msgstr "marraskuu" msgid "December" msgstr "joulukuu" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Asetukset" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "Tallennetaan..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "sekuntia sitten" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minuutti sitten" msgstr[1] "%n minuuttia sitten" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n tunti sitten" msgstr[1] "%n tuntia sitten" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "tänään" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "eilen" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n päivä sitten" msgstr[1] "%n päivää sitten" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "viime kuussa" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n kuukausi sitten" msgstr[1] "%n kuukautta sitten" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "kuukautta sitten" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "viime vuonna" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "vuotta sitten" @@ -232,32 +232,40 @@ msgid "One file conflict" msgstr "Yhden tiedoston ristiriita" #: js/oc-dialogs.js:367 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" msgstr "Mitkä tiedostot haluat säilyttää?" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Jos valitset kummatkin versiot, kopioidun tiedoston nimeen lisätään numero." -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Peru" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "Jatka" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "(kaikki valittu)" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "({count} valittu)" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "Virhe ladatessa mallipohjaa" @@ -536,14 +544,14 @@ msgstr "Uusi salasana" msgid "Reset password" msgstr "Palauta salasana" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index 83464ec1114..4bd3ca6c6ae 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -419,41 +419,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "tavuissa" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "Sähköpostikenttä" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Jätä tyhjäksi käyttäjänimi (oletusasetus). Muutoin anna LDAP/AD-atribuutti." -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -469,15 +480,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -488,19 +499,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -514,10 +525,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 874c40d0d41..196546196fe 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-07 01:55-0400\n" -"PO-Revision-Date: 2014-04-06 19:40+0000\n" -"Last-Translator: Christophe Lherieau \n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -237,32 +237,40 @@ msgid "One file conflict" msgstr "Un conflit de fichier" #: js/oc-dialogs.js:367 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" msgstr "Quels fichiers désirez-vous garder ?" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Si vous sélectionnez les deux versions, un nombre sera ajouté au nom du fichier copié." -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Annuler" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "Poursuivre" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "(tous sélectionnés)" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "({count} sélectionnés)" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "Erreur de chargement du modèle de fichier existant" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index 09a7f945aba..cde39796c94 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" -"Last-Translator: Christophe Lherieau \n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -422,41 +422,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "Si activé, les groupes contenant d'autres groupes sont supportés (fonctionne uniquement si l'attribut membre du groupe contient des DNs)." -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "Attributs spéciaux" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "Champ du quota" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "Quota par défaut" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "en bytes" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "Champ Email" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "Convention de nommage du répertoire utilisateur" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Laisser vide " -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "Nom d'utilisateur interne" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -472,15 +483,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "Par défaut le nom d'utilisateur interne sera créé à partir de l'attribut UUID. Ceci permet d'assurer que le nom d'utilisateur est unique et que les caractères ne nécessitent pas de conversion. Le nom d'utilisateur interne doit contenir uniquement les caractères suivants : [ a-zA-Z0-9_.@- ]. Les autres caractères sont remplacés par leur correspondance ASCII ou simplement omis. En cas de collision, un nombre est incrémenté/décrémenté. Le nom d'utilisateur interne est utilisé pour identifier l'utilisateur au sein du système. C'est aussi le nom par défaut du répertoire utilisateur dans ownCloud. C'est aussi le port d'URLs distants, par exemple pour tous les services *DAV. Le comportement par défaut peut être modifié à l'aide de ce paramètre. Pour obtenir un comportement similaire aux versions précédentes à ownCloud 5, saisir le nom d'utilisateur à afficher dans le champ suivant. Laissez à blanc pour le comportement par défaut. Les modifications prendront effet seulement pour les nouveaux (ajoutés) utilisateurs LDAP." -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "Nom d'utilisateur interne:" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "Surcharger la détection d'UUID" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -491,19 +502,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Par défaut, l'attribut UUID est automatiquement détecté. Cet attribut est utilisé pour identifier les utilisateurs et groupes de façon fiable. Un nom d'utilisateur interne basé sur l'UUID sera automatiquement créé, sauf s'il est spécifié autrement ci-dessus. Vous pouvez modifier ce comportement et définir l'attribut de votre choix. Vous devez alors vous assurer que l'attribut de votre choix peut être récupéré pour les utilisateurs ainsi que pour les groupes et qu'il soit unique. Laisser à blanc pour le comportement par défaut. Les modifications seront effectives uniquement pour les nouveaux (ajoutés) utilisateurs et groupes LDAP." -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "Attribut UUID pour les utilisateurs :" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "Attribut UUID pour les groupes :" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "Association Nom d'utilisateur-Utilisateur LDAP" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -517,10 +528,10 @@ msgid "" "experimental stage." msgstr "Les noms d'utilisateurs sont utilisés pour le stockage et l'assignation de (meta) données. Pour identifier et reconnaitre précisément les utilisateurs, chaque utilisateur LDAP aura un nom interne spécifique. Cela requiert l'association d'un nom d'utilisateur ownCloud à un nom d'utilisateur LDAP. Le nom d'utilisateur créé est associé à l'attribut UUID de l'utilisateur LDAP. Par ailleurs, le DN est mémorisé en cache pour limiter les interactions LDAP mais il n'est pas utilisé pour l'identification. Si le DN est modifié, ces modifications seront retrouvées. Seul le nom interne à ownCloud est utilisé au sein du produit. Supprimer les associations créera des orphelins et l'action affectera toutes les configurations LDAP. NE JAMAIS SUPPRIMER LES ASSOCIATIONS EN ENVIRONNEMENT DE PRODUCTION, mais uniquement sur des environnements de tests et d'expérimentation." -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "Supprimer l'association utilisateur interne-utilisateur LDAP" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Supprimer l'association nom de groupe-groupe LDAP" diff --git a/l10n/fr_CA/core.po b/l10n/fr_CA/core.po index a2dc9cb6682..cc4a62b68dd 100644 --- a/l10n/fr_CA/core.po +++ b/l10n/fr_CA/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (Canada) (http://www.transifex.com/projects/p/owncloud/language/fr_CA/)\n" "MIME-Version: 1.0\n" @@ -17,24 +17,24 @@ msgstr "" "Language: fr_CA\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -134,63 +134,63 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "" -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "" @@ -229,32 +229,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -533,14 +541,14 @@ msgstr "" msgid "Reset password" msgstr "" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/fr_CA/user_ldap.po b/l10n/fr_CA/user_ldap.po index e513ed6934f..193204b8c23 100644 --- a/l10n/fr_CA/user_ldap.po +++ b/l10n/fr_CA/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (Canada) (http://www.transifex.com/projects/p/owncloud/language/fr_CA/)\n" "MIME-Version: 1.0\n" @@ -419,41 +419,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -469,15 +480,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -488,19 +499,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -514,10 +525,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 7839bd4996c..80e4b68f99a 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-23 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 10:00+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -19,24 +19,24 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "A data de caducidade está no pasado." -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Non é posíbel enviar correo aos usuarios seguintes: %s" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "Modo de mantemento activado" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "Modo de mantemento desactivado" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "Base de datos actualizada" @@ -136,63 +136,63 @@ msgstr "novembro" msgid "December" msgstr "decembro" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Axustes" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "Gardando..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "hai %n minuto" msgstr[1] "hai %n minutos" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "hai %n hora" msgstr[1] "hai %n horas" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "hoxe" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "onte" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "hai %n día" msgstr[1] "hai %n días" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "último mes" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "hai %n mes" msgstr[1] "hai %n meses" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "meses atrás" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "último ano" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "anos atrás" @@ -231,32 +231,40 @@ msgid "One file conflict" msgstr "Un conflito de ficheiro" #: js/oc-dialogs.js:367 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" msgstr "Que ficheiros quere conservar?" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Se selecciona ambas versións, o ficheiro copiado terá un número engadido ao nome." -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Cancelar" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "Continuar" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "(todo o seleccionado)" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "({count} seleccionados)" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "Produciuse un erro ao cargar o modelo de ficheiro existente" @@ -535,14 +543,14 @@ msgstr "Novo contrasinal" msgid "Reset password" msgstr "Restabelecer o contrasinal" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "Mac OS X non é compatíbel e %s non funcionará correctamente nesta plataforma. Úseo baixo o seu risco!" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "Para obter mellores resultados, considere o emprego dun servidor GNU/Linux no seu canto." diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index 2070e8c7153..f91b4635d8c 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -421,41 +421,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "Se está activado, admítense grupos que conteñen grupos. (Só funciona se o atributo de membro de grupo conten os DN.)" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "Atributos especiais" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "Campo de cota" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "Cota predeterminada" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "en bytes" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "Campo do correo" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "Regra de nomeado do cartafol do usuario" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Deixar baleiro para o nome de usuario (predeterminado). Noutro caso, especifique un atributo LDAP/AD." -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "Nome de usuario interno" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -471,15 +482,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "De xeito predeterminado, o nome de usuario interno crease a partires do atributo UUID. Asegurase de que o nome de usuario é único e de non ter que converter os caracteres. O nome de usuario interno ten a limitación de que só están permitidos estes caracteres: [ a-zA-Z0-9_.@- ]. Os outros caracteres substitúense pola súa correspondencia ASCII ou simplemente omítense. Nas colisións engadirase/incrementarase un número. O nome de usuario interno utilizase para identificar a un usuario interno. É tamén o nome predeterminado do cartafol persoal do usuario. Tamén é parte dun URL remoto, por exemplo, para todos os servizos *DAV. Con este axuste, o comportamento predeterminado pode ser sobrescrito. Para lograr un comportamento semellante ao anterior ownCloud 5 introduza o atributo do nome para amosar do usuario no seguinte campo. Déixeo baleiro para o comportamento predeterminado. Os cambios terán efecto só nas novas asignacións (engadidos) de usuarios de LDAP." -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "Atributo do nome de usuario interno:" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "Ignorar a detección do UUID" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -490,19 +501,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "De xeito predeterminado, o atributo UUID é detectado automaticamente. O atributo UUID utilizase para identificar, sen dúbida, aos usuarios e grupos LDAP. Ademais, crearase o usuario interno baseado no UUID, se non se especifica anteriormente o contrario. Pode anular a configuración e pasar un atributo da súa escolla. Vostede debe asegurarse de que o atributo da súa escolla pode ser recuperado polos usuarios e grupos e de que é único. Déixeo baleiro para o comportamento predeterminado. Os cambios terán efecto só nas novas asignacións (engadidos) de usuarios de LDAP." -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "Atributo do UUID para usuarios:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "Atributo do UUID para grupos:" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "Asignación do usuario ao «nome de usuario LDAP»" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -516,10 +527,10 @@ msgid "" "experimental stage." msgstr "Os nomes de usuario empreganse para almacenar e asignar (meta) datos. Coa fin de identificar con precisión e recoñecer aos usuarios, cada usuario LDAP terá un nome de usuario interno. Isto require unha asignación de ownCloud nome de usuario a usuario LDAP. O nome de usuario creado asignase ao UUID do usuario LDAP. Ademais o DN almacenase na caché, para así reducir a interacción do LDAP, mais non se utiliza para a identificación. Se o DN cambia, os cambios poden ser atopados polo ownCloud. O nome interno no ownCloud utilizase en todo o ownCloud. A limpeza das asignacións deixará rastros en todas partes. A limpeza das asignacións non é sensíbel á configuración, afecta a todas as configuracións de LDAP! Non limpar nunca as asignacións nun entorno de produción. Limpar as asignacións só en fases de proba ou experimentais." -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "Limpar a asignación do usuario ao «nome de usuario LDAP»" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Limpar a asignación do grupo ao «nome de grupo LDAP»" diff --git a/l10n/he/core.po b/l10n/he/core.po index 41af2ccd477..198d901917a 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -19,24 +19,24 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -136,63 +136,63 @@ msgstr "נובמבר" msgid "December" msgstr "דצמבר" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "הגדרות" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "שמירה…" -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "שניות" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "לפני %n דקה" msgstr[1] "לפני %n דקות" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "לפני %n שעה" msgstr[1] "לפני %n שעות" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "היום" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "אתמול" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "לפני %n יום" msgstr[1] "לפני %n ימים" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "חודש שעבר" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "לפני %n חודש" msgstr[1] "לפני %n חודשים" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "חודשים" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "שנה שעברה" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "שנים" @@ -231,32 +231,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "ביטול" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -535,14 +543,14 @@ msgstr "ססמה חדשה" msgid "Reset password" msgstr "איפוס ססמה" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index 5a7b24997c7..761cc4181c9 100644 --- a/l10n/he/user_ldap.po +++ b/l10n/he/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -420,41 +420,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "בבתים" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -470,15 +481,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -489,19 +500,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -515,10 +526,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index ed9d8a2cc5f..465201029d5 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -19,24 +19,24 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -136,63 +136,63 @@ msgstr "नवंबर" msgid "December" msgstr "दिसम्बर" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "सेटिंग्स" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "" -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "" @@ -231,32 +231,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -535,14 +543,14 @@ msgstr "नया पासवर्ड" msgid "Reset password" msgstr "" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/hi/user_ldap.po b/l10n/hi/user_ldap.po index 1c1bdbf62bb..904a9c1fab6 100644 --- a/l10n/hi/user_ldap.po +++ b/l10n/hi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -419,41 +419,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -469,15 +480,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -488,19 +499,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -514,10 +525,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index cc5099c80a1..be6045fb23b 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -17,24 +17,24 @@ msgstr "" "Language: hr\n" "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;\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -134,67 +134,67 @@ msgstr "Studeni" msgid "December" msgstr "Prosinac" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Postavke" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "Spremanje..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "sekundi prije" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "danas" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "jučer" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "prošli mjesec" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "mjeseci" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "prošlu godinu" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "godina" @@ -234,32 +234,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Odustani" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -538,14 +546,14 @@ msgstr "Nova lozinka" msgid "Reset password" msgstr "Poništavanje lozinke" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index 0d0c691cf7a..110b3e10c6c 100644 --- a/l10n/hr/user_ldap.po +++ b/l10n/hr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -421,41 +421,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -471,15 +482,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -490,19 +501,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -516,10 +527,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 954685a0322..42057bd33af 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -20,24 +20,24 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Nem sikerült e-mailt küldeni a következő felhasználóknak: %s" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "A karbantartási mód bekapcsolva" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "A karbantartási mód kikapcsolva" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "Frissítet adatbázis" @@ -137,63 +137,63 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Beállítások" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "Mentés..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "pár másodperce" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n perccel ezelőtt" msgstr[1] "%n perccel ezelőtt" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n órával ezelőtt" msgstr[1] "%n órával ezelőtt" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "ma" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "tegnap" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n nappal ezelőtt" msgstr[1] "%n nappal ezelőtt" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "múlt hónapban" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n hónappal ezelőtt" msgstr[1] "%n hónappal ezelőtt" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "több hónapja" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "tavaly" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "több éve" @@ -232,32 +232,40 @@ msgid "One file conflict" msgstr "Egy file ütközik" #: js/oc-dialogs.js:367 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" msgstr "Melyik file-okat akarod megtartani?" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Ha kiválasztod mindazokaz a verziókat, a másolt fileok neve sorszámozva lesz." -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Mégsem" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "Folytatás" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "(all selected)" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "({count} kiválasztva)" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "Hiba a létező sablon betöltésekor" @@ -536,14 +544,14 @@ msgstr "Az új jelszó" msgid "Reset password" msgstr "Jelszó-visszaállítás" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index 37aa013a6f8..47568fd0f88 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -421,41 +421,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "Különleges attribútumok" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "Kvóta mező" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "Alapértelmezett kvóta" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "bájtban" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "Email mező" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "A home könyvtár elérési útvonala" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Hagyja üresen, ha a felhasználónevet kívánja használni. Ellenkező esetben adjon meg egy LDAP/AD attribútumot!" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "Belső felhasználónév" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -471,15 +482,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "Alapértelmezetten a belső felhasználónév az UUID tulajdonságból jön létre. Ez biztosítja a felhasználónév egyediségét és hogy a nem kell konvertálni a karaktereket benne. A belső felhasználónévnél a megkötés az, hogy csak a következő karakterek engdélyezettek benne: [ a-zA-Z0-9_.@- ]. Ezeken a karaktereken kivül minden karakter le lesz cserélve az adott karakter ASCII kódtáblában használható párjára vagy ha ilyen nincs akkor egyszerűen ki lesz hagyva. Ha így mégis ütköznének a nevek akkor hozzá lesz füzve egy folyamatosan növekvő számláló rész. A belső felhasználónevet lehet használni a felhasználó azonosítására a programon belül. Illetve ez lesz az alapáértelmezett neve a felhasználó kezdő könyvtárának az ownCloud-ban. Illetve..............................." -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "A belső felhasználónév attribútuma:" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "Az UUID-felismerés felülbírálása" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -490,19 +501,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Az UUID attribútum alapértelmezetten felismerésre kerül. Az UUID attribútum segítségével az LDAP felhasználók és csoportok egyértelműen azonosíthatók. A belső felhasználónév is azonos lesz az UUID-vel, ha fentebb nincs másként definiálva. Ezt a beállítást felülbírálhatja és bármely attribútummal helyettesítheti. Ekkor azonban gondoskodnia kell arról, hogy a kiválasztott attribútum minden felhasználó és csoport esetén lekérdezhető és egyedi értékkel bír. Ha a mezőt üresen hagyja, akkor az alapértelmezett attribútum lesz érvényes. Egy esetleges módosítás csak az újonnan hozzárendelt (ill. létrehozott) felhasználókra és csoportokra lesz érvényes." -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "A felhasználók UUID attribútuma:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "A csoportok UUID attribútuma:" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "Felhasználó - LDAP felhasználó hozzárendelés" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -516,10 +527,10 @@ msgid "" "experimental stage." msgstr "A felhasználónevek segítségével történik a (meta)adatok tárolása és hozzárendelése. A felhasználók pontos azonosítása céljából minden LDAP felhasználóhoz egy belső felhasználónevet rendelünk. Ezt a felhasználónevet az LDAP felhasználó UUID attribútumához rendeljük hozzá. Ezen túlmenően a DN is tárolásra kerül a gyorsítótárban, hogy csökkentsük az LDAP lekérdezések számát, de a DN-t nem használjuk azonosításra. Ha a DN megváltozik, akkor a rendszer ezt észleli. A belső felhasználóneveket a rendszer igen sok helyen használja, ezért a hozzárendelések törlése sok érvénytelen adatrekordot eredményez az adatbázisban. A hozzárendelések törlése nem függ a konfigurációtól, minden LDAP konfigurációt érint! Ténylegesen működő szolgáltatás esetén sose törölje a hozzárendeléseket, csak tesztelési vagy kísérleti célú szerveren!" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "A felhasználó - LDAP felhasználó hozzárendelés törlése" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "A csoport - LDAP csoport hozzárendelés törlése" diff --git a/l10n/hy/core.po b/l10n/hy/core.po index eee6695972a..92b8b8c3854 100644 --- a/l10n/hy/core.po +++ b/l10n/hy/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -17,24 +17,24 @@ msgstr "" "Language: hy\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -134,63 +134,63 @@ msgstr "Նոյեմբեր" msgid "December" msgstr "Դեկտեմբեր" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "" -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "" @@ -229,32 +229,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -533,14 +541,14 @@ msgstr "" msgid "Reset password" msgstr "" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/hy/user_ldap.po b/l10n/hy/user_ldap.po index 1acfafd169e..21b936379d0 100644 --- a/l10n/hy/user_ldap.po +++ b/l10n/hy/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -419,41 +419,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -469,15 +480,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -488,19 +499,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -514,10 +525,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index 8f19872d14e..b2feb59e742 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -17,24 +17,24 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -134,63 +134,63 @@ msgstr "Novembre" msgid "December" msgstr "Decembre" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Configurationes" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "" -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "" @@ -229,32 +229,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Cancellar" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -533,14 +541,14 @@ msgstr "Nove contrasigno" msgid "Reset password" msgstr "Reinitialisar contrasigno" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index 8cf13b0b0d6..6109e27e981 100644 --- a/l10n/ia/user_ldap.po +++ b/l10n/ia/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -419,41 +419,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -469,15 +480,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -488,19 +499,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -514,10 +525,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/id/core.po b/l10n/id/core.po index 40cd13bd6d0..27d4c0d4a70 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -17,24 +17,24 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Tidak dapat mengirim Email ke pengguna berikut: %s" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "Hidupkan mode perawatan" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "Matikan mode perawatan" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "Basis data terbaru" @@ -134,59 +134,59 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Pengaturan" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "Menyimpan..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "beberapa detik yang lalu" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n menit yang lalu" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n jam yang lalu" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "hari ini" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "kemarin" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n hari yang lalu" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "bulan kemarin" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n bulan yang lalu" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "beberapa bulan lalu" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "tahun kemarin" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "beberapa tahun lalu" @@ -224,32 +224,40 @@ msgid "One file conflict" msgstr "Satu berkas konflik" #: js/oc-dialogs.js:367 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" msgstr "Berkas mana yang ingin anda pertahankan?" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Jika anda memilih kedua versi, berkas yang disalin akan memiliki nomor yang ditambahkan sesuai namanya." -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Batal" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "Lanjutkan" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "(semua terpilih)" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "({count} terpilih)" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "Galat memuat templat berkas yang sudah ada" @@ -528,14 +536,14 @@ msgstr "Sandi baru" msgid "Reset password" msgstr "Atur ulang sandi" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index fcf502a7a8d..8317de9115d 100644 --- a/l10n/id/user_ldap.po +++ b/l10n/id/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -417,41 +417,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "Atribut Khusus" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "Bidang Kuota" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "Kuota Baku" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "dalam bytes" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "Bidang Email" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "Aturan Penamaan Folder Home Pengguna" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Biarkan nama pengguna kosong (default). Atau tetapkan atribut LDAP/AD." -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -467,15 +478,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -486,19 +497,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -512,10 +523,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/is/core.po b/l10n/is/core.po index 42cbfba8d34..92864f101c9 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -18,24 +18,24 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -135,63 +135,63 @@ msgstr "Nóvember" msgid "December" msgstr "Desember" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Stillingar" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "Er að vista ..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "sek." -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "í dag" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "í gær" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "síðasta mánuði" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "mánuðir síðan" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "síðasta ári" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "einhverjum árum" @@ -230,32 +230,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Hætta við" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -534,14 +542,14 @@ msgstr "Nýtt lykilorð" msgid "Reset password" msgstr "Endursetja lykilorð" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index df6247cd5d8..71cca1d2e03 100644 --- a/l10n/is/user_ldap.po +++ b/l10n/is/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -420,41 +420,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -470,15 +481,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -489,19 +500,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -515,10 +526,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/it/core.po b/l10n/it/core.po index a58e08ae696..2643e15d352 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-23 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 09:00+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,24 +21,24 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "La data di scadenza è nel passato." -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Impossibile inviare email ai seguenti utenti: %s" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "Modalità di manutenzione attivata" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "Modalità di manutenzione disattivata" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "Database aggiornato" @@ -138,63 +138,63 @@ msgstr "Novembre" msgid "December" msgstr "Dicembre" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Impostazioni" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "Salvataggio in corso..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "secondi fa" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minuto fa" msgstr[1] "%n minuti fa" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n ora fa" msgstr[1] "%n ore fa" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "oggi" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "ieri" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n giorno fa" msgstr[1] "%n giorni fa" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "mese scorso" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n mese fa" msgstr[1] "%n mesi fa" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "mesi fa" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "anno scorso" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "anni fa" @@ -233,32 +233,40 @@ msgid "One file conflict" msgstr "Un file in conflitto" #: js/oc-dialogs.js:367 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" msgstr "Quali file vuoi mantenere?" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Se selezioni entrambe le versioni, sarà aggiunto un numero al nome del file copiato." -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Annulla" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "Continua" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "(tutti i selezionati)" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "({count} selezionati)" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "Errore durante il caricamento del modello del file esistente" @@ -537,14 +545,14 @@ msgstr "Nuova password" msgid "Reset password" msgstr "Ripristina la password" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "Mac OS X non è supportato e %s non funzionerà correttamente su questa piattaforma. Usalo a tuo rischio!" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "Per avere il risultato migliore, prendi in considerazione l'utilizzo di un server GNU/Linux." diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index da54354cf9c..58546f1fb70 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -421,41 +421,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "Quando è attivato, i gruppi che contengono altri gruppi sono supportati. (Funziona solo se l'attributo del gruppo membro contiene DN.)" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "Attributi speciali" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "Campo Quota" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "Quota predefinita" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "in byte" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "Campo Email" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "Regola di assegnazione del nome della cartella utente" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Lascia vuoto per il nome utente (predefinito). Altrimenti, specifica un attributo LDAP/AD." -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "Nome utente interno" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -471,15 +482,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "In modo predefinito, il nome utente interno sarà creato dall'attributo UUID. Ciò assicura che il nome utente sia univoco e che non sia necessario convertire i caratteri. Il nome utente interno consente l'uso di determinati caratteri: [ a-zA-Z0-9_.@- ]. Altri caratteri sono sostituiti con il corrispondente ASCII o sono semplicemente omessi. In caso di conflitto, sarà aggiunto/incrementato un numero. Il nome utente interno è utilizzato per identificare un utente internamente. Rappresenta, inoltre, il nome predefinito per la cartella home dell'utente in ownCloud. Costituisce anche una parte di URL remoti, ad esempio per tutti i servizi *DAV. Con questa impostazione, il comportamento predefinito può essere scavalcato. Per ottenere un comportamento simile alle versioni precedenti ownCloud 5, inserisci l'attributo del nome visualizzato dell'utente nel campo seguente. Lascialo vuoto per il comportamento predefinito. Le modifiche avranno effetto solo sui nuovo utenti LDAP associati (aggiunti)." -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "Attributo nome utente interno:" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "Ignora rilevamento UUID" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -490,19 +501,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "In modo predefinito, l'attributo UUID viene rilevato automaticamente. L'attributo UUID è utilizzato per identificare senza alcun dubbio gli utenti e i gruppi LDAP. Inoltre, il nome utente interno sarà creato sulla base dell'UUID, se non è specificato in precedenza. Puoi ignorare l'impostazione e fornire un attributo di tua scelta. Assicurati che l'attributo scelto possa essere ottenuto sia per gli utenti che per i gruppi e che sia univoco. Lascialo vuoto per ottenere il comportamento predefinito. Le modifiche avranno effetto solo sui nuovi utenti e gruppi LDAP associati (aggiunti)." -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "Attributo UUID per gli utenti:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "Attributo UUID per i gruppi:" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "Associazione Nome utente-Utente LDAP" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -516,10 +527,10 @@ msgid "" "experimental stage." msgstr "I nomi utente sono utilizzati per archiviare e assegnare i (meta) dati. Per identificare con precisione e riconoscere gli utenti, ogni utente LDAP avrà un nome utente interno. Ciò richiede un'associazione tra il nome utente e l'utente LDAP. In aggiunta, il DN viene mantenuto in cache per ridurre l'interazione con LDAP, ma non è utilizzato per l'identificazione. Se il DN cambia, le modifiche saranno rilevate. Il nome utente interno è utilizzato dappertutto. La cancellazione delle associazioni lascerà tracce residue ovunque e interesserà esclusivamente la configurazione LDAP. Non cancellare mai le associazioni in un ambiente di produzione, ma solo in una fase sperimentale o di test." -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "Cancella associazione Nome utente-Utente LDAP" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Cancella associazione Nome gruppo-Gruppo LDAP" diff --git a/l10n/ja/core.po b/l10n/ja/core.po index da079b0afbe..8caab377b9e 100644 --- a/l10n/ja/core.po +++ b/l10n/ja/core.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-06 01:55-0400\n" -"PO-Revision-Date: 2014-04-05 09:40+0000\n" -"Last-Translator: tt yn \n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -230,32 +230,40 @@ msgid "One file conflict" msgstr "1ファイルが競合" #: js/oc-dialogs.js:367 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" msgstr "どちらのファイルを保持したいですか?" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "両方のバージョンを選択した場合は、ファイル名の後ろに数字を追加したファイルのコピーを作成します。" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "キャンセル" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "続ける" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "(全て選択)" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "({count} 選択)" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "既存ファイルのテンプレートの読み込みエラー" diff --git a/l10n/ja/user_ldap.po b/l10n/ja/user_ldap.po index e670589dd74..3a893d0ed2c 100644 --- a/l10n/ja/user_ldap.po +++ b/l10n/ja/user_ldap.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" -"Last-Translator: plazmism \n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -421,41 +421,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "オンに切り替えたら、グループを含むグループがサポートされます。(グループメンバーの属性がDNを含む場合のみ有効です。)" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "特殊属性" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "クォータフィールド" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "クォータのデフォルト" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "バイト" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "メールフィールド" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "ユーザーのホームフォルダー命名規則" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "ユーザー名を空のままにしてください(デフォルト)。もしくは、LDAPもしくはADの属性を指定してください。" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "内部ユーザー名" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -471,15 +482,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "デフォルトでは、内部ユーザー名はUUID属性から作成されます。これにより、ユーザー名がユニークであり、かつ文字の変換が不要であることを保証します。内部ユーザー名には、[ a-zA-Z0-9_.@- ] の文字のみが有効であるという制限があり、その他の文字は対応する ASCII コードに変換されるか単に無視されます。そのため、他のユーザ名との衝突の回数が増加するでしょう。内部ユーザー名は、内部的にユーザを識別するために用いられ、また、ownCloudにおけるデフォルトのホームフォルダー名としても用いられます。例えば*DAVサービスのように、リモートURLの一部でもあります。この設定により、デフォルトの振る舞いを再定義します。ownCloud 5 以前と同じような振る舞いにするためには、以下のフィールドにユーザー表示名の属性を入力します。空にするとデフォルトの振る舞いとなります。変更は新しくマッピング(追加)されたLDAPユーザーにおいてのみ有効となります。" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "内部ユーザー名属性:" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "UUID検出を再定義する" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -490,19 +501,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "デフォルトでは、UUID 属性は自動的に検出されます。UUID属性は、LDAPユーザーとLDAPグループを間違いなく識別するために利用されます。また、もしこれを指定しない場合は、内部ユーザー名はUUIDに基づいて作成されます。この設定は再定義することができ、あなたの選択した属性を用いることができます。選択した属性がユーザーとグループの両方に対して適用でき、かつユニークであることを確認してください。空であればデフォルトの振る舞いとなります。変更は、新しくマッピング(追加)されたLDAPユーザーとLDAPグループに対してのみ有効となります。" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "ユーザーの UUID 属性:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "グループの UUID 属性:" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "ユーザー名とLDAPユーザのマッピング" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -516,10 +527,10 @@ msgid "" "experimental stage." msgstr "ユーザー名は(メタ)データの保存と割り当てに使用されます。ユーザーを正確に識別して認識するために、個々のLDAPユーザは内部ユーザ名を持っています。これは、ユーザー名からLDAPユーザーへのマッピングが必要であることを意味しています。この生成されたユーザ名は、LDAPユーザのUUIDにマッピングされます。加えて、DNがLDAPとのインタラクションを削減するためにキャッシュされますが、識別には利用されません。DNが変わった場合は、変更が検出されます。内部ユーザ名は全体に亘って利用されます。マッピングをクリアすると、いたるところに使われないままの物が残るでしょう。マッピングのクリアは設定に敏感ではありませんが、全てのLDAPの設定に影響を与えます!本番の環境では決してマッピングをクリアしないでください。テストもしくは実験の段階でのみマッピングのクリアを行なってください。" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "ユーザー名とLDAPユーザーのマッピングをクリアする" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "グループ名とLDAPグループのマッピングをクリアする" diff --git a/l10n/jv/core.po b/l10n/jv/core.po new file mode 100644 index 00000000000..17dbc1170a8 --- /dev/null +++ b/l10n/jv/core.po @@ -0,0 +1,809 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Javanese (http://www.transifex.com/projects/p/owncloud/language/jv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: jv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/share.php:87 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:119 ajax/share.php:161 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/update.php:10 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:13 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:16 +msgid "Updated database" +msgstr "" + +#: avatar/controller.php:62 +msgid "No image or file provided" +msgstr "" + +#: avatar/controller.php:81 +msgid "Unknown filetype" +msgstr "" + +#: avatar/controller.php:85 +msgid "Invalid image" +msgstr "" + +#: avatar/controller.php:115 avatar/controller.php:142 +msgid "No temporary profile picture available, try again" +msgstr "" + +#: avatar/controller.php:135 +msgid "No crop data provided" +msgstr "" + +#: js/config.php:36 +msgid "Sunday" +msgstr "" + +#: js/config.php:37 +msgid "Monday" +msgstr "" + +#: js/config.php:38 +msgid "Tuesday" +msgstr "" + +#: js/config.php:39 +msgid "Wednesday" +msgstr "" + +#: js/config.php:40 +msgid "Thursday" +msgstr "" + +#: js/config.php:41 +msgid "Friday" +msgstr "" + +#: js/config.php:42 +msgid "Saturday" +msgstr "" + +#: js/config.php:47 +msgid "January" +msgstr "" + +#: js/config.php:48 +msgid "February" +msgstr "" + +#: js/config.php:49 +msgid "March" +msgstr "" + +#: js/config.php:50 +msgid "April" +msgstr "" + +#: js/config.php:51 +msgid "May" +msgstr "" + +#: js/config.php:52 +msgid "June" +msgstr "" + +#: js/config.php:53 +msgid "July" +msgstr "" + +#: js/config.php:54 +msgid "August" +msgstr "" + +#: js/config.php:55 +msgid "September" +msgstr "" + +#: js/config.php:56 +msgid "October" +msgstr "" + +#: js/config.php:57 +msgid "November" +msgstr "" + +#: js/config.php:58 +msgid "December" +msgstr "" + +#: js/js.js:479 +msgid "Settings" +msgstr "" + +#: js/js.js:564 +msgid "Saving..." +msgstr "" + +#: js/js.js:1124 +msgid "seconds ago" +msgstr "" + +#: js/js.js:1125 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:1126 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:1127 +msgid "today" +msgstr "" + +#: js/js.js:1128 +msgid "yesterday" +msgstr "" + +#: js/js.js:1129 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:1130 +msgid "last month" +msgstr "" + +#: js/js.js:1131 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:1132 +msgid "months ago" +msgstr "" + +#: js/js.js:1133 +msgid "last year" +msgstr "" + +#: js/js.js:1134 +msgid "years ago" +msgstr "" + +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + +#: js/oc-dialogs.js:146 +msgid "Error loading file picker template: {error}" +msgstr "" + +#: js/oc-dialogs.js:172 +msgid "Yes" +msgstr "" + +#: js/oc-dialogs.js:182 +msgid "No" +msgstr "" + +#: js/oc-dialogs.js:199 +msgid "Ok" +msgstr "" + +#: js/oc-dialogs.js:219 +msgid "Error loading message template: {error}" +msgstr "" + +#: js/oc-dialogs.js:347 +msgid "{count} file conflict" +msgid_plural "{count} file conflicts" +msgstr[0] "" +msgstr[1] "" + +#: js/oc-dialogs.js:361 +msgid "One file conflict" +msgstr "" + +#: js/oc-dialogs.js:367 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 +msgid "" +"If you select both versions, the copied file will have a number added to its" +" name." +msgstr "" + +#: js/oc-dialogs.js:379 +msgid "Cancel" +msgstr "" + +#: js/oc-dialogs.js:389 +msgid "Continue" +msgstr "" + +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +msgid "(all selected)" +msgstr "" + +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +msgid "({count} selected)" +msgstr "" + +#: js/oc-dialogs.js:460 +msgid "Error loading file exists template" +msgstr "" + +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + +#: js/share.js:51 js/share.js:66 js/share.js:106 +msgid "Shared" +msgstr "" + +#: js/share.js:109 +msgid "Share" +msgstr "" + +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: templates/installation.php:10 +msgid "Error" +msgstr "" + +#: js/share.js:160 js/share.js:767 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:171 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:178 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:188 +msgid "Shared with you and the group {group} by {owner}" +msgstr "" + +#: js/share.js:190 +msgid "Shared with you by {owner}" +msgstr "" + +#: js/share.js:214 +msgid "Share with user or group …" +msgstr "" + +#: js/share.js:220 +msgid "Share link" +msgstr "" + +#: js/share.js:223 +msgid "Password protect" +msgstr "" + +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 +msgid "Password" +msgstr "" + +#: js/share.js:230 +msgid "Allow Public Upload" +msgstr "" + +#: js/share.js:234 +msgid "Email link to person" +msgstr "" + +#: js/share.js:235 +msgid "Send" +msgstr "" + +#: js/share.js:240 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:241 +msgid "Expiration date" +msgstr "" + +#: js/share.js:277 +msgid "Share via email:" +msgstr "" + +#: js/share.js:280 +msgid "No people found" +msgstr "" + +#: js/share.js:324 js/share.js:363 +msgid "group" +msgstr "" + +#: js/share.js:335 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:379 +msgid "Shared in {item} with {user}" +msgstr "" + +#: js/share.js:401 +msgid "Unshare" +msgstr "" + +#: js/share.js:409 +msgid "notify by email" +msgstr "" + +#: js/share.js:412 +msgid "can edit" +msgstr "" + +#: js/share.js:414 +msgid "access control" +msgstr "" + +#: js/share.js:417 +msgid "create" +msgstr "" + +#: js/share.js:420 +msgid "update" +msgstr "" + +#: js/share.js:423 +msgid "delete" +msgstr "" + +#: js/share.js:426 +msgid "share" +msgstr "" + +#: js/share.js:698 +msgid "Password protected" +msgstr "" + +#: js/share.js:711 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:729 +msgid "Error setting expiration date" +msgstr "" + +#: js/share.js:754 +msgid "Sending ..." +msgstr "" + +#: js/share.js:765 +msgid "Email sent" +msgstr "" + +#: js/share.js:789 +msgid "Warning" +msgstr "" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "" + +#: js/tags.js:31 +msgid "Add" +msgstr "" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + +#: js/update.js:8 +msgid "Please reload the page." +msgstr "" + +#: js/update.js:17 +msgid "" +"The update was unsuccessful. Please report this issue to the ownCloud " +"community." +msgstr "" + +#: js/update.js:21 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "" + +#: lostpassword/controller.php:70 +#, php-format +msgid "%s password reset" +msgstr "" + +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + +#: lostpassword/templates/email.php:2 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php: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 "" + +#: lostpassword/templates/lostpassword.php:15 +msgid "Request failed!
      Did you make sure your email/username was right?" +msgstr "" + +#: 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:53 +#: templates/login.php:32 +msgid "Username" +msgstr "" + +#: lostpassword/templates/lostpassword.php:25 +msgid "" +"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?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:27 +msgid "Yes, I really want to reset my password now" +msgstr "" + +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "" + +#: setup/controller.php:140 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:144 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 templates/layout.user.php:116 +msgid "Apps" +msgstr "" + +#: strings.php:8 +msgid "Admin" +msgstr "" + +#: strings.php:9 +msgid "Help" +msgstr "" + +#: tags/controller.php:22 +msgid "Error loading tags" +msgstr "" + +#: tags/controller.php:48 +msgid "Tag already exists" +msgstr "" + +#: tags/controller.php:64 +msgid "Error deleting tag(s)" +msgstr "" + +#: tags/controller.php:75 +msgid "Error tagging" +msgstr "" + +#: tags/controller.php:86 +msgid "Error untagging" +msgstr "" + +#: tags/controller.php:97 +msgid "Error favoriting" +msgstr "" + +#: tags/controller.php:108 +msgid "Error unfavoriting" +msgstr "" + +#: templates/403.php:12 +msgid "Access forbidden" +msgstr "" + +#: templates/404.php:15 +msgid "Cloud not found" +msgstr "" + +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +msgstr "" + +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" + +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 +msgid "Security Warning" +msgstr "" + +#: templates/installation.php:26 +msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" +msgstr "" + +#: templates/installation.php:27 +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "" + +#: templates/installation.php:33 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: 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:40 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + +#: templates/installation.php:42 +#, php-format +msgid "" +"For information how to properly configure your server, please see the documentation." +msgstr "" + +#: templates/installation.php:48 +msgid "Create an admin account" +msgstr "" + +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" + +#: templates/installation.php:77 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:90 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:94 +msgid "will be used" +msgstr "" + +#: templates/installation.php:109 +msgid "Database user" +msgstr "" + +#: templates/installation.php:118 +msgid "Database password" +msgstr "" + +#: templates/installation.php:123 +msgid "Database name" +msgstr "" + +#: templates/installation.php:132 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:140 +msgid "Database host" +msgstr "" + +#: templates/installation.php:150 +msgid "Finish setup" +msgstr "" + +#: templates/installation.php:150 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript and re-load this interface." +msgstr "" + +#: templates/layout.user.php:44 +#, php-format +msgid "%s is available. Get more information on how to update." +msgstr "" + +#: templates/layout.user.php:74 templates/singleuser.user.php:8 +msgid "Log out" +msgstr "" + +#: templates/login.php:9 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:10 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:12 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:46 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:51 +msgid "remember" +msgstr "" + +#: templates/login.php:54 +msgid "Log in" +msgstr "" + +#: templates/login.php:60 +msgid "Alternative Logins" +msgstr "" + +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

      just letting you know that %s shared %s " +"with you.
      View it!

      " +msgstr "" + +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "" + +#: templates/singleuser.user.php:4 +msgid "This means only administrators can use the instance." +msgstr "" + +#: templates/singleuser.user.php:5 templates/update.user.php:5 +msgid "" +"Contact your system administrator if this message persists or appeared " +"unexpectedly." +msgstr "" + +#: templates/singleuser.user.php:7 templates/update.user.php:6 +msgid "Thank you for your patience." +msgstr "" + +#: templates/update.admin.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "" + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "" diff --git a/l10n/jv/files.po b/l10n/jv/files.po new file mode 100644 index 00000000000..010013ec49a --- /dev/null +++ b/l10n/jv/files.po @@ -0,0 +1,408 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-07 17:00+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Javanese (http://www.transifex.com/projects/p/owncloud/language/jv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: jv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/move.php:15 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:25 ajax/move.php:28 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/newfile.php:58 js/files.js:98 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:63 +#, php-format +msgid "\"%s\" is an invalid file name." +msgstr "" + +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:97 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:102 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:118 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:146 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:22 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:66 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:19 ajax/upload.php:57 +msgid "Unable to set upload directory." +msgstr "" + +#: ajax/upload.php:33 +msgid "Invalid Token" +msgstr "" + +#: ajax/upload.php:75 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:82 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:83 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:85 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:86 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:87 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:88 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:89 +msgid "Failed to write to disk" +msgstr "" + +#: ajax/upload.php:107 +msgid "Not enough storage available" +msgstr "" + +#: ajax/upload.php:159 +msgid "Upload failed. Could not find uploaded file" +msgstr "" + +#: ajax/upload.php:169 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:184 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:11 js/filelist.js:14 +msgid "Files" +msgstr "" + +#: js/file-upload.js:247 +msgid "Unable to upload {filename} as it is a directory or has 0 bytes" +msgstr "" + +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" + +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:340 +msgid "Upload cancelled." +msgstr "" + +#: js/file-upload.js:385 +msgid "Could not get result from server." +msgstr "" + +#: js/file-upload.js:477 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/file-upload.js:542 +msgid "URL cannot be empty" +msgstr "" + +#: js/file-upload.js:546 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "" + +#: js/file-upload.js:548 js/filelist.js:603 +msgid "{new_name} already exists" +msgstr "" + +#: js/file-upload.js:600 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:613 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:653 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:164 +msgid "Share" +msgstr "" + +#: js/fileactions.js:177 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:238 +msgid "Rename" +msgstr "" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "" + +#: js/filelist.js:267 js/filelist.js:1113 +msgid "Pending" +msgstr "" + +#: js/filelist.js:630 +msgid "Could not rename file" +msgstr "" + +#: js/filelist.js:789 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:822 +msgid "{dirs} and {files}" +msgstr "" + +#: js/filelist.js:1052 js/filelist.js:1090 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" + +#: js/files.js:117 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "" + +#: js/files.js:121 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "" + +#: js/files.js:134 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:138 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:142 +msgid "" +"Encryption was disabled but your files are still encrypted. Please go to " +"your personal settings to decrypt your files." +msgstr "" + +#: js/files.js:331 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" + +#: js/files.js:570 templates/index.php:67 +msgid "Name" +msgstr "" + +#: js/files.js:571 templates/index.php:79 +msgid "Size" +msgstr "" + +#: js/files.js:572 templates/index.php:81 +msgid "Modified" +msgstr "" + +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:93 +#, php-format +msgid "%s could not be renamed" +msgstr "" + +#: lib/helper.php:14 templates/index.php:22 +msgid "Upload" +msgstr "" + +#: templates/admin.php:4 +msgid "File handling" +msgstr "" + +#: templates/admin.php:6 +msgid "Maximum upload size" +msgstr "" + +#: templates/admin.php:9 +msgid "max. possible: " +msgstr "" + +#: templates/admin.php:14 +msgid "Needed for multi-file and folder downloads." +msgstr "" + +#: templates/admin.php:16 +msgid "Enable ZIP-download" +msgstr "" + +#: templates/admin.php:19 +msgid "0 is unlimited" +msgstr "" + +#: templates/admin.php:21 +msgid "Maximum input size for ZIP files" +msgstr "" + +#: templates/admin.php:25 +msgid "Save" +msgstr "" + +#: templates/index.php:5 +msgid "New" +msgstr "" + +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:9 +msgid "Text file" +msgstr "" + +#: templates/index.php:12 +msgid "New folder" +msgstr "" + +#: templates/index.php:13 +msgid "Folder" +msgstr "" + +#: templates/index.php:16 +msgid "From link" +msgstr "" + +#: templates/index.php:40 +msgid "Deleted files" +msgstr "" + +#: templates/index.php:45 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:51 +msgid "You don’t have permission to upload or create files here" +msgstr "" + +#: templates/index.php:56 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:73 +msgid "Download" +msgstr "Njipuk" + +#: templates/index.php:84 templates/index.php:85 +msgid "Delete" +msgstr "" + +#: templates/index.php:96 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:98 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:103 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:106 +msgid "Current scanning" +msgstr "" diff --git a/l10n/jv/files_encryption.po b/l10n/jv/files_encryption.po new file mode 100644 index 00000000000..8d6649ddda9 --- /dev/null +++ b/l10n/jv/files_encryption.po @@ -0,0 +1,201 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-07 14:16+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Javanese (http://www.transifex.com/projects/p/owncloud/language/jv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: jv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/adminrecovery.php:29 +msgid "Recovery key successfully enabled" +msgstr "" + +#: ajax/adminrecovery.php:34 +msgid "" +"Could not enable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/adminrecovery.php:48 +msgid "Recovery key successfully disabled" +msgstr "" + +#: ajax/adminrecovery.php:53 +msgid "" +"Could not disable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/changeRecoveryPassword.php:49 +msgid "Password successfully changed." +msgstr "" + +#: ajax/changeRecoveryPassword.php:51 +msgid "Could not change the password. Maybe the old password was not correct." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:52 +msgid "Private key password successfully updated." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:54 +msgid "" +"Could not update the private key password. Maybe the old password was not " +"correct." +msgstr "" + +#: files/error.php:12 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:16 +#, php-format +msgid "" +"Your private key is not valid! Likely your password was changed outside of " +"%s (e.g. your corporate directory). You can update your private key password" +" in your personal settings to recover access to your encrypted files." +msgstr "" + +#: files/error.php:19 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:22 files/error.php:27 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + +#: hooks/hooks.php:64 +msgid "Missing requirements." +msgstr "" + +#: hooks/hooks.php:65 +msgid "" +"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." +msgstr "" + +#: hooks/hooks.php:295 +msgid "Following users are not set up for encryption:" +msgstr "" + +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" + +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" + +#: templates/invalid_private_key.php:8 +msgid "personal settings" +msgstr "" + +#: templates/settings-admin.php:2 templates/settings-personal.php:2 +msgid "Encryption" +msgstr "" + +#: templates/settings-admin.php:5 +msgid "" +"Enable recovery key (allow to recover users files in case of password loss):" +msgstr "" + +#: templates/settings-admin.php:9 +msgid "Recovery key password" +msgstr "" + +#: templates/settings-admin.php:12 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:19 templates/settings-personal.php:50 +msgid "Enabled" +msgstr "" + +#: templates/settings-admin.php:27 templates/settings-personal.php:58 +msgid "Disabled" +msgstr "" + +#: templates/settings-admin.php:32 +msgid "Change recovery key password:" +msgstr "" + +#: templates/settings-admin.php:38 +msgid "Old Recovery key password" +msgstr "" + +#: templates/settings-admin.php:45 +msgid "New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:51 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:56 +msgid "Change Password" +msgstr "" + +#: templates/settings-personal.php:8 +msgid "Your private key password no longer match your log-in password:" +msgstr "" + +#: templates/settings-personal.php:11 +msgid "Set your old private key password to your current log-in password." +msgstr "" + +#: templates/settings-personal.php:13 +msgid "" +" If you don't remember your old password you can ask your administrator to " +"recover your files." +msgstr "" + +#: templates/settings-personal.php:21 +msgid "Old log-in password" +msgstr "" + +#: templates/settings-personal.php:27 +msgid "Current log-in password" +msgstr "" + +#: templates/settings-personal.php:32 +msgid "Update Private Key Password" +msgstr "" + +#: templates/settings-personal.php:41 +msgid "Enable password recovery:" +msgstr "" + +#: templates/settings-personal.php:43 +msgid "" +"Enabling this option will allow you to reobtain access to your encrypted " +"files in case of password loss" +msgstr "" + +#: templates/settings-personal.php:59 +msgid "File recovery settings updated" +msgstr "" + +#: templates/settings-personal.php:60 +msgid "Could not update file recovery" +msgstr "" diff --git a/l10n/jv/files_external.po b/l10n/jv/files_external.po new file mode 100644 index 00000000000..180822df4a2 --- /dev/null +++ b/l10n/jv/files_external.po @@ -0,0 +1,127 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-07 14:16+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Javanese (http://www.transifex.com/projects/p/owncloud/language/jv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: jv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:68 js/google.js:89 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:102 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:45 js/google.js:122 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: js/settings.js:318 js/settings.js:325 +msgid "Saved" +msgstr "" + +#: lib/config.php:654 +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:658 +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:661 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + +#: templates/settings.php:2 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:8 templates/settings.php:27 +msgid "Folder name" +msgstr "" + +#: templates/settings.php:9 +msgid "External storage" +msgstr "" + +#: templates/settings.php:10 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:11 +msgid "Options" +msgstr "" + +#: templates/settings.php:12 +msgid "Available for" +msgstr "" + +#: templates/settings.php:32 +msgid "Add storage" +msgstr "" + +#: templates/settings.php:92 +msgid "No user or group" +msgstr "" + +#: templates/settings.php:95 +msgid "All Users" +msgstr "" + +#: templates/settings.php:97 +msgid "Groups" +msgstr "" + +#: templates/settings.php:105 +msgid "Users" +msgstr "" + +#: templates/settings.php:118 templates/settings.php:119 +#: templates/settings.php:158 templates/settings.php:159 +msgid "Delete" +msgstr "" + +#: templates/settings.php:132 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:135 +msgid "Allow users to mount the following external storage" +msgstr "" + +#: templates/settings.php:150 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:168 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/jv/files_sharing.po b/l10n/jv/files_sharing.po new file mode 100644 index 00000000000..9fedbf7af1e --- /dev/null +++ b/l10n/jv/files_sharing.po @@ -0,0 +1,72 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-07 14:16+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Javanese (http://www.transifex.com/projects/p/owncloud/language/jv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: jv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/share.js:33 +msgid "Shared by {owner}" +msgstr "" + +#: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 +msgid "Password" +msgstr "" + +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:17 +#, php-format +msgid "shared by %s" +msgstr "" + +#: templates/public.php:44 +#, php-format +msgid "Download %s" +msgstr "" + +#: templates/public.php:48 +msgid "Direct link" +msgstr "" diff --git a/l10n/jv/files_trashbin.po b/l10n/jv/files_trashbin.po new file mode 100644 index 00000000000..be9965732a8 --- /dev/null +++ b/l10n/jv/files_trashbin.po @@ -0,0 +1,64 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-07 14:16+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Javanese (http://www.transifex.com/projects/p/owncloud/language/jv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: jv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/delete.php:59 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:64 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/filelist.js:3 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 +msgid "Error" +msgstr "" + +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "" + +#: lib/trashbin.php:859 lib/trashbin.php:861 +msgid "restored" +msgstr "" + +#: templates/index.php:6 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "" + +#: templates/index.php:18 +msgid "Name" +msgstr "" + +#: templates/index.php:21 templates/index.php:23 +msgid "Restore" +msgstr "" + +#: templates/index.php:29 +msgid "Deleted" +msgstr "" + +#: templates/index.php:32 templates/index.php:33 +msgid "Delete" +msgstr "" diff --git a/l10n/jv/files_versions.po b/l10n/jv/files_versions.po new file mode 100644 index 00000000000..adf7b45d3ed --- /dev/null +++ b/l10n/jv/files_versions.po @@ -0,0 +1,43 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-07 14:16+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Javanese (http://www.transifex.com/projects/p/owncloud/language/jv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: jv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/rollbackVersion.php:13 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: js/versions.js:39 +msgid "Versions" +msgstr "" + +#: js/versions.js:61 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "" + +#: js/versions.js:88 +msgid "More versions..." +msgstr "" + +#: js/versions.js:126 +msgid "No other versions available" +msgstr "" + +#: js/versions.js:156 +msgid "Restore" +msgstr "" diff --git a/l10n/jv/lib.po b/l10n/jv/lib.po new file mode 100644 index 00000000000..9f4e998e7f1 --- /dev/null +++ b/l10n/jv/lib.po @@ -0,0 +1,338 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-07 14:16+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Javanese (http://www.transifex.com/projects/p/owncloud/language/jv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: jv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: private/app.php:236 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: private/app.php:248 +msgid "No app name specified" +msgstr "" + +#: private/app.php:353 +msgid "Help" +msgstr "" + +#: private/app.php:366 +msgid "Personal" +msgstr "" + +#: private/app.php:377 +msgid "Settings" +msgstr "" + +#: private/app.php:389 +msgid "Users" +msgstr "" + +#: private/app.php:402 +msgid "Admin" +msgstr "" + +#: private/app.php:875 +#, php-format +msgid "Failed to upgrade \"%s\"." +msgstr "" + +#: private/avatar.php:66 +msgid "Unknown filetype" +msgstr "" + +#: private/avatar.php:71 +msgid "Invalid image" +msgstr "" + +#: private/defaults.php:35 +msgid "web services under your control" +msgstr "" + +#: private/files.php:232 +msgid "ZIP download is turned off." +msgstr "" + +#: private/files.php:233 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: private/files.php:234 private/files.php:262 +msgid "Back to Files" +msgstr "" + +#: private/files.php:259 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: private/files.php:260 +msgid "" +"Please download the files separately in smaller chunks or kindly ask your " +"administrator." +msgstr "" + +#: private/installer.php:64 +msgid "No source specified when installing app" +msgstr "" + +#: private/installer.php:71 +msgid "No href specified when installing app from http" +msgstr "" + +#: private/installer.php:76 +msgid "No path specified when installing app from local file" +msgstr "" + +#: private/installer.php:90 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: private/installer.php:104 +msgid "Failed to open archive when installing app" +msgstr "" + +#: private/installer.php:126 +msgid "App does not provide an info.xml file" +msgstr "" + +#: private/installer.php:132 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: private/installer.php:141 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: private/installer.php:147 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: private/installer.php:160 +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 "" + +#: private/installer.php:170 +msgid "App directory already exists" +msgstr "" + +#: private/installer.php:183 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + +#: private/json.php:29 +msgid "Application is not enabled" +msgstr "" + +#: private/json.php:40 private/json.php:63 private/json.php:88 +msgid "Authentication error" +msgstr "" + +#: private/json.php:52 +msgid "Token expired. Please reload page." +msgstr "" + +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + +#: private/search/provider/file.php:18 private/search/provider/file.php:36 +msgid "Files" +msgstr "" + +#: private/search/provider/file.php:27 private/search/provider/file.php:34 +msgid "Text" +msgstr "" + +#: private/search/provider/file.php:30 +msgid "Images" +msgstr "" + +#: private/setup/abstractdatabase.php:26 +#, php-format +msgid "%s enter the database username." +msgstr "" + +#: private/setup/abstractdatabase.php:29 +#, php-format +msgid "%s enter the database name." +msgstr "" + +#: private/setup/abstractdatabase.php:32 +#, php-format +msgid "%s you may not use dots in the database name" +msgstr "" + +#: private/setup/mssql.php:20 +#, php-format +msgid "MS SQL username and/or password not valid: %s" +msgstr "" + +#: private/setup/mssql.php:21 private/setup/mysql.php:13 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 +msgid "You need to enter either an existing account or the administrator." +msgstr "" + +#: private/setup/mysql.php:12 +msgid "MySQL/MariaDB 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: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:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:68 private/setup/oci.php:55 +#: 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:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 +#, php-format +msgid "Offending command was: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:85 +#, php-format +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" + +#: private/setup/mysql.php:86 +msgid "Drop this user from MySQL/MariaDB" +msgstr "" + +#: private/setup/mysql.php:91 +#, php-format +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" + +#: private/setup/mysql.php:92 +msgid "Drop this user from MySQL/MariaDB." +msgstr "" + +#: private/setup/oci.php:34 +msgid "Oracle connection could not be established" +msgstr "" + +#: private/setup/oci.php:41 private/setup/oci.php:113 +msgid "Oracle username and/or password not valid" +msgstr "" + +#: private/setup/oci.php:170 private/setup/oci.php:202 +#, php-format +msgid "Offending command was: \"%s\", name: %s, password: %s" +msgstr "" + +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 +msgid "PostgreSQL username and/or password not valid" +msgstr "" + +#: private/setup.php:28 +msgid "Set an admin username." +msgstr "" + +#: private/setup.php:31 +msgid "Set an admin password." +msgstr "" + +#: private/setup.php:202 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: private/setup.php:203 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:133 +msgid "seconds ago" +msgstr "" + +#: private/template/functions.php:134 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:135 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:136 +msgid "today" +msgstr "" + +#: private/template/functions.php:137 +msgid "yesterday" +msgstr "" + +#: private/template/functions.php:139 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:141 +msgid "last month" +msgstr "" + +#: private/template/functions.php:142 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:144 +msgid "last year" +msgstr "" + +#: private/template/functions.php:145 +msgid "years ago" +msgstr "" diff --git a/l10n/jv/settings.po b/l10n/jv/settings.po new file mode 100644 index 00000000000..7cba8a701d0 --- /dev/null +++ b/l10n/jv/settings.po @@ -0,0 +1,824 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-07 17:00+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Javanese (http://www.transifex.com/projects/p/owncloud/language/jv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: jv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:299 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:336 +msgid "Authentication method" +msgstr "" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:31 +msgid "Your full name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 +msgid "Unable to change full name" +msgstr "" + +#: ajax/creategroup.php:10 +msgid "Group already exists" +msgstr "" + +#: ajax/creategroup.php:19 +msgid "Unable to add group" +msgstr "" + +#: ajax/lostpassword.php:12 +msgid "Email saved" +msgstr "" + +#: ajax/lostpassword.php:14 +msgid "Invalid email" +msgstr "" + +#: ajax/removegroup.php:13 +msgid "Unable to delete group" +msgstr "" + +#: ajax/removeuser.php:25 +msgid "Unable to delete user" +msgstr "" + +#: ajax/setlanguage.php:15 +msgid "Language changed" +msgstr "" + +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Panjalukan salah" + +#: ajax/togglegroups.php:12 +msgid "Admins can't remove themself from the admin group" +msgstr "" + +#: ajax/togglegroups.php:30 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:36 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + +#: ajax/updateapp.php:14 +msgid "Couldn't update app." +msgstr "" + +#: changepassword/controller.php:17 +msgid "Wrong password" +msgstr "" + +#: changepassword/controller.php:36 +msgid "No user supplied" +msgstr "" + +#: changepassword/controller.php:68 +msgid "" +"Please provide an admin recovery password, otherwise all user data will be " +"lost" +msgstr "" + +#: changepassword/controller.php:73 +msgid "" +"Wrong admin recovery password. Please check the password and try again." +msgstr "" + +#: changepassword/controller.php:81 +msgid "" +"Back-end doesn't support password change, but the users encryption key was " +"successfully updated." +msgstr "" + +#: changepassword/controller.php:86 changepassword/controller.php:97 +msgid "Unable to change password" +msgstr "" + +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 +msgid "Update to {appversion}" +msgstr "" + +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 +msgid "Disable" +msgstr "" + +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 +msgid "Enable" +msgstr "" + +#: js/apps.js:95 +msgid "Please wait...." +msgstr "" + +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 +msgid "Error while disabling app" +msgstr "" + +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:149 +msgid "Updating...." +msgstr "" + +#: js/apps.js:152 +msgid "Error while updating app" +msgstr "" + +#: js/apps.js:152 +msgid "Error" +msgstr "" + +#: js/apps.js:153 templates/apps.php:55 +msgid "Update" +msgstr "" + +#: js/apps.js:156 +msgid "Updated" +msgstr "" + +#: js/personal.js:243 +msgid "Select a profile picture" +msgstr "" + +#: js/personal.js:274 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:313 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" + +#: js/users.js:47 +msgid "deleted" +msgstr "" + +#: js/users.js:47 +msgid "undo" +msgstr "" + +#: js/users.js:79 +msgid "Unable to remove user" +msgstr "" + +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 +msgid "Groups" +msgstr "" + +#: js/users.js:105 templates/users.php:90 templates/users.php:128 +msgid "Group Admin" +msgstr "" + +#: js/users.js:127 templates/users.php:168 +msgid "Delete" +msgstr "" + +#: js/users.js:310 +msgid "add group" +msgstr "" + +#: js/users.js:486 +msgid "A valid username must be provided" +msgstr "" + +#: js/users.js:487 js/users.js:493 js/users.js:508 +msgid "Error creating user" +msgstr "" + +#: js/users.js:492 +msgid "A valid password must be provided" +msgstr "" + +#: js/users.js:516 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + +#: personal.php:48 personal.php:49 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:8 +msgid "Everything (fatal issues, errors, warnings, info, debug)" +msgstr "" + +#: templates/admin.php:9 +msgid "Info, warnings, errors and fatal issues" +msgstr "" + +#: templates/admin.php:10 +msgid "Warnings, errors and fatal issues" +msgstr "" + +#: templates/admin.php:11 +msgid "Errors and fatal issues" +msgstr "" + +#: templates/admin.php:12 +msgid "Fatal issues only" +msgstr "" + +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:47 templates/admin.php:61 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:50 +#, php-format +msgid "" +"You are accessing %s via HTTP. We strongly suggest you configure your server" +" to require using HTTPS instead." +msgstr "" + +#: templates/admin.php:64 +msgid "" +"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." +msgstr "" + +#: templates/admin.php:75 +msgid "Setup Warning" +msgstr "" + +#: templates/admin.php:78 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: templates/admin.php:79 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: templates/admin.php:90 +msgid "Module 'fileinfo' missing" +msgstr "" + +#: templates/admin.php:93 +msgid "" +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this " +"module to get best results with mime-type detection." +msgstr "" + +#: templates/admin.php:104 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:107 +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:118 +msgid "Locale not working" +msgstr "" + +#: templates/admin.php:123 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:127 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:131 +#, 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:143 +msgid "Internet connection not working" +msgstr "" + +#: templates/admin.php:146 +msgid "" +"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." +msgstr "" + +#: templates/admin.php:160 +msgid "Cron" +msgstr "" + +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 +msgid "Execute one task with each page loaded" +msgstr "" + +#: templates/admin.php:192 +msgid "" +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." +msgstr "" + +#: templates/admin.php:200 +msgid "Use systems cron service to call the cron.php file every 15 minutes." +msgstr "" + +#: templates/admin.php:205 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:211 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:212 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:219 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:220 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:227 +msgid "Allow public uploads" +msgstr "" + +#: templates/admin.php:228 +msgid "" +"Allow users to enable others to upload into their publicly shared folders" +msgstr "" + +#: templates/admin.php:235 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:236 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:243 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:246 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:253 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:254 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:261 +msgid "Security" +msgstr "" + +#: templates/admin.php:274 +msgid "Enforce HTTPS" +msgstr "" + +#: templates/admin.php:276 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" + +#: templates/admin.php:282 +#, php-format +msgid "" +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" + +#: templates/admin.php:294 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:296 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:327 +msgid "From address" +msgstr "" + +#: templates/admin.php:349 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:353 +msgid "Server address" +msgstr "" + +#: templates/admin.php:357 +msgid "Port" +msgstr "" + +#: templates/admin.php:362 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:363 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:366 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:370 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:371 +msgid "Send email" +msgstr "" + +#: templates/admin.php:376 +msgid "Log" +msgstr "" + +#: templates/admin.php:377 +msgid "Log level" +msgstr "" + +#: templates/admin.php:409 +msgid "More" +msgstr "" + +#: templates/admin.php:410 +msgid "Less" +msgstr "" + +#: templates/admin.php:416 templates/personal.php:171 +msgid "Version" +msgstr "" + +#: templates/admin.php:420 templates/personal.php:174 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + +#: templates/apps.php:14 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:31 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:38 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:43 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:49 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:51 +msgid "See application website" +msgstr "" + +#: templates/apps.php:53 +msgid "-licensed by " +msgstr "" + +#: templates/help.php:6 +msgid "Administrator Documentation" +msgstr "" + +#: templates/help.php:9 +msgid "Online Documentation" +msgstr "" + +#: templates/help.php:11 +msgid "Forum" +msgstr "" + +#: templates/help.php:14 +msgid "Bugtracker" +msgstr "" + +#: templates/help.php:17 +msgid "Commercial Support" +msgstr "" + +#: templates/personal.php:8 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:19 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:27 +#, php-format +msgid "You have used %s of the available %s" +msgstr "" + +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 +msgid "Password" +msgstr "" + +#: templates/personal.php:39 +msgid "Your password was changed" +msgstr "" + +#: templates/personal.php:40 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:42 +msgid "Current password" +msgstr "" + +#: templates/personal.php:45 +msgid "New password" +msgstr "" + +#: templates/personal.php:49 +msgid "Change password" +msgstr "" + +#: templates/personal.php:61 templates/users.php:86 +msgid "Full Name" +msgstr "" + +#: templates/personal.php:76 +msgid "Email" +msgstr "" + +#: templates/personal.php:78 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:81 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:89 +msgid "Profile picture" +msgstr "" + +#: templates/personal.php:94 +msgid "Upload new" +msgstr "" + +#: templates/personal.php:96 +msgid "Select new from Files" +msgstr "" + +#: templates/personal.php:97 +msgid "Remove image" +msgstr "" + +#: templates/personal.php:98 +msgid "Either png or jpg. Ideally square but you will be able to crop it." +msgstr "" + +#: templates/personal.php:100 +msgid "Your avatar is provided by your original account." +msgstr "" + +#: templates/personal.php:104 +msgid "Cancel" +msgstr "" + +#: templates/personal.php:105 +msgid "Choose as profile image" +msgstr "" + +#: templates/personal.php:111 templates/personal.php:112 +msgid "Language" +msgstr "" + +#: templates/personal.php:131 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:137 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:139 +#, php-format +msgid "" +"Use this address to access your Files via " +"WebDAV" +msgstr "" + +#: templates/personal.php:151 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "" + +#: templates/personal.php:157 +msgid "Log-in password" +msgstr "" + +#: templates/personal.php:162 +msgid "Decrypt all Files" +msgstr "" + +#: templates/users.php:19 +msgid "Login Name" +msgstr "" + +#: templates/users.php:28 +msgid "Create" +msgstr "" + +#: templates/users.php:34 +msgid "Admin Recovery Password" +msgstr "" + +#: templates/users.php:35 templates/users.php:36 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:40 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:137 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + +#: templates/users.php:46 templates/users.php:146 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:64 templates/users.php:161 +msgid "Other" +msgstr "" + +#: templates/users.php:85 +msgid "Username" +msgstr "" + +#: templates/users.php:92 +msgid "Storage" +msgstr "" + +#: templates/users.php:106 +msgid "change full name" +msgstr "" + +#: templates/users.php:110 +msgid "set new password" +msgstr "" + +#: templates/users.php:141 +msgid "Default" +msgstr "" diff --git a/l10n/jv/user_ldap.po b/l10n/jv/user_ldap.po new file mode 100644 index 00000000000..2371aadaeb6 --- /dev/null +++ b/l10n/jv/user_ldap.po @@ -0,0 +1,534 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Javanese (http://www.transifex.com/projects/p/owncloud/language/jv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: jv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/clearMappings.php:34 +msgid "Failed to clear the mappings." +msgstr "" + +#: ajax/deleteConfiguration.php:34 +msgid "Failed to delete the server configuration" +msgstr "" + +#: ajax/testConfiguration.php:39 +msgid "The configuration is valid and the connection could be established!" +msgstr "" + +#: ajax/testConfiguration.php:42 +msgid "" +"The configuration is valid, but the Bind failed. Please check the server " +"settings and credentials." +msgstr "" + +#: ajax/testConfiguration.php:46 +msgid "" +"The configuration is invalid. Please have a look at the logs for further " +"details." +msgstr "" + +#: ajax/wizard.php:32 +msgid "No action specified" +msgstr "" + +#: ajax/wizard.php:38 +msgid "No configuration specified" +msgstr "" + +#: ajax/wizard.php:81 +msgid "No data specified" +msgstr "" + +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "" + +#: js/settings.js:67 +msgid "Deletion failed" +msgstr "" + +#: js/settings.js:83 +msgid "Take over settings from recent server configuration?" +msgstr "" + +#: js/settings.js:84 +msgid "Keep settings?" +msgstr "" + +#: js/settings.js:99 +msgid "Cannot add server configuration" +msgstr "" + +#: js/settings.js:127 +msgid "mappings cleared" +msgstr "" + +#: js/settings.js:128 +msgid "Success" +msgstr "" + +#: js/settings.js:133 +msgid "Error" +msgstr "" + +#: js/settings.js:838 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:847 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:856 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:873 js/settings.js:882 +msgid "Select groups" +msgstr "" + +#: js/settings.js:876 js/settings.js:885 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:879 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:906 +msgid "Connection test succeeded" +msgstr "" + +#: js/settings.js:913 +msgid "Connection test failed" +msgstr "" + +#: js/settings.js:922 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "" + +#: js/settings.js:923 +msgid "Confirm Deletion" +msgstr "" + +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" +msgstr[1] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" +msgstr[1] "" + +#: lib/wizard.php:784 lib/wizard.php:796 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:963 +msgid "Could not find the desired feature" +msgstr "" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Groups meeting these criteria are available in %s:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:8 +#: templates/part.wizard-userfilter.php:8 +msgid "only those object classes:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:17 +#: templates/part.wizard-userfilter.php:17 +msgid "only from those groups:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:25 +#: templates/part.wizard-loginfilter.php:32 +#: templates/part.wizard-userfilter.php:25 +msgid "Edit raw filter instead" +msgstr "" + +#: templates/part.wizard-groupfilter.php:30 +#: templates/part.wizard-loginfilter.php:37 +#: templates/part.wizard-userfilter.php:30 +msgid "Raw LDAP filter" +msgstr "" + +#: templates/part.wizard-groupfilter.php:31 +#, php-format +msgid "" +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "" + +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "" + +#: templates/part.wizard-loginfilter.php:4 +msgid "Users login with this attribute:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:24 +msgid "Other Attributes:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:38 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" +msgstr "" + +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" +msgstr "" + +#: templates/part.wizard-server.php:30 +msgid "Host" +msgstr "" + +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "" + +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 +msgid "User DN" +msgstr "" + +#: templates/part.wizard-server.php:45 +msgid "" +"The DN of the client user with which the bind shall be done, e.g. " +"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " +"empty." +msgstr "" + +#: templates/part.wizard-server.php:52 +msgid "Password" +msgstr "" + +#: templates/part.wizard-server.php:53 +msgid "For anonymous access, leave DN and Password empty." +msgstr "" + +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "" + +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit %s access to users meeting these criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 +#, php-format +msgid "" +"The filter specifies which LDAP users shall have access to the %s instance." +msgstr "" + +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "" + +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "" + +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php:20 +msgid "Connection Settings" +msgstr "" + +#: templates/settings.php:22 +msgid "Configuration Active" +msgstr "" + +#: templates/settings.php:22 +msgid "When unchecked, this configuration will be skipped." +msgstr "" + +#: templates/settings.php:23 +msgid "Backup (Replica) Host" +msgstr "" + +#: templates/settings.php:23 +msgid "" +"Give an optional backup host. It must be a replica of the main LDAP/AD " +"server." +msgstr "" + +#: templates/settings.php:24 +msgid "Backup (Replica) Port" +msgstr "" + +#: templates/settings.php:25 +msgid "Disable Main Server" +msgstr "" + +#: templates/settings.php:25 +msgid "Only connect to the replica server." +msgstr "" + +#: templates/settings.php:26 +msgid "Case insensitve LDAP server (Windows)" +msgstr "" + +#: templates/settings.php:27 +msgid "Turn off SSL certificate validation." +msgstr "" + +#: templates/settings.php:27 +#, php-format +msgid "" +"Not recommended, use it for testing only! If connection only works with this" +" option, import the LDAP server's SSL certificate in your %s server." +msgstr "" + +#: templates/settings.php:28 +msgid "Cache Time-To-Live" +msgstr "" + +#: templates/settings.php:28 +msgid "in seconds. A change empties the cache." +msgstr "" + +#: templates/settings.php:30 +msgid "Directory Settings" +msgstr "" + +#: templates/settings.php:32 +msgid "User Display Name Field" +msgstr "" + +#: templates/settings.php:32 +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" + +#: templates/settings.php:33 +msgid "Base User Tree" +msgstr "" + +#: templates/settings.php:33 +msgid "One User Base DN per line" +msgstr "" + +#: templates/settings.php:34 +msgid "User Search Attributes" +msgstr "" + +#: templates/settings.php:34 templates/settings.php:37 +msgid "Optional; one attribute per line" +msgstr "" + +#: templates/settings.php:35 +msgid "Group Display Name Field" +msgstr "" + +#: templates/settings.php:35 +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" + +#: templates/settings.php:36 +msgid "Base Group Tree" +msgstr "" + +#: templates/settings.php:36 +msgid "One Group Base DN per line" +msgstr "" + +#: templates/settings.php:37 +msgid "Group Search Attributes" +msgstr "" + +#: templates/settings.php:38 +msgid "Group-Member association" +msgstr "" + +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 +msgid "Special Attributes" +msgstr "" + +#: templates/settings.php:44 +msgid "Quota Field" +msgstr "" + +#: templates/settings.php:45 +msgid "Quota Default" +msgstr "" + +#: templates/settings.php:45 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:46 +msgid "Email Field" +msgstr "" + +#: templates/settings.php:47 +msgid "User Home Folder Naming Rule" +msgstr "" + +#: templates/settings.php:47 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:53 +msgid "Internal Username" +msgstr "" + +#: templates/settings.php:54 +msgid "" +"By default the internal username will be created from the UUID attribute. It" +" makes sure that the username is unique and characters do not need to be " +"converted. The internal username has the restriction that only these " +"characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced " +"with their ASCII correspondence or simply omitted. On collisions a number " +"will be added/increased. The internal username is used to identify a user " +"internally. It is also the default name for the user home folder. It is also" +" a part of remote URLs, for instance for all *DAV services. With this " +"setting, the default behavior can be overridden. To achieve a similar " +"behavior as before ownCloud 5 enter the user display name attribute in the " +"following field. Leave it empty for default behavior. Changes will have " +"effect only on newly mapped (added) LDAP users." +msgstr "" + +#: templates/settings.php:55 +msgid "Internal Username Attribute:" +msgstr "" + +#: templates/settings.php:56 +msgid "Override UUID detection" +msgstr "" + +#: templates/settings.php:57 +msgid "" +"By default, the UUID attribute is automatically detected. The UUID attribute" +" is used to doubtlessly identify LDAP users and groups. Also, the internal " +"username will be created based on the UUID, if not specified otherwise " +"above. You can override the setting and pass an attribute of your choice. " +"You must make sure that the attribute of your choice can be fetched for both" +" users and groups and it is unique. Leave it empty for default behavior. " +"Changes will have effect only on newly mapped (added) LDAP users and groups." +msgstr "" + +#: templates/settings.php:58 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:59 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:60 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:61 +msgid "" +"Usernames are used to store and assign (meta) data. In order to precisely " +"identify and recognize users, each LDAP user will have a internal username. " +"This requires a mapping from username to LDAP user. The created username is " +"mapped to the UUID of the LDAP user. Additionally the DN is cached as well " +"to reduce LDAP interaction, but it is not used for identification. If the DN" +" changes, the changes will be found. The internal username is used all over." +" Clearing the mappings will have leftovers everywhere. Clearing the mappings" +" is not configuration sensitive, it affects all LDAP configurations! Never " +"clear the mappings in a production environment, only in a testing or " +"experimental stage." +msgstr "" + +#: templates/settings.php:62 +msgid "Clear Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:62 +msgid "Clear Groupname-LDAP Group Mapping" +msgstr "" diff --git a/l10n/jv/user_webdavauth.po b/l10n/jv/user_webdavauth.po new file mode 100644 index 00000000000..c09af40c57c --- /dev/null +++ b/l10n/jv/user_webdavauth.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-07 14:16+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Javanese (http://www.transifex.com/projects/p/owncloud/language/jv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: jv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:2 +msgid "WebDAV Authentication" +msgstr "" + +#: templates/settings.php:3 +msgid "Address: " +msgstr "" + +#: templates/settings.php:6 +msgid "" +"The user credentials will be sent to this address. This plugin checks the " +"response and will interpret the HTTP statuscodes 401 and 403 as invalid " +"credentials, and all other responses as valid credentials." +msgstr "" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index 2f9ec267e33..daac560faaf 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -17,24 +17,24 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -134,59 +134,59 @@ msgstr "ნოემბერი" msgid "December" msgstr "დეკემბერი" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "პარამეტრები" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "შენახვა..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "წამის წინ" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "დღეს" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "გუშინ" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "გასულ თვეში" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "თვის წინ" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "ბოლო წელს" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "წლის წინ" @@ -224,32 +224,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "უარყოფა" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -528,14 +536,14 @@ msgstr "ახალი პაროლი" msgid "Reset password" msgstr "პაროლის შეცვლა" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index ea64bec0b7f..5dc273c6b7e 100644 --- a/l10n/ka_GE/user_ldap.po +++ b/l10n/ka_GE/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -417,41 +417,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "სპეციალური ატრიბუტები" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "ქვოტას ველი" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "საწყისი ქვოტა" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "ბაიტებში" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "იმეილის ველი" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "მომხმარებლის Home დირექტორიის სახელების დარქმევის წესი" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "დატოვეთ ცარიელი მომხმარებლის სახელი (default). სხვა დანარჩენში მიუთითეთ LDAP/AD ატრიბუტი." -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -467,15 +478,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -486,19 +497,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -512,10 +523,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/km/core.po b/l10n/km/core.po index 740792ba4ca..75a4a0c4afd 100644 --- a/l10n/km/core.po +++ b/l10n/km/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -18,24 +18,24 @@ msgstr "" "Language: km\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -135,59 +135,59 @@ msgstr "ខែវិច្ឆិកា" msgid "December" msgstr "ខែធ្នូ" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "ការកំណត់" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "កំពុង​រក្សាទុក" -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "វិនាទី​មុន" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n នាទី​មុន" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n ម៉ោង​មុន" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "ថ្ងៃនេះ" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "ម្សិលមិញ" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n ថ្ងៃ​មុន" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "ខែមុន" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n ខែ​មុន" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "ខែ​មុន" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "ឆ្នាំ​មុន" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "ឆ្នាំ​មុន" @@ -225,32 +225,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "លើកលែង" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -529,14 +537,14 @@ msgstr "ពាក្យ​សម្ងាត់​ថ្មី" msgid "Reset password" msgstr "កំណត់​ពាក្យ​សម្ងាត់​ម្ដង​ទៀត" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/km/user_ldap.po b/l10n/km/user_ldap.po index 5f8d728426c..5a41e124531 100644 --- a/l10n/km/user_ldap.po +++ b/l10n/km/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -418,41 +418,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -468,15 +479,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -487,19 +498,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -513,10 +524,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/kn/core.po b/l10n/kn/core.po index 26a5f9246ea..0d2fc8f5d55 100644 --- a/l10n/kn/core.po +++ b/l10n/kn/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -17,24 +17,24 @@ msgstr "" "Language: kn\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -134,59 +134,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "" -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "" @@ -224,32 +224,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -528,14 +536,14 @@ msgstr "" msgid "Reset password" msgstr "" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/kn/user_ldap.po b/l10n/kn/user_ldap.po index 43493a88cac..4c39375aee3 100644 --- a/l10n/kn/user_ldap.po +++ b/l10n/kn/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -417,41 +417,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -467,15 +478,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -486,19 +497,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -512,10 +523,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 4d28ccc174c..6932d89f8b3 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -24,24 +24,24 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "%s 님에게 메일을 보낼 수 없습니다." -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "유지 보수 모드 켜짐" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "유지 보수 모드 꺼짐" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "데이터베이스 업데이트 됨" @@ -141,59 +141,59 @@ msgstr "11월" msgid "December" msgstr "12월" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "설정" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "저장 중..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "초 전" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n분 전 " -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n시간 전 " -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "오늘" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "어제" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n일 전 " -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "지난 달" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n달 전 " -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "개월 전" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "작년" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "년 전" @@ -231,32 +231,40 @@ msgid "One file conflict" msgstr "파일 1개 충돌" #: js/oc-dialogs.js:367 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" msgstr "어느 파일을 유지하시겠습니까?" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "두 버전을 모두 선택하면, 파일 이름에 번호가 추가될 것입니다." -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "취소" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "계속" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "(모두 선택됨)" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "({count}개 선택됨)" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "파일 존재함 템플릿을 불러오는 중 오류 발생" @@ -535,14 +543,14 @@ msgstr "새 암호" msgid "Reset password" msgstr "암호 재설정" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index 06500e88a3f..b8de7e931fc 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -420,41 +420,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "특수 속성" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "할당량 필드" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "기본 할당량" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "바이트 단위" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "이메일 필드" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "사용자 홈 폴더 이름 규칙" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "사용자 이름을 사용하려면 비워 두십시오(기본값). 기타 경우 LDAP/AD 속성을 지정하십시오." -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "내부 사용자 이름" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -470,15 +481,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "기본적으로 내부 사용자 이름은 UUID 속성에서 생성됩니다. 사용자 이름이 중복되지 않고 문자열을 변환할 필요가 없도록 합니다. 내부 사용자 이름에는 다음과 같은 문자열만 사용할 수 있습니다: [a-zA-Z0-9_.@-] 다른 문자열은 ASCII에 해당하는 문자열로 변경되거나 없는 글자로 취급됩니다. 충돌하는 경우 숫자가 붙거나 증가합니다. 내부 사용자 이름은 내부적으로 사용자를 식별하는 데 사용되며, 사용자 홈 폴더의 기본 이름입니다. 또한 *DAV와 같은 외부 URL의 일부로 사용됩니다. 이 설정을 사용하면 기본 설정을 재정의할 수 있습니다. ownCloud 5 이전의 행동을 사용하려면 아래 필드에 사용자의 표시 이름 속성을 입력하십시오. 비워 두면 기본 설정을 사용합니다. 새로 추가되거나 매핑된 LDAP 사용자에게만 적용됩니다." -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "내부 사용자 이름 속성:" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "UUID 확인 재정의" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -489,19 +500,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "기본적으로 UUID 속성은 자동적으로 감지됩니다. UUID 속성은 LDAP 사용자와 그룹을 정확히 식별하는 데 사용됩니다. 지정하지 않은 경우 내부 사용자 이름은 UUID를 기반으로 생성됩니다. 이 설정을 다시 정의하고 임의의 속성을 지정할 수 있습니다. 사용자와 그룹 모두에게 속성을 적용할 수 있고 중복된 값이 없는지 확인하십시오. 비워 두면 기본 설정을 사용합니다. 새로 추가되거나 매핑된 LDAP 사용자와 그룹에만 적용됩니다." -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "사용자 UUID 속성:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "그룹 UUID 속성:" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "사용자 이름-LDAP 사용자 매핑" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -515,10 +526,10 @@ msgid "" "experimental stage." msgstr "사용자 이름은 (메타) 데이터를 저장하고 할당하는 데 사용됩니다. 사용자를 정확하게 식별하기 위하여 각각 LDAP 사용자는 내부 사용자 이름을 갖습니다. 이는 사용자 이름과 LDAP 사용자 간의 매핑이 필요합니다. 생성된 사용자 이름은 LDAP 사용자의 UUID로 매핑됩니다. 추가적으로 LDAP 통신을 줄이기 위해서 DN이 캐시에 저장되지만 식별에 사용되지는 않습니다. DN이 변경되면 변경 사항이 기록됩니다. 내부 사용자 이름은 계속 사용됩니다. 매핑을 비우면 흔적이 남아 있게 됩니다. 매핑을 비우는 작업은 모든 LDAP 설정에 영향을 줍니다! 테스트 및 실험 단계에만 사용하고, 사용 중인 서버에서는 시도하지 마십시오." -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "사용자 이름-LDAP 사용자 매핑 비우기" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "그룹 이름-LDAP 그룹 매핑 비우기" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index 305363b858c..3f62db2a42d 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -17,24 +17,24 @@ msgstr "" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -134,63 +134,63 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "ده‌ستكاری" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "پاشکه‌وتده‌کات..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "" @@ -229,32 +229,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "لابردن" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -533,14 +541,14 @@ msgstr "وشەی نهێنی نوێ" msgid "Reset password" msgstr "دووباره‌ كردنه‌وه‌ی وشه‌ی نهێنی" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index 4635426b59a..e006b5932ac 100644 --- a/l10n/ku_IQ/user_ldap.po +++ b/l10n/ku_IQ/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -419,41 +419,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -469,15 +480,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -488,19 +499,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -514,10 +525,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index aea34c25680..e07f5422ac6 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -19,24 +19,24 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "Maintenance Modus ass un" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "Maintenance Modus ass aus" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "Datebank ass geupdate ginn" @@ -136,63 +136,63 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Astellungen" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "Speicheren..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "Sekonnen hir" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n Minutt hir" msgstr[1] "%n Minutten hir" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "haut" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "gëschter" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "leschte Mount" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "Méint hir" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "Lescht Joer" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "Joren hir" @@ -231,32 +231,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" msgstr "Weieng Fichieren wëlls de gär behalen?" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Ofbriechen" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "Weider" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "(all ausgewielt)" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "({count} ausgewielt)" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -535,14 +543,14 @@ msgstr "Neit Passwuert" msgid "Reset password" msgstr "Passwuert zréck setzen" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index 4edf0855c49..7ffaec0adf3 100644 --- a/l10n/lb/user_ldap.po +++ b/l10n/lb/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -419,41 +419,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -469,15 +480,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -488,19 +499,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -514,10 +525,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index 5a431dd6444..bde5eb1e70e 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -22,24 +22,24 @@ msgstr "" "Language: lt_LT\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Nepavyko nusiųsti el. pašto šiems naudotojams: %s " -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "Įjungta priežiūros veiksena" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "Išjungta priežiūros veiksena" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "Atnaujinta duomenų bazė" @@ -139,67 +139,67 @@ msgstr "Lapkritis" msgid "December" msgstr "Gruodis" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Nustatymai" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "Saugoma..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "prieš sekundę" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] " prieš %n minutę" msgstr[1] " prieš %n minučių" msgstr[2] " prieš %n minučių" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "prieš %n valandą" msgstr[1] "prieš %n valandų" msgstr[2] "prieš %n valandų" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "šiandien" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "vakar" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "prieš %n dieną" msgstr[1] "prieš %n dienas" msgstr[2] "prieš %n dienų" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "praeitą mėnesį" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "prieš %n mėnesį" msgstr[1] "prieš %n mėnesius" msgstr[2] "prieš %n mėnesių" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "prieš mėnesį" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "praeitais metais" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "prieš metus" @@ -239,32 +239,40 @@ msgid "One file conflict" msgstr "Vienas failo konfliktas" #: js/oc-dialogs.js:367 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" msgstr "Kuriuos failus norite laikyti?" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Jei pasirenkate abi versijas, nukopijuotas failas turės pridėtą numerį pavadinime." -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Atšaukti" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "Tęsti" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "(visi pažymėti)" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "({count} pažymėtų)" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "Klaida įkeliant esančių failų ruošinį" @@ -543,14 +551,14 @@ msgstr "Naujas slaptažodis" msgid "Reset password" msgstr "Atkurti slaptažodį" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index 074b5567000..1e9fab49ec4 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -423,41 +423,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "Specialūs atributai" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "Kvotos laukas" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "Numatyta kvota" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "baitais" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "El. pašto laukas" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "Naudotojo namų aplanko pavadinimo taisyklė" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "Vidinis naudotojo vardas" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -473,15 +484,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "Vidinis naudotojo vardo atributas:" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "Perrašyti UUID aptikimą" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -492,19 +503,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "Naudotojo vardo - LDAP naudotojo sąsaja" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -518,10 +529,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "Išvalyti naudotojo vardo - LDAP naudotojo sąsają" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Išvalyti grupės pavadinimo - LDAP naudotojo sąsają" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index fb37ca57ae9..a2dfeb1d55b 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -18,24 +18,24 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -135,67 +135,67 @@ msgstr "Novembris" msgid "December" msgstr "Decembris" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Iestatījumi" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "Saglabā..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "sekundes atpakaļ" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Tagad, %n minūtes" msgstr[1] "Pirms %n minūtes" msgstr[2] "Pirms %n minūtēm" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Šodien, %n stundas" msgstr[1] "Pirms %n stundas" msgstr[2] "Pirms %n stundām" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "šodien" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "vakar" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Šodien, %n dienas" msgstr[1] "Pirms %n dienas" msgstr[2] "Pirms %n dienām" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "pagājušajā mēnesī" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Šomēnes, %n mēneši" msgstr[1] "Pirms %n mēneša" msgstr[2] "Pirms %n mēnešiem" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "mēnešus atpakaļ" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "gājušajā gadā" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "gadus atpakaļ" @@ -235,32 +235,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Atcelt" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -539,14 +547,14 @@ msgstr "Jauna parole" msgid "Reset password" msgstr "Mainīt paroli" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index 90f2e4597e8..6861a984e01 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -421,41 +421,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "Īpašie atribūti" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "Kvotu lauks" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "Kvotas noklusējums" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "baitos" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "E-pasta lauks" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "Lietotāja mājas mapes nosaukšanas kārtula" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Atstāt tukšu lietotāja vārdam (noklusējuma). Citādi, norādi LDAP/AD atribūtu." -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -471,15 +482,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -490,19 +501,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -516,10 +527,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index 9f3faff1447..b513e1ed08b 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -18,24 +18,24 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "Вклучен е модот за одржување" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "Ислкучен е модот за одржување" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "Базата е надградена" @@ -135,63 +135,63 @@ msgstr "Ноември" msgid "December" msgstr "Декември" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Подесувања" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "Снимам..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "пред секунди" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "денеска" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "вчера" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "минатиот месец" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "пред месеци" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "минатата година" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "пред години" @@ -230,32 +230,40 @@ msgid "One file conflict" msgstr "Конфликт со една датотека" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Откажи" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "Продолжи" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "(сите одбрани)" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "({count} одбраните)" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "Грешка при вчитување на датотеката, шаблонот постои " @@ -534,14 +542,14 @@ msgstr "Нова лозинка" msgid "Reset password" msgstr "Ресетирај лозинка" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index 9fbc64a8403..5550ed99dd9 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -420,41 +420,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -470,15 +481,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -489,19 +500,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -515,10 +526,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/ml/core.po b/l10n/ml/core.po index 15de395bd8e..23e35f07f39 100644 --- a/l10n/ml/core.po +++ b/l10n/ml/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" "MIME-Version: 1.0\n" @@ -17,24 +17,24 @@ msgstr "" "Language: ml\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -134,63 +134,63 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "" -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "" @@ -229,32 +229,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -533,14 +541,14 @@ msgstr "" msgid "Reset password" msgstr "" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/ml/user_ldap.po b/l10n/ml/user_ldap.po index bb825706df6..74e585ae93b 100644 --- a/l10n/ml/user_ldap.po +++ b/l10n/ml/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" "MIME-Version: 1.0\n" @@ -419,41 +419,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -469,15 +480,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -488,19 +499,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -514,10 +525,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/ml_IN/core.po b/l10n/ml_IN/core.po index 20f6eaa8db1..fc5ab544f59 100644 --- a/l10n/ml_IN/core.po +++ b/l10n/ml_IN/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -17,24 +17,24 @@ msgstr "" "Language: ml_IN\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -134,63 +134,63 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "" -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "" @@ -229,32 +229,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -533,14 +541,14 @@ msgstr "" msgid "Reset password" msgstr "" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/ml_IN/user_ldap.po b/l10n/ml_IN/user_ldap.po index 7d109240d01..39c0ec79a26 100644 --- a/l10n/ml_IN/user_ldap.po +++ b/l10n/ml_IN/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -419,41 +419,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -469,15 +480,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -488,19 +499,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -514,10 +525,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/mn/core.po b/l10n/mn/core.po index a9b5d68e767..f6d739d99cc 100644 --- a/l10n/mn/core.po +++ b/l10n/mn/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" "MIME-Version: 1.0\n" @@ -17,24 +17,24 @@ msgstr "" "Language: mn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -134,63 +134,63 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "" -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "" @@ -229,32 +229,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -533,14 +541,14 @@ msgstr "" msgid "Reset password" msgstr "" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/mn/user_ldap.po b/l10n/mn/user_ldap.po index b5d1295fd92..51f10319473 100644 --- a/l10n/mn/user_ldap.po +++ b/l10n/mn/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" "MIME-Version: 1.0\n" @@ -419,41 +419,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -469,15 +480,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -488,19 +499,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -514,10 +525,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 6ddccd56f8b..2bd3a56010f 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -17,24 +17,24 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -134,59 +134,59 @@ msgstr "November" msgid "December" msgstr "Disember" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Tetapan" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "Simpan..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "" @@ -224,32 +224,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Batal" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -528,14 +536,14 @@ msgstr "Kata laluan baru" msgid "Reset password" msgstr "Penetapan semula kata laluan" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index ffaf5f23caa..f99f0580f35 100644 --- a/l10n/ms_MY/user_ldap.po +++ b/l10n/ms_MY/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -417,41 +417,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -467,15 +478,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -486,19 +497,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -512,10 +523,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index 822acd25a9a..4c8f0dee364 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -17,24 +17,24 @@ msgstr "" "Language: my_MM\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -134,59 +134,59 @@ msgstr "နိုဝင်ဘာ" msgid "December" msgstr "ဒီဇင်ဘာ" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "" -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "စက္ကန့်အနည်းငယ်က" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "ယနေ့" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "မနေ့က" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "ပြီးခဲ့သောလ" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "မနှစ်က" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "နှစ် အရင်က" @@ -224,32 +224,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "ပယ်ဖျက်မည်" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -528,14 +536,14 @@ msgstr "စကားဝှက်အသစ်" msgid "Reset password" msgstr "" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/my_MM/user_ldap.po b/l10n/my_MM/user_ldap.po index f168578c576..e251fa3611f 100644 --- a/l10n/my_MM/user_ldap.po +++ b/l10n/my_MM/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -417,41 +417,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -467,15 +478,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -486,19 +497,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -512,10 +523,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 8cce143dc2c..5a72ebdb028 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-07 01:55-0400\n" -"PO-Revision-Date: 2014-04-06 16:40+0000\n" -"Last-Translator: espenbye \n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -233,32 +233,40 @@ msgid "One file conflict" msgstr "En filkonflikt" #: js/oc-dialogs.js:367 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" msgstr "Hvilke filer vil du beholde?" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Hvis du velger begge versjonene vil den kopierte filen få et nummer lagt til i navnet." -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Avbryt" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "Fortsett" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "(alle valgt)" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "({count} valgt)" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "Feil ved lasting av \"filen eksisterer\"-mal" diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index 8de5b111cf9..50adfe578c7 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -420,41 +420,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "Spesielle attributter" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "Felt med lagringskvote" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "Standard lagringskvote" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "i bytes" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "Felt med e-postadresse" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "Navneregel for brukers hjemmemappe" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "La stå tom for brukernavn (standard). Ellers, spesifiser en LDAP/AD attributt." -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "Internt brukernavn" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -470,15 +481,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "Som standard vil det interne brukernavnet bli laget utifra UUID-attributten. Dette sikrer at brukernavnet er unikt og at det ikke er nødvendig å konvertere tegn. Det interne brukernavnet har den begrensningen at bare disse tegnene er tillatt: [ a-zA-Z0-9_.@- ]. Andre tegn erstattes av tilsvarende ASCII-tegn eller blir ganske enkelt utelatt. Ved kollisjon blir et nummer lagt til / øket. Det interne brukernavnet brukes til å identifisere en bruker internt. Det er også standardnavnet på brukerens hjemmemappe. Det er også med i fjern-URL-er, for eksempel for alle *DAV-tjenester. Med denne innstillingen kan standard oppførsel overstyres. For å få en oppførsel som likner oppførselen før ownCloud 5, legg inn attributten for brukerens visningsnavn i dette feltet. La feltet stå tomt for standard oppførsel. Endringer vil kun påvirke nylig tilknyttede (opprettede) LDAP-brukere." -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "Attributt for internt brukernavn:" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "Overstyr UUID-oppdaging" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -489,19 +500,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Som standard blir UUID-attributten oppdaget automatisk. UUID-attributten brukes til å identifisere LDAP-brukere og -grupper uten tvil. Det interne brukernavnet vil også bli laget basert på UUID, hvis ikke annet er spesifisert ovenfor. Du kan overstyre innstillingen og oppgi den attributten du ønsker. Du må forsikre det om at din valgte attributt kan hentes ut både for brukere og for grupper og at den er unik. La stå tomt for standard oppførsel. Endringer vil kun påvirke nylig tilknyttede (opprettede) LDAP-brukere og -grupper." -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "UUID-attributt for brukere:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "UUID-attributt for grupper:" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "Tilknytning av brukernavn til LDAP-bruker" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -515,10 +526,10 @@ msgid "" "experimental stage." msgstr "Brukernavn brukes til å lagre og tilordne (meta)data. For at brukere skal identifiseres og gjenkjennes presist, vil hver LDAP-bruker ha et internt brukernavn. Dette krever en tilknytning fra brukernavn til LDAP-bruker. Brukernavn som opprettes blir knyttet til LDAP-brukerens UUID. I tillegg mellomlagres DN for å redusere LDAP-kommunikasjon, men det brukes ikke til identifisering. Hvis DN endres vil endringene bli oppdaget. Det interne brukernavnet brukes alle steder. Nullstilling av tilknytningene vil etterlate seg rester overalt. Nullstilling av tilknytningene skjer ikke pr. konfigurasjon, det påvirker alle LDAP-konfigurasjoner! Nullstill aldri tilknytningene i et produksjonsmiljø, kun ved testing eller eksperimentering." -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "Nullstill tilknytning av brukernavn til LDAP-bruker" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Nullstill tilknytning av gruppenavn til LDAP-gruppe" diff --git a/l10n/nds/core.po b/l10n/nds/core.po index 648e46df300..93b4795b345 100644 --- a/l10n/nds/core.po +++ b/l10n/nds/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Low German (http://www.transifex.com/projects/p/owncloud/language/nds/)\n" "MIME-Version: 1.0\n" @@ -17,24 +17,24 @@ msgstr "" "Language: nds\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -134,63 +134,63 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "" -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "" @@ -229,32 +229,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -533,14 +541,14 @@ msgstr "" msgid "Reset password" msgstr "" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/nds/user_ldap.po b/l10n/nds/user_ldap.po index 66bc16b25d8..87f72df86c2 100644 --- a/l10n/nds/user_ldap.po +++ b/l10n/nds/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Low German (http://www.transifex.com/projects/p/owncloud/language/nds/)\n" "MIME-Version: 1.0\n" @@ -419,41 +419,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -469,15 +480,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -488,19 +499,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -514,10 +525,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/ne/core.po b/l10n/ne/core.po index 0de88d8e9fd..be84d374419 100644 --- a/l10n/ne/core.po +++ b/l10n/ne/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -17,24 +17,24 @@ msgstr "" "Language: ne\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -134,63 +134,63 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "" -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "" @@ -229,32 +229,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -533,14 +541,14 @@ msgstr "" msgid "Reset password" msgstr "" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/ne/user_ldap.po b/l10n/ne/user_ldap.po index 8d19c156bd5..2837bbbb4c5 100644 --- a/l10n/ne/user_ldap.po +++ b/l10n/ne/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -419,41 +419,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -469,15 +480,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -488,19 +499,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -514,10 +525,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 0177e68a325..24cfbb7f963 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-23 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 06:50+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -20,24 +20,24 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "De vervaldatum ligt in het verleden." -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Kon geen e-mail sturen aan de volgende gebruikers: %s" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "Onderhoudsmodus ingeschakeld" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "Onderhoudsmodus uitgeschakeld" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "Database bijgewerkt" @@ -137,63 +137,63 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Instellingen" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "Opslaan" -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "seconden geleden" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n minuten geleden" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n uur geleden" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "vandaag" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "gisteren" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n dagen geleden" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "vorige maand" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n maanden geleden" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "maanden geleden" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "vorig jaar" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "jaar geleden" @@ -232,32 +232,40 @@ msgid "One file conflict" msgstr "Een bestandsconflict" #: js/oc-dialogs.js:367 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" msgstr "Welke bestanden wilt u bewaren?" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Als u beide versies selecteerde, zal het gekopieerde bestand een nummer aan de naam toegevoegd krijgen." -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Annuleer" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "Verder" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "(alles geselecteerd)" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "({count} geselecteerd)" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "Fout bij laden bestand bestaat al sjabloon" @@ -536,14 +544,14 @@ msgstr "Nieuw wachtwoord" msgid "Reset password" msgstr "Reset wachtwoord" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "Mac OSX wordt niet ondersteund en %s zal niet goed werken op dit platform. Gebruik het op uw eigen risico!" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "Voor het beste resultaat adviseren wij het gebruik van een GNU/Linux server." diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index a4759a0e924..cc0208d7cd0 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -422,41 +422,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "Wanneer ingeschakeld worden groepen binnen groepen ondersteund. (Werkt alleen als het groepslid attribuut DNs bevat)" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "Speciale attributen" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "Quota veld" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "Quota standaard" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "in bytes" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "E-mailveld" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "Gebruikers Home map naamgevingsregel" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Laat leeg voor de gebruikersnaam (standaard). Of, specificeer een LDAP/AD attribuut." -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "Interne gebruikersnaam" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -472,15 +483,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "Standaard wordt de interne gebruikersnaam aangemaakt op basis van het UUID attribuut. Het zorgt ervoor dat de gebruikersnaam uniek is en dat tekens niet hoeven te worden geconverteerd. De interne gebruikersnaam heeft als beperking dat alleen deze tekens zijn toegestaan​​: [a-zA-Z0-9_.@- ]. Andere tekens worden vervangen door hun ASCII vertaling of gewoonweg weggelaten. Bij identieke namen wordt een nummer toegevoegd of verhoogd. De interne gebruikersnaam wordt gebruikt om een ​​gebruiker binnen het systeem te herkennen. Het is ook de standaardnaam voor de standaardmap van de gebruiker in ownCloud. Het is ook een vertaling voor externe URL's, bijvoorbeeld voor alle *DAV diensten. Met deze instelling kan het standaardgedrag worden overschreven. Om een soortgelijk gedrag te bereiken als van vóór ownCloud 5, voer het gebruikersweergavenaam attribuut in in het volgende veld. Laat het leeg voor standaard gedrag. Veranderingen worden alleen toegepast op gekoppelde (toegevoegde) LDAP-gebruikers." -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "Interne gebruikersnaam attribuut:" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "Negeren UUID detectie" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -491,19 +502,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Standaard herkent ownCloud het UUID-attribuut automatisch. Het UUID attribuut wordt gebruikt om LDAP-gebruikers en -groepen uniek te identificeren. Ook zal de interne gebruikersnaam worden aangemaakt op basis van het UUID, tenzij deze hierboven anders is aangegeven. U kunt de instelling overschrijven en zelf een waarde voor het attribuut opgeven. U moet ervoor zorgen dat het ingestelde attribuut kan worden opgehaald voor zowel gebruikers als groepen en dat het uniek is. Laat het leeg voor standaard gedrag. Veranderingen worden alleen doorgevoerd op nieuw gekoppelde (toegevoegde) LDAP-gebruikers en-groepen." -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "UUID attribuut voor gebruikers:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "UUID attribuut voor groepen:" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "Gebruikersnaam-LDAP gebruikers vertaling" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -517,10 +528,10 @@ msgid "" "experimental stage." msgstr "ownCloud maakt gebruik van gebruikersnamen om (meta) data op te slaan en toe te wijzen. Om gebruikers uniek te identificeren, krijgt elke LDAP-gebruiker ook een interne gebruikersnaam. Dit vereist een koppeling van de ownCloud gebruikersnaam aan een ​​LDAP-gebruiker. De gecreëerde gebruikersnaam is gekoppeld aan de UUID van de LDAP-gebruiker. Aanvullend wordt ook de 'DN' gecached om het aantal LDAP-interacties te verminderen, maar dit wordt niet gebruikt voor identificatie. Als de DN verandert, zullen de veranderingen worden gevonden. De interne naam wordt overal gebruikt. Het wissen van de koppeling zal overal resten achterlaten. Het wissen van koppelingen is niet configuratiegevoelig, maar het raakt wel alle LDAP instellingen! Zorg ervoor dat deze koppelingen nooit in een productieomgeving gewist worden. Maak ze alleen leeg in een test- of ontwikkelomgeving." -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "Leegmaken Gebruikersnaam-LDAP gebruikers vertaling" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Leegmaken Groepsnaam-LDAP groep vertaling" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index bde8baeea24..6b639db57e0 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -20,24 +20,24 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "Skrudde på vedlikehaldsmodus" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "Skrudde av vedlikehaldsmodus" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "Database oppdatert" @@ -137,63 +137,63 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Innstillingar" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "Lagrar …" -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "sekund sidan" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minutt sidan" msgstr[1] "%n minutt sidan" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n time sidan" msgstr[1] "%n timar sidan" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "i dag" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "i går" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dag sidan" msgstr[1] "%n dagar sidan" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "førre månad" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n månad sidan" msgstr[1] "%n månadar sidan" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "månadar sidan" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "i fjor" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "år sidan" @@ -232,32 +232,40 @@ msgid "One file conflict" msgstr "Éin filkonflikt" #: js/oc-dialogs.js:367 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" msgstr "Kva filer vil du spara?" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Viss du vel begge utgåvene, vil den kopierte fila få eit tal lagt til namnet." -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Avbryt" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "Gå vidare" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "(alle valte)" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "({count} valte)" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "Klarte ikkje å lasta fil-finst-mal" @@ -536,14 +544,14 @@ msgstr "Nytt passord" msgid "Reset password" msgstr "Nullstill passord" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index 37d6774cb71..403a8918af4 100644 --- a/l10n/nn_NO/user_ldap.po +++ b/l10n/nn_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -419,41 +419,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -469,15 +480,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -488,19 +499,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -514,10 +525,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/nqo/core.po b/l10n/nqo/core.po index fca384c25d9..ebd63b4cd6b 100644 --- a/l10n/nqo/core.po +++ b/l10n/nqo/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -17,24 +17,24 @@ msgstr "" "Language: nqo\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -134,59 +134,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "" -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "" @@ -224,32 +224,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -528,14 +536,14 @@ msgstr "" msgid "Reset password" msgstr "" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/nqo/user_ldap.po b/l10n/nqo/user_ldap.po index 19a09572685..aa3ecec450f 100644 --- a/l10n/nqo/user_ldap.po +++ b/l10n/nqo/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -417,41 +417,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -467,15 +478,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -486,19 +497,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -512,10 +523,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index 152d585a7a7..27973e1d237 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -17,24 +17,24 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -134,63 +134,63 @@ msgstr "Novembre" msgid "December" msgstr "Decembre" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Configuracion" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "Enregistra..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "segonda a" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "uèi" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "ièr" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "mes passat" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "meses a" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "an passat" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "ans a" @@ -229,32 +229,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Annula" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -533,14 +541,14 @@ msgstr "Senhal novèl" msgid "Reset password" msgstr "Senhal tornat botar" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index 1c69513cbd9..5bf21b613f8 100644 --- a/l10n/oc/user_ldap.po +++ b/l10n/oc/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -419,41 +419,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -469,15 +480,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -488,19 +499,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -514,10 +525,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/pa/core.po b/l10n/pa/core.po index b6b1af47d5f..622bfea68c3 100644 --- a/l10n/pa/core.po +++ b/l10n/pa/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -18,24 +18,24 @@ msgstr "" "Language: pa\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -135,63 +135,63 @@ msgstr "ਨਵੰਬ" msgid "December" msgstr "ਦਸੰਬਰ" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "ਸੈਟਿੰਗ" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "...ਸੰਭਾਲਿਆ ਜਾ ਰਿਹਾ ਹੈ" -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "ਸਕਿੰਟ ਪਹਿਲਾਂ" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "ਅੱਜ" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "ਕੱਲ੍ਹ" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "ਪਿਛਲੇ ਮਹੀਨੇ" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "ਮਹੀਨੇ ਪਹਿਲਾਂ" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "ਪਿਛਲੇ ਸਾਲ" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "ਸਾਲਾਂ ਪਹਿਲਾਂ" @@ -230,32 +230,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "ਰੱਦ ਕਰੋ" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -534,14 +542,14 @@ msgstr "" msgid "Reset password" msgstr "" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/pa/user_ldap.po b/l10n/pa/user_ldap.po index 1baf1bc601a..37579bfed80 100644 --- a/l10n/pa/user_ldap.po +++ b/l10n/pa/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -419,41 +419,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -469,15 +480,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -488,19 +499,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -514,10 +525,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 92279c7d0a2..b0f9ae1e7f4 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-23 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 07:20+0000\n" -"Last-Translator: bobie \n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,24 +21,24 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "Data wygaśnięcia jest w przeszłości" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Nie można było wysłać wiadomości do następujących użytkowników: %s" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "Włączony tryb konserwacji" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "Wyłączony tryb konserwacji" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "Zaktualizuj bazę" @@ -138,67 +138,67 @@ msgstr "Listopad" msgid "December" msgstr "Grudzień" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Ustawienia" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "Zapisywanie..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "sekund temu" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minute temu" msgstr[1] "%n minut temu" msgstr[2] "%n minut temu" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n godzine temu" msgstr[1] "%n godzin temu" msgstr[2] "%n godzin temu" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "dziś" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "wczoraj" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dzień temu" msgstr[1] "%n dni temu" msgstr[2] "%n dni temu" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "w zeszłym miesiącu" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n miesiąc temu" msgstr[1] "%n miesięcy temu" msgstr[2] "%n miesięcy temu" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "miesięcy temu" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "w zeszłym roku" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "lat temu" @@ -238,32 +238,40 @@ msgid "One file conflict" msgstr "Konflikt pliku" #: js/oc-dialogs.js:367 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" msgstr "Które pliki chcesz zachować?" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Jeśli wybierzesz obie wersje, skopiowany plik będzie miał dodany numerek w nazwie" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Anuluj" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "Kontynuuj " -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "(wszystkie zaznaczone)" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "({count} zaznaczonych)" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "Błąd podczas ładowania szablonu istniejącego pliku" @@ -542,14 +550,14 @@ msgstr "Nowe hasło" msgid "Reset password" msgstr "Zresetuj hasło" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "Mac OS X nie jest wspierany i %s nie będzie działać poprawnie na tej platformie. Używasz na własne ryzyko!" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "Aby uzyskać najlepsze rezultaty, rozważ w to miejsce użycie serwera GNU/Linux." diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index 25da5a7a43f..1ef7dec262c 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" -"Last-Translator: maxxx \n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -426,41 +426,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "Kiedy włączone, grupy, które zawierają grupy, są wspierane. (Działa tylko, jeśli członek grupy ma ustawienie DNs)" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "Specjalne atrybuty" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "Pole przydziału" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "Przydział domyślny" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "w bajtach" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "Pole email" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "Reguły nazewnictwa folderu domowego użytkownika" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Pozostaw puste dla user name (domyślnie). W przeciwnym razie podaj atrybut LDAP/AD." -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "Wewnętrzna nazwa użytkownika" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -476,15 +487,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "Domyślnie, wewnętrzna nazwa użytkownika zostanie utworzona z atrybutu UUID, ang. Universally unique identifier - Unikalny identyfikator użytkownika. To daje pewność, że nazwa użytkownika jest niepowtarzalna, a znaki nie muszą być konwertowane. Wewnętrzna nazwa użytkownika dopuszcza jedynie znaki: [ a-zA-Z0-9_.@- ]. Pozostałe znaki zamieniane są na ich odpowiedniki ASCII lub po prostu pomijane. W przypadku, gdy nazwa się powtarza na końcu jest dodawana / zwiększana cyfra. Wewnętrzna nazwa użytkownika służy do wewnętrznej identyfikacji użytkownika. Jest to również domyślna nazwa folderu domowego użytkownika. Jest to również część zdalnego adresu URL, na przykład dla wszystkich usług *DAV. Dzięki temu ustawieniu można nadpisywać domyślne zachowanie aplikacji. Aby osiągnąć podobny efekt jak przed ownCloud 5 wpisz atrybut nazwy użytkownika w poniższym polu. Pozostaw puste dla domyślnego zachowania. Zmiany będą miały wpływ tylko na nowo przypisanych (dodanych) użytkowników LDAP." -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "Wewnętrzny atrybut nazwy uzżytkownika:" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "Zastąp wykrywanie UUID" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -495,19 +506,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Domyślnie, atrybut UUID jest wykrywany automatycznie. Atrybut UUID jest używany do niepodważalnej identyfikacji użytkowników i grup LDAP. Również wewnętrzna nazwa użytkownika zostanie stworzona na bazie UUID, jeśli nie zostanie podana powyżej. Możesz nadpisać to ustawienie i użyć atrybutu wedle uznania. Musisz się jednak upewnić, że atrybut ten może zostać pobrany zarówno dla użytkowników, jak i grup i jest unikalny. Pozostaw puste dla domyślnego zachowania. Zmiany będą miały wpływ tylko na nowo przypisanych (dodanych) użytkowników i grupy LDAP." -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "Atrybuty UUID dla użytkowników:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "Atrybuty UUID dla grup:" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "Mapowanie użytkownika LDAP" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -521,10 +532,10 @@ msgid "" "experimental stage." msgstr "Nazwy użytkowników są używane w celu przechowywania i przypisywania (meta) danych. Aby dokładnie zidentyfikować i rozpoznać użytkowników, każdy użytkownik LDAP będzie miał wewnętrzną nazwę. To wymaga utworzenia przypisania nazwy użytkownika do użytkownika LDAP. Utworzona nazwa użytkownika jet przypisywana do UUID użytkownika LDAP. Dodatkowo DN jest również buforowany aby zmniejszyć interakcję z LDAP, ale nie jest używany do identyfikacji. Jeśli DN się zmieni, zmiany zostaną odnalezione. Wewnętrzny użytkownik jest używany we wszystkich przypadkach. Wyczyszczenie mapowań spowoduje pozostawienie wszędzie resztek informacji. Wyczyszczenie mapowań nie jest wrażliwe na konfigurację, wpływa ono na wszystkie konfiguracje LDAP! Nigdy nie czyść mapowań w środowisku produkcyjnym, tylko podczas testów lub w fazie eksperymentalnej. " -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "Czyść Mapowanie użytkownika LDAP" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Czyść Mapowanie nazwy grupy LDAP" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 9592e53fa5b..fef8f059623 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-23 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 14:31+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -19,24 +19,24 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "A data de vencimento passou." -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Não foi possível enviar e-mail para os seguintes usuários: %s" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "Ativar modo de manutenção" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "Desligar o modo de manutenção" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "Atualizar o banco de dados" @@ -136,63 +136,63 @@ msgstr "novembro" msgid "December" msgstr "dezembro" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Ajustes" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "Salvando..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] " ha %n minuto" msgstr[1] "ha %n minutos" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "ha %n hora" msgstr[1] "ha %n horas" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "hoje" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "ontem" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "ha %n dia" msgstr[1] "ha %n dias" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "último mês" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "ha %n mês" msgstr[1] "ha %n meses" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "meses atrás" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "último ano" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "anos atrás" @@ -231,32 +231,40 @@ msgid "One file conflict" msgstr "Conflito em um arquivo" #: js/oc-dialogs.js:367 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" msgstr "Qual arquivo você quer manter?" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Se você selecionar ambas as versões, o arquivo copiado terá um número adicionado ao seu nome." -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Cancelar" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "Continuar" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "(todos os selecionados)" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "({count} selecionados)" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "Erro ao carregar arquivo existe modelo" @@ -535,14 +543,14 @@ msgstr "Nova senha" msgid "Reset password" msgstr "Redefinir senha" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "Mac OS X não é suportado e %s não funcionará corretamente nesta plataforma. Use-o por sua conta e risco!" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "Para obter os melhores resultados, por favor, considere o uso de um servidor GNU/Linux em seu lugar." diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index f8940d0e55c..f61634c1304 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -421,41 +421,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "Quando habilitado, os grupos que contêm os grupos são suportados. (Só funciona se o atributo de membro de grupo contém DNs.)" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "Atributos Especiais" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "Campo de Cota" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "Cota Padrão" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "em bytes" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "Campo de Email" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "Regra para Nome da Pasta Pessoal do Usuário" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Deixe vazio para nome de usuário (padrão). Caso contrário, especifique um atributo LDAP/AD." -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "Nome de usuário interno" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -471,15 +482,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "Por padrão, o nome de usuário interno será criado a partir do atributo UUID. Ele garante que o nome de usuário é único e que caracteres não precisam ser convertidos. O nome de usuário interno tem a restrição de que apenas estes caracteres são permitidos: [a-zA-Z0-9_.@- ]. Outros caracteres são substituídos por seus correspondentes em ASCII ou simplesmente serão omitidos. Em caso de colisão um número será adicionado/aumentado. O nome de usuário interno é usado para identificar um usuário internamente. É também o nome padrão da pasta \"home\" do usuário. É também parte de URLs remotas, por exemplo, para todos as instâncias *DAV. Com esta definição, o comportamento padrão pode ser sobrescrito. Para alcançar um comportamento semelhante ao de antes do ownCloud 5, forneça o atributo do nome de exibição do usuário no campo seguinte. Deixe-o vazio para o comportamento padrão. As alterações terão efeito apenas para usuários LDAP recém mapeados (adicionados)." -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "Atributo Interno de Nome de Usuário:" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "Substituir detecção UUID" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -490,19 +501,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Por padrão, o atributo UUID é detectado automaticamente. O atributo UUID é usado para identificar, sem dúvidas, os usuários e grupos LDAP. Além disso, o nome de usuário interno será criado com base no UUID, se não especificado acima. Você pode substituir a configuração e passar um atributo de sua escolha. Você deve certificar-se de que o atributo de sua escolha pode ser lido tanto para usuários como para grupos, e que seja único. Deixe-o vazio para o comportamento padrão. As alterações terão efeito apenas para usuários e grupos LDAP recém mapeados (adicionados)." -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "UUID Atributos para Usuários:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "UUID Atributos para Grupos:" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "Usuário-LDAP Mapeamento de Usuário" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -516,10 +527,10 @@ msgid "" "experimental stage." msgstr "Nomes de usuários sãi usados para armazenar e atribuir (meta) dados. A fim de identificar com precisão e reconhecer usuários, cada usuário LDAP terá um nome de usuário interno. Isso requer um mapeamento nome de usuário para usuário LDAP. O nome de usuário criado é mapeado para o UUID do usuário LDAP. Adicionalmente, o DN fica em cache, assim como para reduzir a interação LDAP, mas não é utilizado para a identificação. Se o DN muda, as mudanças serão encontradas. O nome de usuário interno é utilizado em todo lugar. Limpar os mapeamentos não influencia a configuração. Limpar os mapeamentos deixará rastros em todo lugar. Limpar os mapeamentos não influencia a configuração, mas afeta as configurações LDAP! Somente limpe os mapeamentos em embiente de testes ou em estágio experimental." -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "Limpar Mapeamento de Usuário Nome de Usuário-LDAP" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Limpar NomedoGrupo-LDAP Mapeamento do Grupo" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 30a03fb0c3d..f4403d00eb6 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -24,24 +24,24 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Não conseguiu enviar correio aos seguintes utilizadores: %s" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "Activado o modo de manutenção" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "Desactivado o modo de manutenção" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "Base de dados actualizada" @@ -141,63 +141,63 @@ msgstr "Novembro" msgid "December" msgstr "Dezembro" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Configurações" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "A guardar..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "Minutos atrás" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minuto atrás" msgstr[1] "%n minutos atrás" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n hora atrás" msgstr[1] "%n horas atrás" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "hoje" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "ontem" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dia atrás" msgstr[1] "%n dias atrás" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "ultímo mês" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n mês atrás" msgstr[1] "%n meses atrás" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "meses atrás" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "ano passado" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "anos atrás" @@ -236,32 +236,40 @@ msgid "One file conflict" msgstr "Um conflito no ficheiro" #: js/oc-dialogs.js:367 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" msgstr "Quais os ficheiros que pretende manter?" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Se escolher ambas as versões, o ficheiro copiado irá ter um número adicionado ao seu nome." -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Cancelar" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "Continuar" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "(todos seleccionados)" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "({count} seleccionados)" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "Erro ao carregar o modelo de existências do ficheiro" @@ -540,14 +548,14 @@ msgstr "Nova palavra-chave" msgid "Reset password" msgstr "Repor password" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index 98b05141911..24be2d824ab 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -423,41 +423,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "Atributos especiais" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "Quota" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "Quota padrão" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "em bytes" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "Campo de email" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "Regra da pasta inicial do utilizador" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Deixe vazio para nome de utilizador (padrão). De outro modo, especifique um atributo LDAP/AD." -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "Nome de utilizador interno" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -473,15 +484,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "Por padrão o nome de utilizador interno vai ser criado através do atributo UUID. Desta forma é assegurado que o nome é único e os caracteres não necessitam de serem convertidos. O nome interno tem a restrição de que apenas estes caracteres são permitidos: [ a-zA-Z0-9_.@- ]. Outros caracteres são substituídos pela sua correspondência ASCII ou simplesmente omitidos. Mesmo assim, quando for detetado uma colisão irá ser acrescentado um número. O nome interno é usado para identificar o utilizador internamente. É também o nome utilizado para a pasta inicial no ownCloud. É também parte de URLs remotos, como por exemplo os serviços *DAV. Com esta definição, o comportamento padrão é pode ser sobreposto. Para obter o mesmo comportamento antes do ownCloud 5 introduza o atributo do nome no campo seguinte. Deixe vazio para obter o comportamento padrão. As alterações apenas serão feitas para utilizadores mapeados (adicionados) LDAP." -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "Atributo do nome de utilizador interno" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "Passar a detecção do UUID" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -492,19 +503,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "Atributo UUID para utilizadores:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "Atributo UUID para grupos:" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "Mapeamento do utilizador LDAP" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -518,10 +529,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "Limpar mapeamento do utilizador-LDAP" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Limpar o mapeamento do nome de grupo LDAP" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 970eadbc863..720dcd043e3 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -21,24 +21,24 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "Bază de date actualizată" @@ -138,67 +138,67 @@ msgstr "Noiembrie" msgid "December" msgstr "Decembrie" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Setări" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "Se salvează..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "secunde în urmă" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "acum %n minut" msgstr[1] "acum %n minute" msgstr[2] "acum %n minute" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "acum %n oră" msgstr[1] "acum %n ore" msgstr[2] "acum %n ore" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "astăzi" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "ieri" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "acum %n zi" msgstr[1] "acum %n zile" msgstr[2] "acum %n zile" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "ultima lună" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "luni în urmă" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "ultimul an" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "ani în urmă" @@ -238,32 +238,40 @@ msgid "One file conflict" msgstr "Un conflict de fișier" #: js/oc-dialogs.js:367 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" msgstr "Ce fișiere vrei să păstrezi?" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Dacă alegi ambele versiuni, fișierul copiat va avea un număr atașat la denumirea sa." -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Anulare" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "Continuă" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -542,14 +550,14 @@ msgstr "Noua parolă" msgid "Reset password" msgstr "Resetează parola" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index a209336d3df..8d75f9248c8 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -421,41 +421,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "în octeți" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Lăsați gol pentru numele de utilizator (implicit). În caz contrar, specificați un atribut LDAP / AD." -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -471,15 +482,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -490,19 +501,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -516,10 +527,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index fec52335def..de631e3a6e4 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -24,9 +24,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-28 01:55-0400\n" -"PO-Revision-Date: 2014-03-27 14:31+0000\n" -"Last-Translator: Swab \n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -34,24 +34,24 @@ msgstr "" "Language: ru\n" "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);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "Дата истечения срока действия в прошлом." -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Невозможно отправить письмо следующим пользователям: %s" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "Режим отладки включён" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "Режим отладки отключён" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "База данных обновлена" @@ -151,67 +151,67 @@ msgstr "Ноябрь" msgid "December" msgstr "Декабрь" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Конфигурация" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "Сохранение..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "несколько секунд назад" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n минуту назад" msgstr[1] "%n минуты назад" msgstr[2] "%n минут назад" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n час назад" msgstr[1] "%n часа назад" msgstr[2] "%n часов назад" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "сегодня" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "вчера" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n день назад" msgstr[1] "%n дня назад" msgstr[2] "%n дней назад" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "в прошлом месяце" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n месяц назад" msgstr[1] "%n месяца назад" msgstr[2] "%n месяцев назад" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "несколько месяцев назад" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "в прошлом году" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "несколько лет назад" @@ -251,32 +251,40 @@ msgid "One file conflict" msgstr "Один конфликт в файлах" #: js/oc-dialogs.js:367 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" msgstr "Какие файлы вы хотите сохранить?" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "При выборе обоих версий, к названию копируемого файла будет добавлена цифра" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Отменить" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "Продолжить" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "(выбраны все)" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "({count} выбрано)" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "Ошибка при загрузке шаблона существующего файла" @@ -555,14 +563,14 @@ msgstr "Новый пароль" msgid "Reset password" msgstr "Сбросить пароль" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "Mac OS X не поддерживается и %s не будет работать правильно на этой платформе. Используйте ее на свой страх и риск!" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "Для достижения наилучших результатов, пожалуйста, рассмотрите возможность использовать взамен GNU/Linux сервер." diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index 449f689dc96..feb3e9d1eb9 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -431,41 +431,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "Специальные атрибуты" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "Поле квоты" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "Квота по умолчанию" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "в байтах" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "Поле адреса электронной почты" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "Правило именования домашней папки пользователя" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Оставьте пустым для использования имени пользователя (по умолчанию). Иначе укажите атрибут LDAP/AD." -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "Внутреннее имя пользователя" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -481,15 +492,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "По умолчанию внутреннее имя пользователя будет создано из атрибута UUID. Таким образом имя пользователя становится уникальным и не требует конвертации символов. Внутреннее имя пользователя может состоять только из следующих символов: [ a-zA-Z0-9_.@- ]. Остальные символы замещаются соответствиями из таблицы ASCII или же просто пропускаются. При совпадении к имени будет добавлено или увеличено число. Внутреннее имя пользователя используется для внутренней идентификации пользователя. Также оно является именем по умолчанию для папки пользователя в ownCloud. Оно также является частью URL, к примеру, для всех сервисов *DAV. С помощью данной настройки можно изменить поведение по умолчанию. Чтобы достичь поведения, как было до ownCloud 5, введите атрибут отображаемого имени пользователя в этом поле. Оставьте его пустым для режима по умолчанию. Изменения будут иметь эффект только для новых подключенных (добавленных) пользователей LDAP." -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "Атрибут для внутреннего имени:" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "Переопределить нахождение UUID" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -500,19 +511,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "По умолчанию ownCloud определяет атрибут UUID автоматически. Этот атрибут используется для того, чтобы достоверно идентифицировать пользователей и группы LDAP. Также на основании атрибута UUID создается внутреннее имя пользователя, если выше не указано иначе. Вы можете переопределить эту настройку и указать свой атрибут по выбору. Вы должны удостовериться, что выбранный вами атрибут может быть выбран для пользователей и групп, а также то, что он уникальный. Оставьте поле пустым для поведения по умолчанию. Изменения вступят в силу только для новых подключенных (добавленных) пользователей и групп LDAP." -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "UUID-атрибуты для пользователей:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "UUID-атрибуты для групп:" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "Соответствия Имя-Пользователь LDAP" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -526,10 +537,10 @@ msgid "" "experimental stage." msgstr "ownCloud использует имена пользователей для хранения и назначения метаданных. Для точной идентификации и распознавания пользователей, каждый пользователь LDAP будет иметь свое внутреннее имя пользователя. Это требует привязки имени пользователя ownCloud к пользователю LDAP. При создании имя пользователя назначается идентификатору UUID пользователя LDAP. Помимо этого кешируется различающееся имя (DN) для уменьшения числа обращений к LDAP, однако оно не используется для идентификации. Если различающееся имя было изменено, об этом станет известно ownCloud. Внутреннее имя ownCloud используется повсеместно в ownCloud. После сброса привязок в базе могут сохраниться остатки старой информации. Сброс привязок не привязан к конфигурации, он повлияет на все LDAP-подключения! Ни в коем случае не рекомендуется сбрасывать привязки, если система уже находится в эксплуатации, только на этапе тестирования." -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "Очистить соответствия Имя-Пользователь LDAP" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Очистить соответствия Группа-Группа LDAP" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index d52d4ae3894..2379dad798a 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -17,24 +17,24 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -134,63 +134,63 @@ msgstr "නොවැම්බර්" msgid "December" msgstr "දෙසැම්බර්" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "සිටුවම්" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "සුරැකෙමින් පවතී..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "තත්පරයන්ට පෙර" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "අද" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "ඊයේ" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "පෙර මාසයේ" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "මාස කීපයකට පෙර" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "පෙර අවුරුද්දේ" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "අවුරුදු කීපයකට පෙර" @@ -229,32 +229,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "එපා" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -533,14 +541,14 @@ msgstr "නව මුරපදය" msgid "Reset password" msgstr "මුරපදය ප්‍රත්‍යාරම්භ කරන්න" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index e6f39fc39de..ed0af373d58 100644 --- a/l10n/si_LK/user_ldap.po +++ b/l10n/si_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -419,41 +419,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -469,15 +480,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -488,19 +499,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -514,10 +525,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/sk/core.po b/l10n/sk/core.po index 72d438e715b..65348532a41 100644 --- a/l10n/sk/core.po +++ b/l10n/sk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -17,24 +17,24 @@ msgstr "" "Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -134,67 +134,67 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Nastavenia" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "" -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "" @@ -234,32 +234,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Zrušiť" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -538,14 +546,14 @@ msgstr "" msgid "Reset password" msgstr "" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/sk/user_ldap.po b/l10n/sk/user_ldap.po index 6caf66c53b3..76ac5cd2ac8 100644 --- a/l10n/sk/user_ldap.po +++ b/l10n/sk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -421,41 +421,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -471,15 +482,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -490,19 +501,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -516,10 +527,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 91d7cf7c70b..fecc3ec62bb 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-01 01:55-0400\n" -"PO-Revision-Date: 2014-03-31 10:38+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -21,7 +21,7 @@ msgstr "" #: ajax/share.php:87 msgid "Expiration date is in the past." -msgstr "" +msgstr " \t\nDátum expirácie spadá do minulosti." #: ajax/share.php:119 ajax/share.php:161 #, php-format @@ -136,67 +136,67 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Nastavenia" -#: js/js.js:543 +#: js/js.js:564 msgid "Saving..." msgstr "Ukladám..." -#: js/js.js:1103 +#: js/js.js:1124 msgid "seconds ago" msgstr "pred sekundami" -#: js/js.js:1104 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "pred %n minútou" msgstr[1] "pred %n minútami" msgstr[2] "pred %n minútami" -#: js/js.js:1105 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "pred %n hodinou" msgstr[1] "pred %n hodinami" msgstr[2] "pred %n hodinami" -#: js/js.js:1106 +#: js/js.js:1127 msgid "today" msgstr "dnes" -#: js/js.js:1107 +#: js/js.js:1128 msgid "yesterday" msgstr "včera" -#: js/js.js:1108 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "pred %n dňom" msgstr[1] "pred %n dňami" msgstr[2] "pred %n dňami" -#: js/js.js:1109 +#: js/js.js:1130 msgid "last month" msgstr "minulý mesiac" -#: js/js.js:1110 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "pred %n mesiacom" msgstr[1] "pred %n mesiacmi" msgstr[2] "pred %n mesiacmi" -#: js/js.js:1111 +#: js/js.js:1132 msgid "months ago" msgstr "pred mesiacmi" -#: js/js.js:1112 +#: js/js.js:1133 msgid "last year" msgstr "minulý rok" -#: js/js.js:1113 +#: js/js.js:1134 msgid "years ago" msgstr "pred rokmi" @@ -236,54 +236,62 @@ msgid "One file conflict" msgstr "Jeden konflikt súboru" #: js/oc-dialogs.js:367 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" msgstr "Ktoré súbory chcete ponechať?" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Ak zvolíte obe verzie, názov nakopírovaného súboru bude doplnený o číslo." -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Zrušiť" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "Pokračovať" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "(všetko vybrané)" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "({count} vybraných)" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "Chyba pri nahrávaní šablóny existencie súboru" #: js/setup.js:84 msgid "Very weak password" -msgstr "" +msgstr "Veľmi slabé heslo" #: js/setup.js:85 msgid "Weak password" -msgstr "" +msgstr "Slabé heslo" #: js/setup.js:86 msgid "So-so password" -msgstr "" +msgstr "Priemerné heslo" #: js/setup.js:87 msgid "Good password" -msgstr "" +msgstr "Dobré heslo" #: js/setup.js:88 msgid "Strong password" -msgstr "" +msgstr "Silné heslo" #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" @@ -482,7 +490,7 @@ msgstr "reset hesla %s" msgid "" "A problem has occurred whilst sending the email, please contact your " "administrator." -msgstr "" +msgstr "Vyskytol sa problém pri odosielaní emailu, prosím obráťte sa na správcu." #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -545,12 +553,12 @@ msgstr "Obnovenie hesla" msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " -msgstr "" +msgstr "Mac OS X nie je podporovaný a %s nebude správne fungovať na tejto platforme. Použite ho na vlastné riziko!" #: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." -msgstr "" +msgstr "Pre dosiahnutie najlepších výsledkov, prosím zvážte použitie GNU/Linux servera." #: strings.php:5 msgid "Personal" @@ -616,7 +624,7 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -msgstr "Ahoj,\n\nchcem ti dať navedomie, že %s s tebou zdieľa %s.\nTu je odkaz: %s\n\n" +msgstr "Dobrý deň,\n\nPoužívateľ %s zdieľa s vami súbor, alebo priečinok s názvom %s.\nPre zobrazenie kliknite na túto linku: %s\n" #: templates/altmail.php:4 templates/mail.php:17 #, php-format @@ -672,7 +680,7 @@ msgstr "Vytvoriť administrátorský účet" #: templates/installation.php:70 msgid "Storage & database" -msgstr "" +msgstr "Úložislo & databáza" #: templates/installation.php:77 msgid "Data folder" @@ -773,7 +781,7 @@ msgstr "Alternatívne prihlásenie" msgid "" "Hey there,

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

      " -msgstr "" +msgstr "Dobrý deň,

      Používateľ %s zdieľa s vami súbor, alebo priečinok s názvom »%s«.
      Pre zobrazenie kliknite na túto linku!

      " #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 01efcb33fae..c3cda0fa890 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:42+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,7 +35,7 @@ msgstr "Meno súboru nemôže byť prázdne" #: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." -msgstr "" +msgstr "\"%s\" je neplatné meno súboru." #: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" @@ -46,7 +46,7 @@ msgstr "Nesprávne meno, '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nie sú #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 msgid "The target folder has been moved or deleted." -msgstr "" +msgstr "Cieľový priečinok bol premiestnený alebo odstránený." #: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format @@ -150,12 +150,12 @@ msgstr "Nemožno nahrať súbor {filename}, pretože je to priečinok, alebo má #: js/file-upload.js:258 msgid "Total file size {size1} exceeds upload limit {size2}" -msgstr "" +msgstr "Celková veľkosť súboru {size1} prekračuje upload limit {size2}" #: js/file-upload.js:268 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" -msgstr "" +msgstr "Nie je dostatok voľného miesta, chcete nahrať {size1} ale k dispozíciji je len {size2}" #: js/file-upload.js:340 msgid "Upload cancelled." @@ -253,7 +253,7 @@ msgstr[2] "Nahrávam %n súborov" #: js/files.js:96 msgid "\"{name}\" is an invalid file name." -msgstr "" +msgstr "\"{name}\" je neplatné meno súboru." #: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 224946f78bd..b1a00a41e46 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-01 01:55-0400\n" -"PO-Revision-Date: 2014-03-31 10:51+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:52+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" @@ -53,7 +53,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "Šifrovanie" @@ -205,7 +205,7 @@ msgstr "chyba pri aktualizácii aplikácie" msgid "Error" msgstr "Chyba" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "Aktualizovať" @@ -213,31 +213,31 @@ msgstr "Aktualizovať" msgid "Updated" msgstr "Aktualizované" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "Vybrať avatara" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" -msgstr "" +msgstr "Veľmi slabé heslo" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" -msgstr "" +msgstr "Slabé heslo" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" -msgstr "" +msgstr "Priemerné heslo" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" -msgstr "" +msgstr "Dobré heslo" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" -msgstr "" +msgstr "Silné heslo" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "Dešifrujem súbory ... Počkajte prosím, môže to chvíľu trvať." @@ -591,11 +591,11 @@ msgstr "Viac" msgid "Less" msgstr "Menej" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "Verzia" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "-licencované " @@ -666,108 +666,108 @@ msgstr "Znovu zobraziť sprievodcu prvým spustením" msgid "You have used %s of the available %s" msgstr "Použili ste %s z %s dostupných " -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Heslo" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "Vaše heslo bolo zmenené" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "Nie je možné zmeniť vaše heslo" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "Aktuálne heslo" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "Nové heslo" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "Zmeniť heslo" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "Meno a priezvisko" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "Email" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "Vaša emailová adresa" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "Avatar" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "Nahrať nový" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "Vyberte nový zo súborov" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "Zmazať obrázok" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Formát súboru png alebo jpg. V ideálnom prípade štvorec, ale budete mať možnosť ho orezať." -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "Váš avatar je použitý z pôvodného účtu." -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Zrušiť" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "Vybrať ako avatara" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "Jazyk" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "Pomôcť s prekladom" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Použite túto linku pre prístup k vašim súborom cez WebDAV" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Šifrovacia aplikácia už nie je spustená, dešifrujte všetky svoje súbory." -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "Prihlasovacie heslo" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "Dešifrovať všetky súbory" diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index 2359384c654..38484ed97b5 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -423,41 +423,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "Špeciálne atribúty" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "Pole kvóty" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "Predvolená kvóta" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "v bajtoch" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "Pole emailu" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "Pravidlo pre nastavenie názvu používateľského priečinka dát" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Nechajte prázdne pre používateľské meno (predvolené). Inak uveďte atribút z LDAP/AD." -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "Interné používateľské meno" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -473,15 +484,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "V predvolenom nastavení bude interné používateľské meno vytvorené z UUID atribútu. Zabezpečí sa to, že používateľské meno bude jedinečné a znaky nemusia byť prevedené. Interné meno má obmedzenie, iba tieto znaky sú povolené: [a-zA-Z0-9_ @ -.]. Ostatné znaky sú nahradené ich ASCII alebo jednoducho vynechané. Pri kolíziách používateľských mien bude číslo pridané / odobrané. Interné používateľské meno sa používa na internú identifikáciu používateľa. Je tiež predvoleným názvom používateľského domovského priečinka v ownCloud. Je tiež súčasťou URL pre vzdialený prístup, napríklad pre všetky služby *DAV. S týmto nastavením sa dá prepísať predvolené správanie. Pre dosiahnutie podobného správania sa ako pred verziou ownCloud 5 zadajte atribút zobrazenia používateľského mena v tomto poli. Ponechajte prázdne pre predvolené správanie. Zmeny budú mať vplyv iba na novo namapovaných (pridaných) LDAP používateľov." -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "Atribút interného používateľského mena:" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "Prepísať UUID detekciu" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -492,19 +503,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "V predvolenom nastavení je UUID atribút detekovaný automaticky. UUID atribút je použitý na jedinečnú identifikáciu používateľov a skupín z LDAP. Naviac je na základe UUID vytvorené tiež interné používateľské meno, ak nie je nastavené inak. Môžete predvolené nastavenie prepísať a použiť atribút ktorý si sami zvolíte. Musíte sa ale ubezpečiť, že atribút ktorý vyberiete bude uvedený pri používateľoch, aj pri skupinách a je jedinečný. Ponechajte prázdne pre predvolené správanie. Zmena bude mať vplyv len na novo namapovaných (pridaných) používateľov a skupiny z LDAP." -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "UUID atribút pre používateľov:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "UUID atribút pre skupiny:" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "Mapovanie názvov LDAP používateľských mien" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -518,10 +529,10 @@ msgid "" "experimental stage." msgstr "Používateľské mená sa používajú pre uchovávanie a priraďovanie (meta) dát. Pre správnu identifikáciu a rozpoznanie používateľov bude mať každý používateľ z LDAP interné používateľské meno. To je nevyhnutné pre namapovanie používateľských mien na používateľov v LDAP. Vytvorené používateľské meno je namapované na UUID používateľa v LDAP. Naviac je cachovaná DN pre obmedzenie interakcie s LDAP, ale nie je používaná pre identifikáciu. Ak sa DN zmení, bude to správne rozpoznané. Interné používateľské meno sa používa všade. Vyčistenie namapovaní vymaže zvyšky všade. Vyčistenie naviac nie je špecifické, bude mať vplyv na všetky LDAP konfigurácie! Nikdy nečistite namapovanie v produkčnom prostredí, len v testovacej alebo experimentálnej fáze." -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "Zrušiť mapovanie LDAP používateľských mien" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Zrušiť mapovanie názvov LDAP skupín" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index e3285d025c8..ed2f640c387 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-30 01:55-0400\n" -"PO-Revision-Date: 2014-03-29 20:30+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -136,19 +136,19 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Nastavitve" -#: js/js.js:543 +#: js/js.js:564 msgid "Saving..." msgstr "Poteka shranjevanje ..." -#: js/js.js:1103 +#: js/js.js:1124 msgid "seconds ago" msgstr "pred nekaj sekundami" -#: js/js.js:1104 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "pred %n minuto" @@ -156,7 +156,7 @@ msgstr[1] "pred %n minutama" msgstr[2] "pred %n minutami" msgstr[3] "pred %n minutami" -#: js/js.js:1105 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "pred %n uro" @@ -164,15 +164,15 @@ msgstr[1] "pred %n urama" msgstr[2] "pred %n urami" msgstr[3] "pred %n urami" -#: js/js.js:1106 +#: js/js.js:1127 msgid "today" msgstr "danes" -#: js/js.js:1107 +#: js/js.js:1128 msgid "yesterday" msgstr "včeraj" -#: js/js.js:1108 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "pred %n dnevom" @@ -180,11 +180,11 @@ msgstr[1] "pred %n dnevoma" msgstr[2] "pred %n dnevi" msgstr[3] "pred %n dnevi" -#: js/js.js:1109 +#: js/js.js:1130 msgid "last month" msgstr "zadnji mesec" -#: js/js.js:1110 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "pred %n mesecem" @@ -192,15 +192,15 @@ msgstr[1] "pred %n mesecema" msgstr[2] "pred %n meseci" msgstr[3] "pred %n meseci" -#: js/js.js:1111 +#: js/js.js:1132 msgid "months ago" msgstr "mesecev nazaj" -#: js/js.js:1112 +#: js/js.js:1133 msgid "last year" msgstr "lansko leto" -#: js/js.js:1113 +#: js/js.js:1134 msgid "years ago" msgstr "let nazaj" @@ -241,32 +241,40 @@ msgid "One file conflict" msgstr "En spor datotek" #: js/oc-dialogs.js:367 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" msgstr "Katare datoteke želite ohraniti?" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Če izberete obe različici, bo kopirani datoteki k imenu dodana številka." -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Prekliči" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "Nadaljuj" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "(vse izbrano)" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "({count} izbranih)" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "Napaka nalaganja predloge obstoječih datotek" diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index 222415e4d01..ecfe45ca6b2 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-30 01:55-0400\n" -"PO-Revision-Date: 2014-03-29 20:50+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -425,41 +425,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "Posebni atributi" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "Polje količinske omejitve" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "Privzeta količinska omejitev" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "v bajtih" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "Polje elektronske pošte" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "Pravila poimenovanja uporabniške osebne mape" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Pustite prazno za uporabniško ime (privzeto), sicer navedite atribut LDAP/AD." -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "Programsko uporabniško ime" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -475,15 +486,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "Privzeto je notranje uporabniško ime ustvarjeno na osnovi atributa UUID. To omogoča določitev uporabniškega imena kot enoličnega, zato znakov ni treba pretvarjati. Notranje ime je omejeno na standardne znake: [ a-zA-Z0-9_.@- ]. Morebitni drugi znaki so zamenjani z ustreznim ASCII znakom, ali pa so enostavno izpuščeni. V primeru sporov je prišteta ali odšteta številčna vrednost. Notranje uporabniško ime je uporabljeno za določanje uporabnika in je privzeto ime uporabnikove domače mape. Hkrati je tudi del oddaljenega naslova URL, na primer za storitve *DAV. S to nastavitvijo je prepisan privzet način delovanja. Pri različicah ownCloud, nižjih od 5.0, je podoben učinek mogoče doseči z vpisom prikaznega imena oziroma z neizpolnjenim (praznim) poljem te vrednosti. Spremembe bodo uveljavljene le za nove preslikane (dodane) uporabnike LDAP." -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "Programski atribut uporabniškega imena:" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "Prezri zaznavo UUID" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -494,19 +505,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Privzeto je atribut UUID samodejno zaznan. Uporabljen je za določevanje uporabnikov LDAP in skupin. Notranje uporabniško ime je določeno prav na atributu UUID, če ni določeno drugače. To nastavitev je mogoče prepisati in poslati poljuben atribut. Zagotoviti je treba le, da je ta pridobljen kot enolični podatek za uporabnika ali skupino. Prazno polje določa privzeti način. Spremembe bodo vplivale na novo preslikane (dodane) uporabnike LDAP in skupine." -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "Atribut UUID za uporabnike:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "Atribut UUID za skupine:" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "Uporabniška preslikava uporabniškega imena na LDAP" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -520,10 +531,10 @@ msgid "" "experimental stage." msgstr "Uporabniška imena so uporabljena za shranjevanje in dodeljevanje (meta) podatkov. Za natančno določanje in prepoznavanje uporabnikov je uporabljen sistem notranjega uporabniškega imena vsakega uporabnika LDAP. Ta možnost zahteva preslikavo uporabniškega imena v uporabnika LDAP in preslikano na njegov UUID. Sistem predpomni enolična imena za zmanjšanje odvisnosti LDAP, vendar pa ta podatek ni uporabljen za določevanje uporabnika. Če se enolično ime spremeni, se spremeni notranje uporabniško ime. Čiščenje preslikav pušča ostanke podatkov in vpliva na vse nastavitve LDAP! V delovnem okolju zato spreminjanje preslikav ni priporočljivo, možnost pa je na voljo za preizkušanje." -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "Izbriši preslikavo uporabniškega imena na LDAP" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Izbriši preslikavo skupine na LDAP" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index adf1767891c..776c5cef955 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -19,24 +19,24 @@ msgstr "" "Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "Mënyra e mirëmbajtjes u aktivizua" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "Mënyra e mirëmbajtjes u çaktivizua" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "Database-i u azhurnua" @@ -136,63 +136,63 @@ msgstr "Nëntor" msgid "December" msgstr "Dhjetor" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Parametra" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "Duke ruajtur..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "sekonda më parë" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut më parë" msgstr[1] "%n minuta më parë" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n orë më parë" msgstr[1] "%n orë më parë" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "sot" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "dje" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n ditë më parë" msgstr[1] "%n ditë më parë" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "muajin e shkuar" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n muaj më parë" msgstr[1] "%n muaj më parë" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "muaj më parë" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "vitin e shkuar" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "vite më parë" @@ -231,32 +231,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Anulo" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -535,14 +543,14 @@ msgstr "Kodi i ri" msgid "Reset password" msgstr "Rivendos kodin" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/sq/user_ldap.po b/l10n/sq/user_ldap.po index b8ed2aa5515..963d74c361b 100644 --- a/l10n/sq/user_ldap.po +++ b/l10n/sq/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -419,41 +419,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "Atribute të veçanta" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "Hapsira e Kuotës" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "Kuota e paracaktuar" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "në byte" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "Hapsira e Postës Elektronike" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "Rregulli i emërimit të dosjes së përdoruesit" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Lëreni bosh për emrin e përdoruesit (I Paracaktuar). Ose, përcaktoni një atribut LDAP/AD." -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "Emër i brëndshëm i përdoruesit" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -469,15 +480,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "Atributet e emrit të përdoruesit të brëndshëm" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "Mbivendosni gjetjen e UUID" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -488,19 +499,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "Emri përdoruesit-LAPD përcaktues përdoruesi" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -514,10 +525,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "Fshini Emër përdoruesi-LAPD Përcaktues përdoruesi" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Fshini Emër Grupi-LADP Përcaktues grupi" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index 0b51c7f639f..4c5eb4cf733 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -17,24 +17,24 @@ msgstr "" "Language: sr\n" "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);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -134,67 +134,67 @@ msgstr "Новембар" msgid "December" msgstr "Децембар" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Поставке" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "Чување у току..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "пре неколико секунди" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "данас" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "јуче" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "прошлог месеца" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "месеци раније" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "прошле године" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "година раније" @@ -234,32 +234,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Откажи" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -538,14 +546,14 @@ msgstr "Нова лозинка" msgid "Reset password" msgstr "Ресетуј лозинку" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index d39190908f6..3e050f44943 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -421,41 +421,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "у бајтовима" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -471,15 +482,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -490,19 +501,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -516,10 +527,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index 19ec0717037..f10dd683cd2 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -19,24 +19,24 @@ msgstr "" "Language: sr@latin\n" "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);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -136,67 +136,67 @@ msgstr "Novembar" msgid "December" msgstr "Decembar" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Podešavanja" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "" -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "Pre par sekundi" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "Danas" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "juče" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Prije %n dan." msgstr[1] "Prije %n dana." msgstr[2] "Prije %n dana." -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "prošlog meseca" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "pre nekoliko meseci" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "prošle godine" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "pre nekoliko godina" @@ -236,32 +236,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Otkaži" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -540,14 +548,14 @@ msgstr "Nova lozinka" msgid "Reset password" msgstr "Resetuj lozinku" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/sr@latin/user_ldap.po b/l10n/sr@latin/user_ldap.po index bfe386afdc3..ff6b66a5c7d 100644 --- a/l10n/sr@latin/user_ldap.po +++ b/l10n/sr@latin/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -421,41 +421,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -471,15 +482,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -490,19 +501,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -516,10 +527,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/su/core.po b/l10n/su/core.po index a30711bcf79..ac15217b14a 100644 --- a/l10n/su/core.po +++ b/l10n/su/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" "MIME-Version: 1.0\n" @@ -17,24 +17,24 @@ msgstr "" "Language: su\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -134,59 +134,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "" -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "" @@ -224,32 +224,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -528,14 +536,14 @@ msgstr "" msgid "Reset password" msgstr "" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/su/user_ldap.po b/l10n/su/user_ldap.po index aa4721f182c..b7878fb8312 100644 --- a/l10n/su/user_ldap.po +++ b/l10n/su/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" "MIME-Version: 1.0\n" @@ -417,41 +417,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -467,15 +478,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -486,19 +497,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -512,10 +523,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 94929d66930..02ab3d0821f 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-07 01:55-0400\n" -"PO-Revision-Date: 2014-04-06 10:50+0000\n" -"Last-Translator: AsavarTzeth \n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -237,32 +237,40 @@ msgid "One file conflict" msgstr "En filkonflikt" #: js/oc-dialogs.js:367 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" msgstr "Vilken fil vill du behålla?" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Om du väljer båda versionerna kommer de kopierade filerna ha nummer tillagda i filnamnet." -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Avbryt" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "Fortsätt" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "(Alla valda)" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "({count} valda)" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "Fel uppstod filmall existerar" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index 82b52acf7de..09ceeb1a4bf 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-06 01:55-0400\n" -"PO-Revision-Date: 2014-04-05 21:00+0000\n" -"Last-Translator: AsavarTzeth \n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -428,41 +428,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "När den är påslagen, stöds grupper som innehåller grupper. (Fungerar endast om gruppmedlemmens attribut innehåller DNs.)" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "Specialattribut" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "Kvotfält" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "Datakvot standard" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "i bytes" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "E-postfält" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "Namnregel för hemkatalog" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Lämnas tomt för användarnamn (standard). Ange annars ett LDAP/AD-attribut." -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "Internt Användarnamn" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -478,15 +489,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "Som standard skapas det interna användarnamnet från UUID-attributet. Det säkerställer att användarnamnet är unikt och tecken inte behöver konverteras. Det interna användarnamnet har restriktionerna att endast följande tecken är tillåtna: [ a-zA-Z0-9_.@- ]. Andra tecken blir ersatta av deras motsvarighet i ASCII eller utelämnas helt. En siffra kommer att läggas till eller ökas på vid en kollision. Det interna användarnamnet används för att identifiera användaren internt. Det är även förvalt som användarens användarnamn i ownCloud. Det är även en port för fjärråtkomst, t.ex. för alla *DAV-tjänster. Med denna inställning kan det förvalda beteendet åsidosättas. För att uppnå ett liknande beteende som innan ownCloud 5, ange attributet för användarens visningsnamn i detta fält. Lämna det tomt för förvalt beteende. Ändringarna kommer endast att påverka nyligen mappade (tillagda) LDAP-användare" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "Internt Användarnamn Attribut:" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "Åsidosätt UUID detektion" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -497,19 +508,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Som standard upptäcker ownCloud automatiskt UUID-attributet. Det UUID-attributet används för att utan tvivel identifiera LDAP-användare och grupper. Dessutom kommer interna användarnamn skapas baserat på detta UUID, om inte annat anges ovan. Du kan åsidosätta inställningen och passera ett attribut som du själv väljer. Du måste se till att attributet som du väljer kan hämtas för både användare och grupper och att det är unikt. Lämna det tomt för standard beteende. Förändringar kommer endast att påverka nyligen mappade (tillagda) LDAP-användare och grupper." -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "UUID Attribut för Användare:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "UUID Attribut för Grupper:" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "Användarnamn-LDAP User Mapping" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -523,10 +534,10 @@ msgid "" "experimental stage." msgstr "ownCloud använder sig av användarnamn för att lagra och tilldela (meta) data. För att exakt kunna identifiera och känna igen användare, kommer varje LDAP-användare ha ett internt användarnamn. Detta kräver en mappning från ownCloud-användarnamn till LDAP-användare. Det skapade användarnamnet mappas till UUID för LDAP-användaren. Dessutom cachas DN samt minska LDAP-interaktionen, men den används inte för identifiering. Om DN förändras, kommer förändringarna hittas av ownCloud. Det interna ownCloud-namnet används överallt i ownCloud. Om du rensar/raderar mappningarna kommer att lämna referenser överallt i systemet. Men den är inte konfigurationskänslig, den påverkar alla LDAP-konfigurationer! Rensa/radera aldrig mappningarna i en produktionsmiljö. Utan gör detta endast på i testmiljö!" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "Rensa Användarnamn-LDAP User Mapping" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Rensa Gruppnamn-LDAP Group Mapping" diff --git a/l10n/sw_KE/core.po b/l10n/sw_KE/core.po index 69c0afe6ace..4670128c670 100644 --- a/l10n/sw_KE/core.po +++ b/l10n/sw_KE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -17,24 +17,24 @@ msgstr "" "Language: sw_KE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -134,63 +134,63 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "" -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "" @@ -229,32 +229,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -533,14 +541,14 @@ msgstr "" msgid "Reset password" msgstr "" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/sw_KE/user_ldap.po b/l10n/sw_KE/user_ldap.po index 578d7e4aa09..3dffd9f58ac 100644 --- a/l10n/sw_KE/user_ldap.po +++ b/l10n/sw_KE/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -419,41 +419,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -469,15 +480,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -488,19 +499,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -514,10 +525,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 18b304ba112..9ac011d35d1 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -17,24 +17,24 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -134,63 +134,63 @@ msgstr "கார்த்திகை" msgid "December" msgstr "மார்கழி" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "அமைப்புகள்" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "சேமிக்கப்படுகிறது..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "செக்கன்களுக்கு முன்" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "இன்று" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "நேற்று" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "கடந்த மாதம்" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "மாதங்களுக்கு முன்" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "கடந்த வருடம்" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "வருடங்களுக்கு முன்" @@ -229,32 +229,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "இரத்து செய்க" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -533,14 +541,14 @@ msgstr "புதிய கடவுச்சொல்" msgid "Reset password" msgstr "மீளமைத்த கடவுச்சொல்" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index 7095ac9958f..4e168a7dcc4 100644 --- a/l10n/ta_LK/user_ldap.po +++ b/l10n/ta_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -419,41 +419,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "bytes களில் " -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "பயனாளர் பெயரிற்கு வெற்றிடமாக விடவும் (பொது இருப்பு). இல்லாவிடின் LDAP/AD பண்புக்கூறை குறிப்பிடவும்." -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -469,15 +480,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -488,19 +499,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -514,10 +525,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/te/core.po b/l10n/te/core.po index 7387068662b..01416c7db55 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -18,24 +18,24 @@ msgstr "" "Language: te\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -135,63 +135,63 @@ msgstr "నవంబర్" msgid "December" msgstr "డిసెంబర్" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "అమరికలు" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "" -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "క్షణాల క్రితం" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n నిమిషం క్రితం" msgstr[1] "%n నిమిషాల క్రితం" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n గంట క్రితం" msgstr[1] "%n గంటల క్రితం" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "ఈరోజు" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "నిన్న" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n రోజు క్రితం" msgstr[1] "%n రోజుల క్రితం" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "పోయిన నెల" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n నెల క్రితం" msgstr[1] "%n నెలల క్రితం" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "నెలల క్రితం" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "పోయిన సంవత్సరం" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "సంవత్సరాల క్రితం" @@ -230,32 +230,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "రద్దుచేయి" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "కొనసాగించు" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -534,14 +542,14 @@ msgstr "కొత్త సంకేతపదం" msgid "Reset password" msgstr "" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/te/user_ldap.po b/l10n/te/user_ldap.po index d7bc4f03188..515b88f3503 100644 --- a/l10n/te/user_ldap.po +++ b/l10n/te/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -419,41 +419,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -469,15 +480,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -488,19 +499,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -514,10 +525,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index dc2a86bb6c8..e20208b113b 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: 2014-04-07 01:55-0400\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -230,32 +230,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its " "name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 525b817c1a3..a74152007ab 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: 2014-04-07 01:55-0400\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\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 bddf4926cca..49f422a52b5 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: 2014-04-07 01:55-0400\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\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 e6f5ae7a53c..18a1c4f9470 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: 2014-04-07 01:55-0400\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\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 f694d95e78b..1921e80d189 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: 2014-04-07 01:55-0400\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\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 5a0e62b6fd3..2c3b8e0b23a 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: 2014-04-07 01:55-0400\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\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 6a7d0941746..b4091594867 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: 2014-04-07 01:55-0400\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\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 0bb735ef277..1b8acf89a6c 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: 2014-04-07 01:55-0400\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\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 837b1f9161b..1f1e3b0d7af 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: 2014-04-07 01:55-0400\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\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 631b8a0d73a..d2de043e5c8 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: 2014-04-07 01:55-0400\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -210,31 +210,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 7004cf562db..8f3d9e5a09e 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: 2014-04-07 01:55-0400\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -419,40 +419,51 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It " "makes sure that the username is unique and characters do not need to be " @@ -468,15 +479,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute " "is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -487,19 +498,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -513,10 +524,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index c0c22d81309..58dd8f57b34 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: 2014-04-07 01:55-0400\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\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/core.po b/l10n/th_TH/core.po index cea1f814214..fbdd17bf421 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -17,24 +17,24 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -134,59 +134,59 @@ msgstr "พฤศจิกายน" msgid "December" msgstr "ธันวาคม" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "ตั้งค่า" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "กำลังบันทึกข้อมูล..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "วินาที ก่อนหน้านี้" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "วันนี้" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "เมื่อวานนี้" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "เดือนที่แล้ว" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "เดือน ที่ผ่านมา" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "ปีที่แล้ว" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "ปี ที่ผ่านมา" @@ -224,32 +224,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "ยกเลิก" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -528,14 +536,14 @@ msgstr "รหัสผ่านใหม่" msgid "Reset password" msgstr "เปลี่ยนรหัสผ่าน" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index 1e29595c3f8..1dd27e0b070 100644 --- a/l10n/th_TH/user_ldap.po +++ b/l10n/th_TH/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -417,41 +417,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "คุณลักษณะพิเศษ" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "ในหน่วยไบต์" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "เว้นว่างไว้สำหรับ ชื่อผู้ใช้ (ค่าเริ่มต้น) หรือไม่กรุณาระบุคุณลักษณะของ LDAP/AD" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -467,15 +478,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -486,19 +497,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -512,10 +523,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 9853fc1dab8..583c77a58df 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-06 01:55-0400\n" -"PO-Revision-Date: 2014-04-06 00:10+0000\n" -"Last-Translator: volkangezer \n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -233,32 +233,40 @@ msgid "One file conflict" msgstr "Bir dosya çakışması" #: js/oc-dialogs.js:367 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" msgstr "Hangi dosyaları saklamak istiyorsunuz?" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "İki sürümü de seçerseniz, kopyalanan dosyanın ismine bir sayı ilave edilecektir." -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "İptal" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "Devam et" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "(tümü seçildi)" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "({count} seçildi)" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "Dosya mevcut şablonu yüklenirken hata" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 33a02856ebe..90ef7866c03 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" -"Last-Translator: volkangezer \n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -422,41 +422,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "Etkinleştirildiğinde, grup içeren gruplar desteklenir (Sadece grup üyesi DN niteliği içeriyorsa çalışır)." -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "Özel Öznitelikler" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "Kota Alanı" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "Öntanımlı Kota" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "byte cinsinden" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "E-posta Alanı" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "Kullanıcı Ana Dizini İsimlendirme Kuralı" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Kullanıcı adı bölümünü boş bırakın (varsayılan). " -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "Dahili Kullanıcı Adı" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -472,15 +483,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "Öntanımlı olarak UUID niteliğinden dahili bir kullanıcı adı oluşturulacak. Bu, kullanıcı adının benzersiz ve karakterlerinin dönüştürme gereksinimini ortadan kaldırır. Dahili kullanıcı adı, sadece bu karakterlerin izin verildiği kısıtlamaya sahip: [ a-zA-Z0-9_.@- ]. Diğer karakterler ise ASCII karşılıkları ile yer değiştirilir veya basitçe yoksayılır. Çakışmalar olduğunda ise bir numara eklenir veya arttırılır. Dahili kullanıcı adı, bir kullanıcıyı dahili olarak tanımlamak için kullanılır. Ayrıca kullanıcı ev klasörü için öntanımlı bir isimdir. Bu ayrıca uzak adreslerin (örneğin tüm *DAV hizmetleri) bir parçasıdır. Bu yar ise, öntanımlı davranışın üzerine yazılabilir. ownCloud 5'ten önce benzer davranışı yapabilmek için aşağıdaki alana bir kullanıcı görünen adı niteliği girin. Öntanımlı davranış için boş bırakın. Değişiklikler, sadece yeni eşleştirilen (eklenen) LDAP kullanıcılarında etkili olacaktır." -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "Dahili Kullanıcı Adı Özniteliği:" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "UUID tespitinin üzerine yaz" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -491,19 +502,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Öntanımlı olarak, UUID niteliği otomatik olarak tespit edilmez. UUID niteliği LDAP kullanıcılarını ve gruplarını şüphesiz biçimde tanımlamak için kullanılır. Ayrıca yukarıda belirtilmemişse, bu UUID'ye bağlı olarak dahili bir kullanıcı adı oluşturulacaktır. Bu ayarın üzerine yazabilir ve istediğiniz bir nitelik belirtebilirsiniz. Ancak istediğiniz niteliğin benzersiz olduğundan ve hem kullanıcı hem de gruplar tarafından getirilebileceğinden emin olmalısınız. Öntanımlı davranış için boş bırakın. Değişiklikler sadece yeni eşleştirilen (eklenen) LDAP kullanıcı ve gruplarında etkili olacaktır." -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "Kullanıcılar için UUID Özniteliği:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "Gruplar için UUID Özniteliği:" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "Kullanıcı Adı-LDAP Kullanıcısı Eşleştirme" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -517,10 +528,10 @@ msgid "" "experimental stage." msgstr "Kullanıcı adları, (üst) veri depolaması ve ataması için kullanılır. Kullanıcıları kesin olarak tanımlamak ve algılamak için, her LDAP kullanıcısı bir dahili kullanıcı adına sahip olacak. Bu kullanıcı adı ile LDAP kullanıcısı arasında bir eşleşme gerektirir. Oluşturulan kullanıcı adı LDAP kullanıcısının UUID'si ile eşleştirilir. Ek olarak LDAP etkileşimini azaltmak için DN de önbelleğe alınır ancak bu kimlik tanıma için kullanılmaz. Eğer DN değişirse, değişiklikler tespit edilir. Dahili kullanıcı her yerde kullanılır. Eşleştirmeleri temizlemek, her yerde kalıntılar bırakacaktır. Eşleştirmeleri temizlemek yapılandırmaya hassas bir şekilde bağlı değildir, tüm LDAP yapılandırmalarını etkiler! Üretim ortamında eşleştirmeleri asla temizlemeyin, sadece sınama veya deneysel aşamada kullanın." -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "Kullanıcı Adı-LDAP Kullanıcısı Eşleştirmesini Temizle" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Grup Adı-LDAP Grubu Eşleştirme" diff --git a/l10n/tzm/core.po b/l10n/tzm/core.po index 5188ffa1f44..528cc7ed88b 100644 --- a/l10n/tzm/core.po +++ b/l10n/tzm/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Central Atlas Tamazight (http://www.transifex.com/projects/p/owncloud/language/tzm/)\n" "MIME-Version: 1.0\n" @@ -17,24 +17,24 @@ msgstr "" "Language: tzm\n" "Plural-Forms: nplurals=2; plural=(n == 0 || n == 1 || (n > 10 && n < 100) ? 0 : 1;\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -134,63 +134,63 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "" -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "" @@ -229,32 +229,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -533,14 +541,14 @@ msgstr "" msgid "Reset password" msgstr "" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/tzm/user_ldap.po b/l10n/tzm/user_ldap.po index f4b3363e222..33f053cd3f6 100644 --- a/l10n/tzm/user_ldap.po +++ b/l10n/tzm/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Central Atlas Tamazight (http://www.transifex.com/projects/p/owncloud/language/tzm/)\n" "MIME-Version: 1.0\n" @@ -419,41 +419,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -469,15 +480,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -488,19 +499,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -514,10 +525,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/ug/core.po b/l10n/ug/core.po index a8ad67283df..ca775aa5dc9 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -17,24 +17,24 @@ msgstr "" "Language: ug\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -134,59 +134,59 @@ msgstr "ئوغلاق" msgid "December" msgstr "كۆنەك" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "تەڭشەكلەر" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "ساقلاۋاتىدۇ…" -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "بۈگۈن" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "تۈنۈگۈن" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "" @@ -224,32 +224,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "ۋاز كەچ" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -528,14 +536,14 @@ msgstr "يېڭى ئىم" msgid "Reset password" msgstr "" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index 4ac58f58360..31a16bcc3d1 100644 --- a/l10n/ug/user_ldap.po +++ b/l10n/ug/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -417,41 +417,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -467,15 +478,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -486,19 +497,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -512,10 +523,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 31bbc3a69de..8f273371747 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -18,24 +18,24 @@ msgstr "" "Language: uk\n" "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);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Неможливо надіслати пошту наступним користувачам: %s " -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "Увімкнено захищений режим" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "Вимкнено захищений режим" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "Базу даних оновлено" @@ -135,67 +135,67 @@ msgstr "Листопад" msgid "December" msgstr "Грудень" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Налаштування" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "Зберігаю..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "секунди тому" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n хвилину тому" msgstr[1] "%n хвилини тому" msgstr[2] "%n хвилин тому" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n годину тому" msgstr[1] "%n години тому" msgstr[2] "%n годин тому" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "сьогодні" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "вчора" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n день тому" msgstr[1] "%n дні тому" msgstr[2] "%n днів тому" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "минулого місяця" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n місяць тому" msgstr[1] "%n місяці тому" msgstr[2] "%n місяців тому" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "місяці тому" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "минулого року" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "роки тому" @@ -235,32 +235,40 @@ msgid "One file conflict" msgstr "Один файловий конфлікт" #: js/oc-dialogs.js:367 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" msgstr "Які файли ви хочете залишити?" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Якщо ви оберете обидві версії, скопійований файл буде мати номер, доданий у його ім'я." -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Відмінити" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "Продовжити" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "(все вибрано)" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "({count} вибрано)" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "Помилка при завантаженні файлу існуючого шаблону" @@ -539,14 +547,14 @@ msgstr "Новий пароль" msgid "Reset password" msgstr "Скинути пароль" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index 0e0f846c7ff..189454a8bba 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -421,41 +421,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "Спеціальні Атрибути" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "Поле Квоти" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "Квота за замовчанням" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "в байтах" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "Поле Ел. пошти" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "Правило іменування домашньої теки користувача" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Залиште порожнім для імені користувача (за замовчанням). Інакше, вкажіть атрибут LDAP/AD." -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -471,15 +482,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -490,19 +501,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -516,10 +527,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/ur/core.po b/l10n/ur/core.po index 4a075757d6a..ccec776d8f5 100644 --- a/l10n/ur/core.po +++ b/l10n/ur/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -17,24 +17,24 @@ msgstr "" "Language: ur\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -134,63 +134,63 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "" -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "" @@ -229,32 +229,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -533,14 +541,14 @@ msgstr "" msgid "Reset password" msgstr "" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/ur/user_ldap.po b/l10n/ur/user_ldap.po index 52d4b1c41d6..5cac65d044b 100644 --- a/l10n/ur/user_ldap.po +++ b/l10n/ur/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -419,41 +419,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -469,15 +480,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -488,19 +499,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -514,10 +525,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index dd41da4e86a..b00e1bcc896 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -17,24 +17,24 @@ msgstr "" "Language: ur_PK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -134,63 +134,63 @@ msgstr "نومبر" msgid "December" msgstr "دسمبر" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "سیٹینگز" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "" -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "" @@ -229,32 +229,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "منسوخ کریں" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -533,14 +541,14 @@ msgstr "نیا پاسورڈ" msgid "Reset password" msgstr "ری سیٹ پاسورڈ" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/ur_PK/user_ldap.po b/l10n/ur_PK/user_ldap.po index 9210c2d915a..7fcccee2a11 100644 --- a/l10n/ur_PK/user_ldap.po +++ b/l10n/ur_PK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -419,41 +419,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -469,15 +480,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -488,19 +499,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -514,10 +525,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/uz/core.po b/l10n/uz/core.po index 7b8fa16a1d7..6685162cdfb 100644 --- a/l10n/uz/core.po +++ b/l10n/uz/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uzbek (http://www.transifex.com/projects/p/owncloud/language/uz/)\n" "MIME-Version: 1.0\n" @@ -17,24 +17,24 @@ msgstr "" "Language: uz\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -134,59 +134,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "" -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "" @@ -224,32 +224,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -528,14 +536,14 @@ msgstr "" msgid "Reset password" msgstr "" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/uz/user_ldap.po b/l10n/uz/user_ldap.po index e93eae4a9d2..33dee47c293 100644 --- a/l10n/uz/user_ldap.po +++ b/l10n/uz/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uzbek (http://www.transifex.com/projects/p/owncloud/language/uz/)\n" "MIME-Version: 1.0\n" @@ -417,41 +417,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -467,15 +478,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -486,19 +497,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -512,10 +523,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index 48a4e5f7c78..e2374b58219 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -21,24 +21,24 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Không thể gửi thư cho người dùng: %s" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "Bật chế độ bảo trì" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "Tắt chế độ bảo trì" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "Cơ sở dữ liệu đã được cập nhật" @@ -138,59 +138,59 @@ msgstr "Tháng 11" msgid "December" msgstr "Tháng 12" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "Cài đặt" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "Đang lưu..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "vài giây trước" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n phút trước" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n giờ trước" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "hôm nay" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "hôm qua" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n ngày trước" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "tháng trước" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n tháng trước" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "tháng trước" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "năm trước" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "năm trước" @@ -228,32 +228,40 @@ msgid "One file conflict" msgstr "Một tập tin xung đột" #: js/oc-dialogs.js:367 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" msgstr "Bạn muốn tiếp tục với những tập tin nào?" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Nếu bạn chọn cả hai phiên bản, tập tin được sao chép sẽ được đánh thêm số vào tên của nó." -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "Hủy" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "Tiếp tục" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "(Tất cả các lựa chọn)" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "({count} được chọn)" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "Lỗi khi tải tập tin mẫu đã tồn tại" @@ -532,14 +540,14 @@ msgstr "Mật khẩu mới" msgid "Reset password" msgstr "Khôi phục mật khẩu" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index 0874d51ffbd..04ba1f8caa4 100644 --- a/l10n/vi/user_ldap.po +++ b/l10n/vi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -417,41 +417,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "Special Attributes" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "Theo Byte" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Để trống tên người dùng (mặc định). Nếu không chỉ định thuộc tính LDAP/AD" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -467,15 +478,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -486,19 +497,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -512,10 +523,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 0345cacc602..7f2eab3c3ed 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -22,24 +22,24 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "发送失败,用户如下: %s " -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "启用维护模式" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "关闭维护模式" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "数据库已更新" @@ -139,59 +139,59 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "设置" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "保存中" -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "秒前" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n 分钟前" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n 小时前" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "今天" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "昨天" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n 天前" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "上月" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n 月前" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "月前" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "去年" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "年前" @@ -229,32 +229,40 @@ msgid "One file conflict" msgstr "1个文件冲突" #: js/oc-dialogs.js:367 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" msgstr "想要保留哪一个文件呢?" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "如果同时选择了连个版本,复制的文件名将会添加上一个数字。" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "取消" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "继续" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "(选中全部)" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "(选择了{count}个)" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "加载文件存在性模板失败" @@ -533,14 +541,14 @@ msgstr "新密码" msgid "Reset password" msgstr "重置密码" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index 79cecd9f5ea..d58c0a99e59 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -419,41 +419,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "特殊属性" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "配额字段" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "默认配额" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "字节数" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "电邮字段" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "用户主目录命名规则" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "将用户名称留空(默认)。否则指定一个LDAP/AD属性" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "内部用户名" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -469,15 +480,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "内部用户名属性:" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "超越UUID检测" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -488,19 +499,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "用户名-LDAP用户映射" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -514,10 +525,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "清除用户-LDAP用户映射" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "清除组用户-LDAP级映射" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index 2b6ff7ae0db..a3f0d6b64eb 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -17,24 +17,24 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -134,59 +134,59 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "設定" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "" -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "今日" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "昨日" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "前一月" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "個月之前" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "" @@ -224,32 +224,40 @@ msgid "One file conflict" msgstr "" #: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" +msgid "New Files" msgstr "" #: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "取消" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "" @@ -528,14 +536,14 @@ msgstr "新密碼" msgid "Reset password" msgstr "重設密碼" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index 67182c3f7e1..96105f465a5 100644 --- a/l10n/zh_HK/user_ldap.po +++ b/l10n/zh_HK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -417,41 +417,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -467,15 +478,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -486,19 +497,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -512,10 +523,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 9595c3fa222..c1493949695 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -19,24 +19,24 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "無法寄送郵件給這些使用者:%s" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "已啓用維護模式" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "已停用維護模式" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "已更新資料庫" @@ -136,59 +136,59 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: js/js.js:458 +#: js/js.js:479 msgid "Settings" msgstr "設定" -#: js/js.js:496 +#: js/js.js:564 msgid "Saving..." msgstr "儲存中..." -#: js/js.js:995 +#: js/js.js:1124 msgid "seconds ago" msgstr "幾秒前" -#: js/js.js:996 +#: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n 分鐘前" -#: js/js.js:997 +#: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n 小時前" -#: js/js.js:998 +#: js/js.js:1127 msgid "today" msgstr "今天" -#: js/js.js:999 +#: js/js.js:1128 msgid "yesterday" msgstr "昨天" -#: js/js.js:1000 +#: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n 天前" -#: js/js.js:1001 +#: js/js.js:1130 msgid "last month" msgstr "上個月" -#: js/js.js:1002 +#: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n 個月前" -#: js/js.js:1003 +#: js/js.js:1132 msgid "months ago" msgstr "幾個月前" -#: js/js.js:1004 +#: js/js.js:1133 msgid "last year" msgstr "去年" -#: js/js.js:1005 +#: js/js.js:1134 msgid "years ago" msgstr "幾年前" @@ -226,32 +226,40 @@ msgid "One file conflict" msgstr "一個檔案衝突" #: js/oc-dialogs.js:367 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" msgstr "您要保留哪一個檔案?" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:371 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "如果您同時選擇兩個版本,被複製的那個檔案名稱後面會加上編號" -#: js/oc-dialogs.js:376 +#: js/oc-dialogs.js:379 msgid "Cancel" msgstr "取消" -#: js/oc-dialogs.js:386 +#: js/oc-dialogs.js:389 msgid "Continue" msgstr "繼續" -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" msgstr "(已全選)" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 msgid "({count} selected)" msgstr "(已選 {count} 項)" -#: js/oc-dialogs.js:457 +#: js/oc-dialogs.js:460 msgid "Error loading file exists template" msgstr "載入檔案存在樣板出錯" @@ -530,14 +538,14 @@ msgstr "新密碼" msgid "Reset password" msgstr "重設密碼" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index f025e58cce9..8f76848a295 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"POT-Creation-Date: 2014-04-08 01:56-0400\n" +"PO-Revision-Date: 2014-04-08 05:56+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" @@ -419,41 +419,52 @@ msgid "" "the group member attribute contains DNs.)" msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 msgid "Special Attributes" msgstr "特殊屬性" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Field" msgstr "配額欄位" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Quota Default" msgstr "預設配額" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "in bytes" msgstr "以位元組為單位" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "Email Field" msgstr "電郵欄位" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "User Home Folder Naming Rule" msgstr "使用者家目錄的命名規則" -#: templates/settings.php:46 +#: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "使用者名稱請留白(預設)。若不留白請指定一個LDAP/AD屬性。" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "Internal Username" msgstr "內部使用者名稱" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -469,15 +480,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -488,19 +499,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -514,10 +525,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/lib/l10n/ast.php b/lib/l10n/ast.php new file mode 100644 index 00000000000..1e4f406b85a --- /dev/null +++ b/lib/l10n/ast.php @@ -0,0 +1,9 @@ + "Personal", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day go_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/jv.php b/lib/l10n/jv.php new file mode 100644 index 00000000000..15f78e0bce6 --- /dev/null +++ b/lib/l10n/jv.php @@ -0,0 +1,8 @@ + array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day go_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/ast.php b/settings/l10n/ast.php new file mode 100644 index 00000000000..6b01085c49f --- /dev/null +++ b/settings/l10n/ast.php @@ -0,0 +1,7 @@ + "Solicitú non válida", +"Delete" => "Desaniciar", +"Other" => "Otru" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/jv.php b/settings/l10n/jv.php new file mode 100644 index 00000000000..60f6d245940 --- /dev/null +++ b/settings/l10n/jv.php @@ -0,0 +1,5 @@ + "Panjalukan salah" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/sk_SK.php b/settings/l10n/sk_SK.php index e613b5b04c7..af49e8e95d0 100644 --- a/settings/l10n/sk_SK.php +++ b/settings/l10n/sk_SK.php @@ -39,6 +39,11 @@ $TRANSLATIONS = array( "Update" => "Aktualizovať", "Updated" => "Aktualizované", "Select a profile picture" => "Vybrať avatara", +"Very weak password" => "Veľmi slabé heslo", +"Weak password" => "Slabé heslo", +"So-so password" => "Priemerné heslo", +"Good password" => "Dobré heslo", +"Strong password" => "Silné heslo", "Decrypting files... Please wait, this can take some time." => "Dešifrujem súbory ... Počkajte prosím, môže to chvíľu trvať.", "deleted" => "zmazané", "undo" => "vrátiť", -- GitLab From 698297feb3cb8e78c0e4adb6756e0ea98da49677 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Fri, 4 Apr 2014 18:56:14 +0200 Subject: [PATCH 251/296] add optional countUsersInGroup method to group backends --- lib/private/group/backend.php | 2 ++ lib/private/group/database.php | 14 ++++++++++++++ lib/private/group/dummy.php | 10 ++++++++++ lib/private/group/group.php | 21 +++++++++++++++++++++ 4 files changed, 47 insertions(+) diff --git a/lib/private/group/backend.php b/lib/private/group/backend.php index 2e17b5d0b7f..b0ed0d90d76 100644 --- a/lib/private/group/backend.php +++ b/lib/private/group/backend.php @@ -34,6 +34,7 @@ define('OC_GROUP_BACKEND_DELETE_GROUP', 0x00000010); define('OC_GROUP_BACKEND_ADD_TO_GROUP', 0x00000100); define('OC_GROUP_BACKEND_REMOVE_FROM_GOUP', 0x00001000); define('OC_GROUP_BACKEND_GET_DISPLAYNAME', 0x00010000); +define('OC_GROUP_BACKEND_COUNT_USERS', 0x00100000); /** * Abstract base class for user management @@ -45,6 +46,7 @@ abstract class OC_Group_Backend implements OC_Group_Interface { OC_GROUP_BACKEND_ADD_TO_GROUP => 'addToGroup', OC_GROUP_BACKEND_REMOVE_FROM_GOUP => 'removeFromGroup', OC_GROUP_BACKEND_GET_DISPLAYNAME => 'displayNamesInGroup', + OC_GROUP_BACKEND_COUNT_USERS => 'countUsersInGroup', ); /** diff --git a/lib/private/group/database.php b/lib/private/group/database.php index d0974685ff6..3815dcff2e5 100644 --- a/lib/private/group/database.php +++ b/lib/private/group/database.php @@ -211,6 +211,20 @@ class OC_Group_Database extends OC_Group_Backend { return $users; } + /** + * @brief get the number of all users matching the search string in a group + * @param string $gid + * @param string $search + * @param int $limit + * @param int $offset + * @return int | false + */ + public function countUsersInGroup($gid, $search = '') { + $stmt = OC_DB::prepare('SELECT COUNT(`uid`) AS `count` FROM `*PREFIX*group_user` WHERE `gid` = ? AND `uid` LIKE ?'); + $result = $stmt->execute(array($gid, $search.'%')); + return $result->fetchOne(); + } + /** * @brief get a list of all display names in a group * @param string $gid diff --git a/lib/private/group/dummy.php b/lib/private/group/dummy.php index da26e1b910e..94cbb607ad1 100644 --- a/lib/private/group/dummy.php +++ b/lib/private/group/dummy.php @@ -157,4 +157,14 @@ class OC_Group_Dummy extends OC_Group_Backend { } } + /** + * @brief get the number of all users in a group + * @returns int | bool + */ + public function countUsersInGroup($gid, $search = '', $limit = -1, $offset = 0) { + if(isset($this->groups[$gid])) { + return count($this->groups[$gid]); + } + } + } diff --git a/lib/private/group/group.php b/lib/private/group/group.php index 8d2aa87a788..9965d938ebb 100644 --- a/lib/private/group/group.php +++ b/lib/private/group/group.php @@ -186,6 +186,27 @@ class Group { return array_values($users); } + /** + * returns the number of users matching the search string + * + * @param string $search + * @return int | bool + */ + public function count($search) { + $users = false; + foreach ($this->backends as $backend) { + if(method_exists($backend, 'countUsersInGroup')) { + if($users === false) { + //we could directly add to a bool variable, but this would + //be ugly + $users = 0; + } + $users += $backend->countUsersInGroup($this->gid, $search); + } + } + return $users; + } + /** * search for users in the group by displayname * -- GitLab From 96cb75f5cf8c14f389213e1745cc3a98f8d1cbd4 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Fri, 4 Apr 2014 18:56:34 +0200 Subject: [PATCH 252/296] implement countUsersInGroup in LDAP group backend --- apps/user_ldap/group_ldap.php | 82 +++++++++++++++++++++++++++++++++- apps/user_ldap/group_proxy.php | 11 +++++ 2 files changed, 92 insertions(+), 1 deletion(-) diff --git a/apps/user_ldap/group_ldap.php b/apps/user_ldap/group_ldap.php index 4f2424d9531..820d2c4636e 100644 --- a/apps/user_ldap/group_ldap.php +++ b/apps/user_ldap/group_ldap.php @@ -276,6 +276,83 @@ class GROUP_LDAP extends BackendUtility implements \OCP\GroupInterface { return $groupUsers; } + /** + * @brief returns the number of users in a group, who match the search term + * @param string the internal group name + * @param string optional, a search string + * @returns int | bool + */ + public function countUsersInGroup($gid, $search = '') { + $cachekey = 'countUsersInGroup-'.$gid.'-'.$search; + if(!$this->enabled || !$this->groupExists($gid)) { + return false; + } + $groupUsers = $this->access->connection->getFromCache($cachekey); + if(!is_null($groupUsers)) { + return $groupUsers; + } + + $groupDN = $this->access->groupname2dn($gid); + if(!$groupDN) { + // group couldn't be found, return empty resultset + $this->access->connection->writeToCache($cachekey, false); + return false; + } + + $members = array_keys($this->_groupMembers($groupDN)); + if(!$members) { + //in case users could not be retrieved, return empty resultset + $this->access->connection->writeToCache($cachekey, false); + return false; + } + + if(empty($search)) { + $groupUsers = count($members); + $this->access->connection->writeToCache($cachekey, $groupUsers); + return $groupUsers; + } + $isMemberUid = + (strtolower($this->access->connection->ldapGroupMemberAssocAttr) + === 'memberuid'); + + //we need to apply the search filter + //alternatives that need to be checked: + //a) get all users by search filter and array_intersect them + //b) a, but only when less than 1k 10k ?k users like it is + //c) put all DNs|uids in a LDAP filter, combine with the search string + // and let it count. + //For now this is not important, because the only use of this method + //does not supply a search string + foreach($members as $member) { + if($isMemberUid) { + //we got uids, need to get their DNs to 'tranlsate' them to usernames + $filter = $this->access->combineFilterWithAnd(array( + \OCP\Util::mb_str_replace('%uid', $member, + $this->access->connection->ldapLoginFilter, 'UTF-8'), + $this->access->getFilterPartForUserSearch($search) + )); + $ldap_users = $this->access->fetchListOfUsers($filter, 'dn'); + if(count($ldap_users) < 1) { + continue; + } + $groupUsers[] = $this->access->dn2username($ldap_users[0]); + } else { + //we need to apply the search filter now + if(!$this->access->readAttribute($member, + $this->access->connection->ldapUserDisplayName, + $this->access->getFilterPartForUserSearch($search))) { + continue; + } + // dn2username will also check if the users belong to the allowed base + if($ocname = $this->access->dn2username($member)) { + $groupUsers[] = $ocname; + } + } + } + + return $groupUsers; + } + /** * @brief get a list of all display names in a group * @returns array with display names (value) and user ids(key) @@ -418,6 +495,9 @@ class GROUP_LDAP extends BackendUtility implements \OCP\GroupInterface { * compared with OC_USER_BACKEND_CREATE_USER etc. */ public function implementsActions($actions) { - return (bool)(OC_GROUP_BACKEND_GET_DISPLAYNAME & $actions); + return (bool)(( + OC_GROUP_BACKEND_GET_DISPLAYNAME + | OC_GROUP_BACKEND_COUNT_USERS + ) & $actions); } } diff --git a/apps/user_ldap/group_proxy.php b/apps/user_ldap/group_proxy.php index 4404bd7fe3a..c0009736239 100644 --- a/apps/user_ldap/group_proxy.php +++ b/apps/user_ldap/group_proxy.php @@ -144,6 +144,17 @@ class Group_Proxy extends lib\Proxy implements \OCP\GroupInterface { return $users; } + /** + * @brief returns the number of users in a group, who match the search term + * @param string the internal group name + * @param string optional, a search string + * @returns int | bool + */ + public function countUsersInGroup($gid, $search = '') { + return $this->handleRequest( + $gid, 'countUsersInGroup', array($gid, $search)); + } + /** * @brief get a list of all display names in a group * @returns array with display names (value) and user ids(key) -- GitLab From 5f8d9b3a4e259d1f9c02b482bab37321c0d3b3dc Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Tue, 8 Apr 2014 12:31:11 +0200 Subject: [PATCH 253/296] ask implementsAction instead of checking method_exists for easier testing --- lib/private/group/group.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/group/group.php b/lib/private/group/group.php index 9965d938ebb..a2b8a0dcbea 100644 --- a/lib/private/group/group.php +++ b/lib/private/group/group.php @@ -195,7 +195,7 @@ class Group { public function count($search) { $users = false; foreach ($this->backends as $backend) { - if(method_exists($backend, 'countUsersInGroup')) { + if($backend->implementsActions(OC_GROUP_BACKEND_COUNT_USERS)) { if($users === false) { //we could directly add to a bool variable, but this would //be ugly -- GitLab From 9597f4190460c54066586c0eb42ed9a8532ad90a Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Tue, 8 Apr 2014 12:32:30 +0200 Subject: [PATCH 254/296] add group tests --- tests/lib/group/group.php | 62 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) diff --git a/tests/lib/group/group.php b/tests/lib/group/group.php index 3982c00e45f..147532f9947 100644 --- a/tests/lib/group/group.php +++ b/tests/lib/group/group.php @@ -299,6 +299,68 @@ class Group extends \PHPUnit_Framework_TestCase { $this->assertEquals('user1', $user1->getUID()); } + public function testCountUsers() { + $backend1 = $this->getMock('OC_Group_Database'); + $userManager = $this->getUserManager(); + $group = new \OC\Group\Group('group1', array($backend1), $userManager); + + $backend1->expects($this->once()) + ->method('countUsersInGroup') + ->with('group1', '2') + ->will($this->returnValue(3)); + + $backend1->expects($this->any()) + ->method('implementsActions') + ->will($this->returnValue(true)); + + $users = $group->count('2'); + + $this->assertSame(3, $users); + } + + public function testCountUsersMultipleBackends() { + $backend1 = $this->getMock('OC_Group_Database'); + $backend2 = $this->getMock('OC_Group_Database'); + $userManager = $this->getUserManager(); + $group = new \OC\Group\Group('group1', array($backend1, $backend2), $userManager); + + $backend1->expects($this->once()) + ->method('countUsersInGroup') + ->with('group1', '2') + ->will($this->returnValue(3)); + $backend1->expects($this->any()) + ->method('implementsActions') + ->will($this->returnValue(true)); + + $backend2->expects($this->once()) + ->method('countUsersInGroup') + ->with('group1', '2') + ->will($this->returnValue(4)); + $backend2->expects($this->any()) + ->method('implementsActions') + ->will($this->returnValue(true)); + + $users = $group->count('2'); + + $this->assertSame(7, $users); + } + + public function testCountUsersNoMethod() { + $backend1 = $this->getMock('OC_Group_Database'); + $userManager = $this->getUserManager(); + $group = new \OC\Group\Group('group1', array($backend1), $userManager); + + $backend1->expects($this->never()) + ->method('countUsersInGroup'); + $backend1->expects($this->any()) + ->method('implementsActions') + ->will($this->returnValue(false)); + + $users = $group->count('2'); + + $this->assertSame(false, $users); + } + public function testDelete() { $backend = $this->getMock('OC_Group_Database'); $userManager = $this->getUserManager(); -- GitLab From 142fc5f3af6e81f5c777caa9f8d42fad36866de2 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Tue, 8 Apr 2014 12:53:59 +0200 Subject: [PATCH 255/296] fix return value when a search string was passed to return integer instead of array --- apps/user_ldap/group_ldap.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/user_ldap/group_ldap.php b/apps/user_ldap/group_ldap.php index 820d2c4636e..40d9dec1410 100644 --- a/apps/user_ldap/group_ldap.php +++ b/apps/user_ldap/group_ldap.php @@ -323,6 +323,7 @@ class GROUP_LDAP extends BackendUtility implements \OCP\GroupInterface { // and let it count. //For now this is not important, because the only use of this method //does not supply a search string + $groupUsers = array(); foreach($members as $member) { if($isMemberUid) { //we got uids, need to get their DNs to 'tranlsate' them to usernames @@ -350,7 +351,7 @@ class GROUP_LDAP extends BackendUtility implements \OCP\GroupInterface { } } - return $groupUsers; + return count($groupUsers); } /** -- GitLab From 240732162509d0caf71ef5f1414b2595bbe47fe9 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Tue, 8 Apr 2014 12:57:06 +0200 Subject: [PATCH 256/296] add tests for LDAP --- apps/user_ldap/tests/group_ldap.php | 115 ++++++++++++++++++++++++++++ 1 file changed, 115 insertions(+) create mode 100644 apps/user_ldap/tests/group_ldap.php diff --git a/apps/user_ldap/tests/group_ldap.php b/apps/user_ldap/tests/group_ldap.php new file mode 100644 index 00000000000..ecbd42319e3 --- /dev/null +++ b/apps/user_ldap/tests/group_ldap.php @@ -0,0 +1,115 @@ + +* +* This library is free software; you can redistribute it and/or +* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE +* License as published by the Free Software Foundation; either +* version 3 of the License, or any later version. +* +* This library is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU AFFERO GENERAL PUBLIC LICENSE for more details. +* +* You should have received a copy of the GNU Affero General Public +* License along with this library. If not, see . +* +*/ + +namespace OCA\user_ldap\tests; + +namespace OCA\user_ldap\tests; + +use \OCA\user_ldap\GROUP_LDAP as GroupLDAP; +use \OCA\user_ldap\lib\Access; +use \OCA\user_ldap\lib\Connection; +use \OCA\user_ldap\lib\ILDAPWrapper; + +class Test_Group_Ldap extends \PHPUnit_Framework_TestCase { + private function getAccessMock() { + static $conMethods; + static $accMethods; + + if(is_null($conMethods) || is_null($accMethods)) { + $conMethods = get_class_methods('\OCA\user_ldap\lib\Connection'); + $accMethods = get_class_methods('\OCA\user_ldap\lib\Access'); + } + $lw = $this->getMock('\OCA\user_ldap\lib\ILDAPWrapper'); + $connector = $this->getMock('\OCA\user_ldap\lib\Connection', + $conMethods, + array($lw, null, null)); + $access = $this->getMock('\OCA\user_ldap\lib\Access', + $accMethods, + array($connector, $lw)); + + return $access; + } + + private function enableGroups($access) { + $access->connection->expects($this->any()) + ->method('__get') + ->will($this->returnCallback(function($name) { +// if($name === 'ldapLoginFilter') { +// return '%uid'; +// } + return 1; + })); + } + + public function testCountEmptySearchString() { + $access = $this->getAccessMock(); + + $this->enableGroups($access); + + $access->expects($this->any()) + ->method('groupname2dn') + ->will($this->returnValue('cn=group,dc=foo,dc=bar')); + + $access->expects($this->any()) + ->method('readAttribute') + ->will($this->returnValue(array('u11', 'u22', 'u33', 'u34'))); + + $groupBackend = new GroupLDAP($access); + $users = $groupBackend->countUsersInGroup('group'); + + $this->assertSame(4, $users); + } + + public function testCountWithSearchString() { + $access = $this->getAccessMock(); + + $this->enableGroups($access); + + $access->expects($this->any()) + ->method('groupname2dn') + ->will($this->returnValue('cn=group,dc=foo,dc=bar')); + + $access->expects($this->any()) + ->method('readAttribute') + ->will($this->returnCallback(function($name) { + //the search operation will call readAttribute, thus we need + //to anaylze the "dn". All other times we just need to return + //something that is neither null or false, but once an array + //with the users in the group – so we do so all other times for + //simplicicity. + if(strpos($name, 'u') === 0) { + return strpos($name, '3'); + } + return array('u11', 'u22', 'u33', 'u34'); + })); + + $access->expects($this->any()) + ->method('dn2username') + ->will($this->returnValue('foobar')); + + $groupBackend = new GroupLDAP($access); + $users = $groupBackend->countUsersInGroup('group', '3'); + + $this->assertSame(2, $users); + } + +} \ No newline at end of file -- GitLab From a4fc92b05bb5131ae7b9fe0d6be5b7f68f470de0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 8 Apr 2014 14:15:33 +0200 Subject: [PATCH 257/296] class Test_Config is already declared --- tests/lib/public/{config.php => ocpconfig.php} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename tests/lib/public/{config.php => ocpconfig.php} (94%) diff --git a/tests/lib/public/config.php b/tests/lib/public/ocpconfig.php similarity index 94% rename from tests/lib/public/config.php rename to tests/lib/public/ocpconfig.php index 68367034e9a..43a9ca625ee 100644 --- a/tests/lib/public/config.php +++ b/tests/lib/public/ocpconfig.php @@ -19,7 +19,7 @@ * License along with this library. If not, see . */ -class Test_Config extends PHPUnit_Framework_TestCase +class Test_OCPConfig extends PHPUnit_Framework_TestCase { public function testSetAppValueIfSetToNull() { -- GitLab From 35ab6fe5a95988ef55fafdd3f94d759d602833ef Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Tue, 8 Apr 2014 17:13:59 +0200 Subject: [PATCH 258/296] Disable sharing in trashbin app --- apps/files_trashbin/templates/index.php | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/files_trashbin/templates/index.php b/apps/files_trashbin/templates/index.php index 615cf8bdd00..b6c61c9b1c3 100644 --- a/apps/files_trashbin/templates/index.php +++ b/apps/files_trashbin/templates/index.php @@ -6,6 +6,7 @@ + -- GitLab From bfb1e0867f82a61a2e19e900d3e62d2bafa0b514 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Tue, 8 Apr 2014 17:21:11 +0200 Subject: [PATCH 259/296] Enable autowatch for karma This way unit tests can be run in multiple browsers with the command line and tests will re-run automatically when files are changed. --- tests/karma.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/karma.config.js b/tests/karma.config.js index 529bd31338f..ed9836ed4c3 100644 --- a/tests/karma.config.js +++ b/tests/karma.config.js @@ -167,7 +167,7 @@ module.exports = function(config) { logLevel: config.LOG_INFO, // enable / disable watching file and executing tests whenever any file changes - autoWatch: false, + autoWatch: true, // Start these browsers, currently available: // - Chrome -- GitLab From a4f42676ea1741262db9380bab63c946c011a7ef Mon Sep 17 00:00:00 2001 From: Volkan Gezer Date: Tue, 8 Apr 2014 20:07:25 +0200 Subject: [PATCH 260/296] Make hardcoded exception messages translatable --- lib/private/user/manager.php | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/lib/private/user/manager.php b/lib/private/user/manager.php index 8583a451f2d..a2ad9d17702 100644 --- a/lib/private/user/manager.php +++ b/lib/private/user/manager.php @@ -239,24 +239,25 @@ class Manager extends PublicEmitter { * @return bool | \OC\User\User the created user of false */ public function createUser($uid, $password) { + $l = \OC_L10N::get('lib'); // Check the name for bad characters // Allowed are: "a-z", "A-Z", "0-9" and "_.@-" if (preg_match('/[^a-zA-Z0-9 _\.@\-]/', $uid)) { - throw new \Exception('Only the following characters are allowed in a username:' - . ' "a-z", "A-Z", "0-9", and "_.@-"'); + throw new \Exception($l->t('Only the following characters are allowed in a username:' + . ' "a-z", "A-Z", "0-9", and "_.@-"')); } // No empty username if (trim($uid) == '') { - throw new \Exception('A valid username must be provided'); + throw new \Exception($l->t('A valid username must be provided')); } // No empty password if (trim($password) == '') { - throw new \Exception('A valid password must be provided'); + throw new \Exception($l->t('A valid password must be provided')); } // Check if user already exists if ($this->userExists($uid)) { - throw new \Exception('The username is already being used'); + throw new \Exception($l->t('The username is already being used')); } $this->emit('\OC\User', 'preCreateUser', array($uid, $password)); -- GitLab From 796f71954847681f85038c8c27b178dc8f2e0895 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Wed, 9 Apr 2014 01:56:49 -0400 Subject: [PATCH 261/296] [tx-robot] updated from transifex --- apps/files/l10n/ast.php | 17 +++++ apps/files_encryption/l10n/ast.php | 13 ++++ apps/files_external/l10n/ast.php | 2 + apps/files_external/l10n/ca.php | 3 - apps/files_external/l10n/cs_CZ.php | 3 - apps/files_external/l10n/da.php | 3 - apps/files_external/l10n/de.php | 3 - apps/files_external/l10n/de_CH.php | 3 - apps/files_external/l10n/de_DE.php | 3 - apps/files_external/l10n/el.php | 3 - apps/files_external/l10n/en_GB.php | 3 - apps/files_external/l10n/es.php | 3 - apps/files_external/l10n/es_AR.php | 3 - apps/files_external/l10n/es_MX.php | 3 - apps/files_external/l10n/et_EE.php | 3 - apps/files_external/l10n/eu.php | 3 - apps/files_external/l10n/fa.php | 3 - apps/files_external/l10n/fi_FI.php | 3 - apps/files_external/l10n/fr.php | 3 - apps/files_external/l10n/gl.php | 3 - apps/files_external/l10n/hu_HU.php | 3 - apps/files_external/l10n/id.php | 2 - apps/files_external/l10n/is.php | 2 - apps/files_external/l10n/it.php | 3 - apps/files_external/l10n/ja.php | 3 - apps/files_external/l10n/ka_GE.php | 3 - apps/files_external/l10n/ko.php | 3 - apps/files_external/l10n/lt_LT.php | 3 - apps/files_external/l10n/lv.php | 3 - apps/files_external/l10n/mk.php | 2 - apps/files_external/l10n/nb_NO.php | 3 - apps/files_external/l10n/nl.php | 3 - apps/files_external/l10n/pl.php | 3 - apps/files_external/l10n/pt_BR.php | 3 - apps/files_external/l10n/pt_PT.php | 3 - apps/files_external/l10n/ro.php | 3 - apps/files_external/l10n/ru.php | 3 - apps/files_external/l10n/sk_SK.php | 3 - apps/files_external/l10n/sl.php | 3 - apps/files_external/l10n/sv.php | 3 - apps/files_external/l10n/th_TH.php | 2 - apps/files_external/l10n/tr.php | 3 - apps/files_external/l10n/uk.php | 3 - apps/files_external/l10n/vi.php | 3 - apps/files_external/l10n/zh_CN.php | 3 - apps/files_external/l10n/zh_TW.php | 3 - apps/files_sharing/l10n/ast.php | 6 ++ apps/files_trashbin/l10n/ast.php | 2 + apps/files_versions/l10n/ast.php | 8 +++ apps/user_ldap/l10n/ast.php | 5 +- apps/user_ldap/l10n/en_GB.php | 2 + apps/user_ldap/l10n/gl.php | 2 + apps/user_ldap/l10n/nl.php | 2 + apps/user_ldap/l10n/pl.php | 2 + apps/user_ldap/l10n/pt_BR.php | 2 + apps/user_ldap/l10n/sv.php | 2 + apps/user_ldap/l10n/tr.php | 2 + apps/user_webdavauth/l10n/ast.php | 7 ++ core/l10n/ast.php | 50 ++++++++++++-- core/l10n/ca.php | 1 + core/l10n/cs_CZ.php | 1 + core/l10n/da.php | 1 + core/l10n/de.php | 1 + core/l10n/de_CH.php | 1 + core/l10n/de_DE.php | 1 + core/l10n/el.php | 1 + core/l10n/en_GB.php | 2 + core/l10n/eo.php | 1 + core/l10n/es.php | 2 + core/l10n/es_AR.php | 1 + core/l10n/et_EE.php | 1 + core/l10n/eu.php | 1 + core/l10n/fa.php | 1 + core/l10n/fi_FI.php | 4 ++ core/l10n/fr.php | 1 + core/l10n/gl.php | 2 + core/l10n/he.php | 1 + core/l10n/hu_HU.php | 1 + core/l10n/it.php | 1 + core/l10n/ja.php | 1 + core/l10n/ka_GE.php | 1 + core/l10n/lv.php | 1 + core/l10n/nl.php | 2 + core/l10n/pl.php | 2 + core/l10n/pt_BR.php | 2 + core/l10n/pt_PT.php | 1 + core/l10n/ru.php | 1 + core/l10n/sk_SK.php | 1 + core/l10n/sl.php | 1 + core/l10n/sv.php | 2 + core/l10n/th_TH.php | 1 + core/l10n/tr.php | 2 + core/l10n/uk.php | 1 + core/l10n/vi.php | 1 + core/l10n/zh_CN.php | 1 + core/l10n/zh_TW.php | 1 + l10n/ach/files_external.po | 35 ++++++---- l10n/ach/lib.po | 58 ++++++++++------ l10n/ady/files_external.po | 35 ++++++---- l10n/ady/lib.po | 58 ++++++++++------ l10n/af/files_external.po | 35 ++++++---- l10n/af/lib.po | 58 ++++++++++------ l10n/af_ZA/files_external.po | 35 ++++++---- l10n/af_ZA/lib.po | 58 ++++++++++------ l10n/ak/files_external.po | 35 ++++++---- l10n/ak/lib.po | 58 ++++++++++------ l10n/am_ET/files_external.po | 35 ++++++---- l10n/am_ET/lib.po | 36 +++++++--- l10n/ar/files_external.po | 35 ++++++---- l10n/ar/lib.po | 38 +++++++--- l10n/ast/core.po | 103 ++++++++++++++-------------- l10n/ast/files.po | 38 +++++----- l10n/ast/files_encryption.po | 25 +++---- l10n/ast/files_external.po | 39 +++++++---- l10n/ast/files_sharing.po | 8 +-- l10n/ast/files_trashbin.po | 16 ++--- l10n/ast/files_versions.po | 15 ++-- l10n/ast/lib.po | 46 +++++++++---- l10n/ast/settings.po | 24 +++---- l10n/ast/user_ldap.po | 10 +-- l10n/ast/user_webdavauth.po | 13 ++-- l10n/az/files_external.po | 35 ++++++---- l10n/az/lib.po | 64 +++++++++++------ l10n/be/files_external.po | 35 ++++++---- l10n/be/lib.po | 58 ++++++++++------ l10n/bg_BG/files_external.po | 35 ++++++---- l10n/bg_BG/lib.po | 58 ++++++++++------ l10n/bn_BD/files_external.po | 35 ++++++---- l10n/bn_BD/lib.po | 58 ++++++++++------ l10n/bs/files_external.po | 35 ++++++---- l10n/bs/lib.po | 58 ++++++++++------ l10n/ca/core.po | 6 +- l10n/ca/files_external.po | 41 ++++++----- l10n/ca/lib.po | 42 ++++++++---- l10n/cs_CZ/core.po | 6 +- l10n/cs_CZ/files_external.po | 41 ++++++----- l10n/cs_CZ/lib.po | 38 +++++++--- l10n/cy_GB/files_external.po | 35 ++++++---- l10n/cy_GB/lib.po | 58 ++++++++++------ l10n/da/core.po | 6 +- l10n/da/files_external.po | 41 ++++++----- l10n/da/lib.po | 38 +++++++--- l10n/de/core.po | 6 +- l10n/de/files_external.po | 43 +++++++----- l10n/de/lib.po | 60 ++++++++++------ l10n/de_AT/files_external.po | 35 ++++++---- l10n/de_AT/lib.po | 58 ++++++++++------ l10n/de_CH/core.po | 6 +- l10n/de_CH/files_external.po | 41 ++++++----- l10n/de_CH/lib.po | 60 ++++++++++------ l10n/de_DE/core.po | 6 +- l10n/de_DE/files_external.po | 43 +++++++----- l10n/de_DE/lib.po | 60 ++++++++++------ l10n/el/core.po | 6 +- l10n/el/files_external.po | 41 ++++++----- l10n/el/lib.po | 28 ++++++-- l10n/en@pirate/files_external.po | 35 ++++++---- l10n/en@pirate/lib.po | 58 ++++++++++------ l10n/en_GB/core.po | 10 +-- l10n/en_GB/files_external.po | 43 +++++++----- l10n/en_GB/lib.po | 42 ++++++++---- l10n/en_GB/user_ldap.po | 10 +-- l10n/eo/core.po | 6 +- l10n/eo/files_external.po | 35 ++++++---- l10n/eo/lib.po | 58 ++++++++++------ l10n/es/core.po | 10 +-- l10n/es/files_external.po | 43 +++++++----- l10n/es/lib.po | 60 ++++++++++------ l10n/es_AR/core.po | 6 +- l10n/es_AR/files_external.po | 41 ++++++----- l10n/es_AR/lib.po | 58 ++++++++++------ l10n/es_CL/files_external.po | 35 ++++++---- l10n/es_CL/lib.po | 58 ++++++++++------ l10n/es_MX/files_external.po | 41 ++++++----- l10n/es_MX/lib.po | 58 ++++++++++------ l10n/et_EE/core.po | 6 +- l10n/et_EE/files_external.po | 43 +++++++----- l10n/et_EE/lib.po | 28 ++++++-- l10n/eu/core.po | 6 +- l10n/eu/files_external.po | 41 ++++++----- l10n/eu/lib.po | 58 ++++++++++------ l10n/eu_ES/files_external.po | 35 ++++++---- l10n/eu_ES/lib.po | 58 ++++++++++------ l10n/fa/core.po | 6 +- l10n/fa/files_external.po | 41 ++++++----- l10n/fa/lib.po | 58 ++++++++++------ l10n/fi_FI/core.po | 14 ++-- l10n/fi_FI/files_external.po | 43 +++++++----- l10n/fi_FI/lib.po | 60 ++++++++++------ l10n/fr/core.po | 6 +- l10n/fr/files_external.po | 43 +++++++----- l10n/fr/lib.po | 42 ++++++++---- l10n/fr_CA/files_external.po | 35 ++++++---- l10n/fr_CA/lib.po | 58 ++++++++++------ l10n/gl/core.po | 10 +-- l10n/gl/files_external.po | 43 +++++++----- l10n/gl/lib.po | 42 ++++++++---- l10n/gl/user_ldap.po | 10 +-- l10n/he/core.po | 6 +- l10n/he/files_external.po | 35 ++++++---- l10n/he/lib.po | 58 ++++++++++------ l10n/hi/files_external.po | 35 ++++++---- l10n/hi/lib.po | 58 ++++++++++------ l10n/hr/files_external.po | 35 ++++++---- l10n/hr/lib.po | 58 ++++++++++------ l10n/hu_HU/core.po | 6 +- l10n/hu_HU/files_external.po | 41 ++++++----- l10n/hu_HU/lib.po | 58 ++++++++++------ l10n/hy/files_external.po | 35 ++++++---- l10n/hy/lib.po | 58 ++++++++++------ l10n/ia/files_external.po | 35 ++++++---- l10n/ia/lib.po | 58 ++++++++++------ l10n/id/files_external.po | 39 +++++++---- l10n/id/lib.po | 58 ++++++++++------ l10n/is/files_external.po | 39 +++++++---- l10n/is/lib.po | 58 ++++++++++------ l10n/it/core.po | 6 +- l10n/it/files_external.po | 43 +++++++----- l10n/it/lib.po | 60 ++++++++++------ l10n/ja/core.po | 6 +- l10n/ja/files_external.po | 43 +++++++----- l10n/ja/lib.po | 42 ++++++++---- l10n/jv/files_external.po | 35 ++++++---- l10n/jv/lib.po | 22 +++++- l10n/ka_GE/core.po | 6 +- l10n/ka_GE/files_external.po | 41 ++++++----- l10n/ka_GE/lib.po | 58 ++++++++++------ l10n/km/files_external.po | 35 ++++++---- l10n/km/lib.po | 58 ++++++++++------ l10n/kn/files_external.po | 35 ++++++---- l10n/kn/lib.po | 58 ++++++++++------ l10n/ko/files_external.po | 41 ++++++----- l10n/ko/lib.po | 58 ++++++++++------ l10n/ku_IQ/files_external.po | 35 ++++++---- l10n/ku_IQ/lib.po | 58 ++++++++++------ l10n/lb/files_external.po | 35 ++++++---- l10n/lb/lib.po | 58 ++++++++++------ l10n/lt_LT/files_external.po | 41 ++++++----- l10n/lt_LT/lib.po | 58 ++++++++++------ l10n/lv/core.po | 6 +- l10n/lv/files_external.po | 41 ++++++----- l10n/lv/lib.po | 58 ++++++++++------ l10n/mk/files_external.po | 39 +++++++---- l10n/mk/lib.po | 58 ++++++++++------ l10n/ml/files_external.po | 35 ++++++---- l10n/ml/lib.po | 58 ++++++++++------ l10n/ml_IN/files_external.po | 35 ++++++---- l10n/ml_IN/lib.po | 58 ++++++++++------ l10n/mn/files_external.po | 35 ++++++---- l10n/mn/lib.po | 58 ++++++++++------ l10n/ms_MY/files_external.po | 35 ++++++---- l10n/ms_MY/lib.po | 58 ++++++++++------ l10n/my_MM/files_external.po | 35 ++++++---- l10n/my_MM/lib.po | 58 ++++++++++------ l10n/nb_NO/files_external.po | 41 ++++++----- l10n/nb_NO/lib.po | 58 ++++++++++------ l10n/nds/files_external.po | 35 ++++++---- l10n/nds/lib.po | 58 ++++++++++------ l10n/ne/files_external.po | 35 ++++++---- l10n/ne/lib.po | 58 ++++++++++------ l10n/nl/core.po | 10 +-- l10n/nl/files_external.po | 43 +++++++----- l10n/nl/lib.po | 60 ++++++++++------ l10n/nl/user_ldap.po | 10 +-- l10n/nn_NO/files_external.po | 35 ++++++---- l10n/nn_NO/lib.po | 58 ++++++++++------ l10n/nqo/files_external.po | 35 ++++++---- l10n/nqo/lib.po | 58 ++++++++++------ l10n/oc/files_external.po | 35 ++++++---- l10n/oc/lib.po | 58 ++++++++++------ l10n/pa/files_external.po | 35 ++++++---- l10n/pa/lib.po | 58 ++++++++++------ l10n/pl/core.po | 10 +-- l10n/pl/files_external.po | 43 +++++++----- l10n/pl/lib.po | 42 ++++++++---- l10n/pl/user_ldap.po | 10 +-- l10n/pt_BR/core.po | 10 +-- l10n/pt_BR/files_external.po | 43 +++++++----- l10n/pt_BR/lib.po | 60 ++++++++++------ l10n/pt_BR/user_ldap.po | 10 +-- l10n/pt_PT/core.po | 6 +- l10n/pt_PT/files_external.po | 41 ++++++----- l10n/pt_PT/lib.po | 42 ++++++++---- l10n/ro/files_external.po | 41 ++++++----- l10n/ro/lib.po | 58 ++++++++++------ l10n/ru/core.po | 6 +- l10n/ru/files_external.po | 41 ++++++----- l10n/ru/lib.po | 58 ++++++++++------ l10n/si_LK/files_external.po | 35 ++++++---- l10n/si_LK/lib.po | 58 ++++++++++------ l10n/sk/files_external.po | 35 ++++++---- l10n/sk/lib.po | 58 ++++++++++------ l10n/sk_SK/core.po | 6 +- l10n/sk_SK/files_external.po | 41 ++++++----- l10n/sk_SK/lib.po | 28 ++++++-- l10n/sk_SK/settings.po | 18 ++--- l10n/sl/core.po | 6 +- l10n/sl/files_external.po | 43 +++++++----- l10n/sl/lib.po | 42 ++++++++---- l10n/sq/files_external.po | 35 ++++++---- l10n/sq/lib.po | 58 ++++++++++------ l10n/sr/files_external.po | 35 ++++++---- l10n/sr/lib.po | 58 ++++++++++------ l10n/sr@latin/files_external.po | 35 ++++++---- l10n/sr@latin/lib.po | 58 ++++++++++------ l10n/su/files_external.po | 35 ++++++---- l10n/su/lib.po | 58 ++++++++++------ l10n/sv/core.po | 10 +-- l10n/sv/files_external.po | 43 +++++++----- l10n/sv/lib.po | 24 ++++++- l10n/sv/user_ldap.po | 10 +-- l10n/sw_KE/files_external.po | 35 ++++++---- l10n/sw_KE/lib.po | 58 ++++++++++------ l10n/ta_LK/files_external.po | 35 ++++++---- l10n/ta_LK/lib.po | 58 ++++++++++------ l10n/te/files_external.po | 35 ++++++---- l10n/te/lib.po | 58 ++++++++++------ l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 33 +++++---- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 10 +-- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 20 +++++- l10n/templates/private.pot | 20 +++++- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 6 +- l10n/th_TH/files_external.po | 39 +++++++---- l10n/th_TH/lib.po | 58 ++++++++++------ l10n/tr/core.po | 10 +-- l10n/tr/files_external.po | 43 +++++++----- l10n/tr/lib.po | 24 ++++++- l10n/tr/settings.po | 18 ++--- l10n/tr/user_ldap.po | 10 +-- l10n/tzm/files_external.po | 35 ++++++---- l10n/tzm/lib.po | 58 ++++++++++------ l10n/ug/files_external.po | 35 ++++++---- l10n/ug/lib.po | 58 ++++++++++------ l10n/uk/core.po | 6 +- l10n/uk/files_external.po | 41 ++++++----- l10n/uk/lib.po | 58 ++++++++++------ l10n/ur/files_external.po | 35 ++++++---- l10n/ur/lib.po | 58 ++++++++++------ l10n/ur_PK/files_external.po | 35 ++++++---- l10n/ur_PK/lib.po | 58 ++++++++++------ l10n/uz/files_external.po | 35 ++++++---- l10n/uz/lib.po | 58 ++++++++++------ l10n/vi/core.po | 6 +- l10n/vi/files_external.po | 41 ++++++----- l10n/vi/lib.po | 58 ++++++++++------ l10n/zh_CN/core.po | 6 +- l10n/zh_CN/files_external.po | 41 ++++++----- l10n/zh_CN/lib.po | 58 ++++++++++------ l10n/zh_HK/files_external.po | 35 ++++++---- l10n/zh_HK/lib.po | 58 ++++++++++------ l10n/zh_TW/core.po | 6 +- l10n/zh_TW/files_external.po | 41 ++++++----- l10n/zh_TW/lib.po | 58 ++++++++++------ lib/l10n/ast.php | 17 +++-- lib/l10n/az.php | 10 +-- settings/l10n/ast.php | 12 +++- settings/l10n/sk_SK.php | 7 ++ 365 files changed, 6474 insertions(+), 3687 deletions(-) create mode 100644 apps/files_encryption/l10n/ast.php create mode 100644 apps/files_sharing/l10n/ast.php create mode 100644 apps/files_versions/l10n/ast.php create mode 100644 apps/user_webdavauth/l10n/ast.php diff --git a/apps/files/l10n/ast.php b/apps/files/l10n/ast.php index ba7ccfad2db..3e1eb722655 100644 --- a/apps/files/l10n/ast.php +++ b/apps/files/l10n/ast.php @@ -1,9 +1,26 @@ "El nome de ficheru nun pue quedar baleru.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nome inválidu, los caráuteres \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" nun tán permitíos.", +"No file was uploaded. Unknown error" => "Nun se xubió dengún ficheru. Fallu desconocíu", +"There is no error, the file uploaded with success" => "Nun hai dengún fallu, el ficheru xubióse ensin problemes", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "El ficheru xubíu perpasa la direutiva \"MAX_FILE_SIZE\" especificada nel formulariu HTML", +"The uploaded file was only partially uploaded" => "El ficheru xubióse de mou parcial", +"No file was uploaded" => "Nun se xubió dengún ficheru", +"Missing a temporary folder" => "Falta una carpeta temporal", +"Failed to write to disk" => "Fallu al escribir al discu", +"Not enough storage available" => "Nun hai abondu espaciu disponible", +"Files" => "Ficheros", "Share" => "Compartir", +"Rename" => "Renomar", "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), +"Name" => "Nome", +"Size" => "Tamañu", +"Upload" => "Xubir", +"Save" => "Guardar", +"Cancel upload" => "Encaboxar xuba", "Download" => "Descargar", "Delete" => "Desaniciar" ); diff --git a/apps/files_encryption/l10n/ast.php b/apps/files_encryption/l10n/ast.php new file mode 100644 index 00000000000..7e08e073095 --- /dev/null +++ b/apps/files_encryption/l10n/ast.php @@ -0,0 +1,13 @@ + "Contraseña camudada esitosamente.", +"Could not change the password. Maybe the old password was not correct." => "Nun pue camudase la contraseña. Quiciabes la contraseña vieya nun fore correuta.", +"personal settings" => "axustes personales", +"Encryption" => "Cifráu", +"Enabled" => "Habilitáu", +"Disabled" => "Deshabilitáu", +"Change Password" => "Camudar conseña", +" If you don't remember your old password you can ask your administrator to recover your files." => "Si nun recuerdes la to contraseña vieya pues entrugar al to alministrador pa recuperar los tos ficheros.", +"Could not update file recovery" => "Nun pue anovase'l ficheru de recuperación" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/ast.php b/apps/files_external/l10n/ast.php index e304b890f99..9d4d891dda3 100644 --- a/apps/files_external/l10n/ast.php +++ b/apps/files_external/l10n/ast.php @@ -1,5 +1,7 @@ "Opciones", +"Groups" => "Grupos", "Delete" => "Desaniciar" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/ca.php b/apps/files_external/l10n/ca.php index 94033f0c599..50b6f55231b 100644 --- a/apps/files_external/l10n/ca.php +++ b/apps/files_external/l10n/ca.php @@ -6,9 +6,6 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Proporcioneu una clau d'aplicació i secret vàlids per a Dropbox", "Error configuring Google Drive storage" => "Error en configurar l'emmagatzemament Google Drive", "Saved" => "Desat", -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Avís: \"smbclient\" no està instal·lat. No es pot muntar la compartició CIFS/SMB. Demaneu a l'administrador del sistema que l'instal·li.", -"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." => "Avís: El suport FTP per PHP no està activat o no està instal·lat. No es pot muntar la compartició FTP. Demaneu a l'administrador del sistema que l'instal·li.", -"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Avís:El suport Curl de PHP no està activat o instal·lat. No es pot muntar ownCloud / WebDAV o GoogleDrive. Demaneu a l'administrador que l'instal·li.", "External Storage" => "Emmagatzemament extern", "Folder name" => "Nom de la carpeta", "External storage" => "Emmagatzemament extern", diff --git a/apps/files_external/l10n/cs_CZ.php b/apps/files_external/l10n/cs_CZ.php index 279030ef1a6..6a4e09aa3ab 100644 --- a/apps/files_external/l10n/cs_CZ.php +++ b/apps/files_external/l10n/cs_CZ.php @@ -6,9 +6,6 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Zadejte, prosím, platný klíč a bezpečnostní frázi aplikace Dropbox.", "Error configuring Google Drive storage" => "Chyba při nastavení úložiště Google Drive", "Saved" => "Uloženo", -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Varování: není nainstalován program \"smbclient\". Není možné připojení oddílů CIFS/SMB. Prosím požádejte svého správce systému ať jej nainstaluje.", -"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." => "Varování: podpora FTP v PHP není povolena nebo není nainstalována. Není možné připojení oddílů FTP. Prosím požádejte svého správce systému ať ji nainstaluje.", -"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Varování: podpora CURL v PHP není povolena nebo není nainstalována. Není možné připojení oddílů ownCloud, WebDAV, či GoogleDrive. Prosím požádejte svého správce systému ať ji nainstaluje.", "External Storage" => "Externí úložiště", "Folder name" => "Název složky", "External storage" => "Externí úložiště", diff --git a/apps/files_external/l10n/da.php b/apps/files_external/l10n/da.php index 0d2b5f35d0d..e0dea75303e 100644 --- a/apps/files_external/l10n/da.php +++ b/apps/files_external/l10n/da.php @@ -6,9 +6,6 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Angiv venligst en valid Dropbox app nøgle og hemmelighed", "Error configuring Google Drive storage" => "Fejl ved konfiguration af Google Drive plads", "Saved" => "Gemt", -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => " Advarsel: \"smbclient\" ikke er installeret. Montering af CIFS / SMB delinger er ikke muligt. Spørg din systemadministrator om at installere det.", -"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." => " Advarsel: FTP-understøttelse i PHP ikke er aktiveret eller installeret. Montering af FTP delinger er ikke muligt. Spørg din systemadministrator om at installere det.", -"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Advarsel: Understøttelsen for Curl i PHP er enten ikke aktiveret eller ikke installeret. Det er ikke muligt, at montere ownCloud / WebDAV eller GoogleDrive. Spørg din system administrator om at installere det. ", "External Storage" => "Ekstern opbevaring", "Folder name" => "Mappenavn", "External storage" => "Eksternt lager", diff --git a/apps/files_external/l10n/de.php b/apps/files_external/l10n/de.php index 4c3f5639656..1d5a4f626b0 100644 --- a/apps/files_external/l10n/de.php +++ b/apps/files_external/l10n/de.php @@ -6,9 +6,6 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Bitte trage einen gültigen Dropbox-App-Key mit Secret ein.", "Error configuring Google Drive storage" => "Fehler beim Einrichten von Google Drive", "Saved" => "Gespeichert", -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Warnung: \"smbclient\" ist nicht installiert. Das Einhängen von CIFS/SMB-Freigaben ist nicht möglich. Bitte Deinen System-Administrator, dies zu installieren.", -"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." => "Warnung:: Die FTP Unterstützung von PHP ist nicht aktiviert oder installiert. Bitte wende Dich an Deinen Systemadministrator.", -"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Warnung: Die Curl-Unterstützung in PHP ist nicht aktiviert oder installiert. Das Einbinden von ownCloud / WebDav der GoogleDrive-Freigaben ist nicht möglich. Bitte Deinen Systemadminstrator um die Installation. ", "External Storage" => "Externer Speicher", "Folder name" => "Ordnername", "External storage" => "Externer Speicher", diff --git a/apps/files_external/l10n/de_CH.php b/apps/files_external/l10n/de_CH.php index 33a5a4894a3..554fca8de54 100644 --- a/apps/files_external/l10n/de_CH.php +++ b/apps/files_external/l10n/de_CH.php @@ -5,9 +5,6 @@ $TRANSLATIONS = array( "Grant access" => "Zugriff gestatten", "Please provide a valid Dropbox app key and secret." => "Bitte tragen Sie einen gültigen Dropbox-App-Key mit Secret ein.", "Error configuring Google Drive storage" => "Fehler beim Einrichten von Google Drive", -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Warnung: «smbclient» ist nicht installiert. Das Einhängen von CIFS/SMB-Freigaben ist nicht möglich. Bitten Sie Ihren Systemadministrator, dies zu installieren.", -"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." => "Warnung:: Die FTP Unterstützung von PHP ist nicht aktiviert oder installiert. Bitte wenden Sie sich an Ihren Systemadministrator.", -"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Achtung: Die Curl-Unterstützung von PHP ist nicht aktiviert oder installiert. Das Laden von ownCloud / WebDAV oder GoogleDrive Freigaben ist nicht möglich. Bitte Sie Ihren Systemadministrator, das Modul zu installieren.", "External Storage" => "Externer Speicher", "Folder name" => "Ordnername", "External storage" => "Externer Speicher", diff --git a/apps/files_external/l10n/de_DE.php b/apps/files_external/l10n/de_DE.php index 63198c98176..c2534f3dd8a 100644 --- a/apps/files_external/l10n/de_DE.php +++ b/apps/files_external/l10n/de_DE.php @@ -6,9 +6,6 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Bitte tragen Sie einen gültigen Dropbox-App-Key mit Secret ein.", "Error configuring Google Drive storage" => "Fehler beim Einrichten von Google Drive", "Saved" => "Gespeichert", -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Warnung: \"smbclient\" ist nicht installiert. Das Einhängen von CIFS/SMB-Freigaben ist nicht möglich. Bitten Sie Ihren Systemadministrator, dies zu installieren.", -"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." => "Warnung:: Die FTP Unterstützung von PHP ist nicht aktiviert oder installiert. Bitte wenden Sie sich an Ihren Systemadministrator.", -"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Achtung: Die Curl-Unterstützung von PHP ist nicht aktiviert oder installiert. Das Laden von ownCloud / WebDAV oder GoogleDrive Freigaben ist nicht möglich. Bitte Sie Ihren Systemadministrator, das Modul zu installieren.", "External Storage" => "Externer Speicher", "Folder name" => "Ordnername", "External storage" => "Externer Speicher", diff --git a/apps/files_external/l10n/el.php b/apps/files_external/l10n/el.php index 43d0a79eac4..16b837e24c5 100644 --- a/apps/files_external/l10n/el.php +++ b/apps/files_external/l10n/el.php @@ -6,9 +6,6 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Παρακαλούμε δώστε έγκυρο κλειδί Dropbox και μυστικό.", "Error configuring Google Drive storage" => "Σφάλμα ρυθμίζωντας αποθήκευση Google Drive ", "Saved" => "Αποθηκεύτηκαν", -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Προσοχή: Ο \"smbclient\" δεν εγκαταστάθηκε. Δεν είναι δυνατή η προσάρτηση CIFS/SMB. Παρακαλώ ενημερώστε τον διαχειριστή συστήματος να το εγκαταστήσει.", -"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." => "Προσοχή: Η υποστήριξη FTP στην PHP δεν ενεργοποιήθηκε ή εγκαταστάθηκε. Δεν είναι δυνατή η προσάρτηση FTP. Παρακαλώ ενημερώστε τον διαχειριστή συστήματος να το εγκαταστήσει.", -"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "<Προειδοποίηση Η υποστήριξη του συστήματος Curl στο PHP δεν είναι ενεργοποιημένη ή εγκαταστημένη. Η αναπαραγωγή του ownCloud/WebDAV ή GoogleDrive δεν είναι δυνατή. Παρακαλώ ρωτήστε τον διαχειριστλη του συστήματος για την εγκατάσταση. ", "External Storage" => "Εξωτερικό Αποθηκευτικό Μέσο", "Folder name" => "Όνομα φακέλου", "External storage" => "Εξωτερική αποθήκευση", diff --git a/apps/files_external/l10n/en_GB.php b/apps/files_external/l10n/en_GB.php index f0ebb629de9..3160d514621 100644 --- a/apps/files_external/l10n/en_GB.php +++ b/apps/files_external/l10n/en_GB.php @@ -6,9 +6,6 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Please provide a valid Dropbox app key and secret.", "Error configuring Google Drive storage" => "Error configuring Google Drive storage", "Saved" => "Saved", -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it.", -"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." => "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.", -"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it.", "External Storage" => "External Storage", "Folder name" => "Folder name", "External storage" => "External storage", diff --git a/apps/files_external/l10n/es.php b/apps/files_external/l10n/es.php index 04537ecf56f..0af20d939b2 100644 --- a/apps/files_external/l10n/es.php +++ b/apps/files_external/l10n/es.php @@ -6,9 +6,6 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Por favor, proporcione un una clave válida de la app Dropbox y una clave secreta.", "Error configuring Google Drive storage" => "Error configurando el almacenamiento de Google Drive", "Saved" => "Guardado", -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Advertencia: El cliente smb (smbclient) no se encuentra instalado. El montado de archivos o ficheros CIFS/SMB no es posible. Por favor pida al administrador de su sistema que lo instale.", -"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." => "Advertencia: El soporte de FTP en PHP no se encuentra instalado. El montado de archivos o ficheros FTP no es posible. Por favor pida al administrador de su sistema que lo instale.", -"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Advertencia: El soporte de Curl en PHP no está activado ni instalado. El montado de ownCloud, WebDAV o GoogleDrive no es posible. Pida al administrador de su sistema que lo instale.", "External Storage" => "Almacenamiento externo", "Folder name" => "Nombre de la carpeta", "External storage" => "Almacenamiento externo", diff --git a/apps/files_external/l10n/es_AR.php b/apps/files_external/l10n/es_AR.php index 3518eba2479..f184dbdb7d8 100644 --- a/apps/files_external/l10n/es_AR.php +++ b/apps/files_external/l10n/es_AR.php @@ -5,9 +5,6 @@ $TRANSLATIONS = array( "Grant access" => "Permitir acceso", "Please provide a valid Dropbox app key and secret." => "Por favor, proporcioná un secreto y una contraseña válida para la aplicación Dropbox.", "Error configuring Google Drive storage" => "Error al configurar el almacenamiento de Google Drive", -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Advertencia: El cliente smb \"smbclient\" no está instalado. Montar archivos CIFS/SMB no es posible. Por favor, pedile al administrador de tu sistema que lo instale.", -"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." => "Advertencia: El soporte de FTP en PHP no está instalado. Montar archivos FTP no es posible. Por favor, pedile al administrador de tu sistema que lo instale.", -"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Advertencia: El soporte de Curl de PHP no está activo ni instalado. Montar servicios ownCloud, WebDAV y/o GoogleDrive no será posible. Pedile al administrador del sistema que lo instale.", "External Storage" => "Almacenamiento externo", "Folder name" => "Nombre de la carpeta", "External storage" => "Almacenamiento externo", diff --git a/apps/files_external/l10n/es_MX.php b/apps/files_external/l10n/es_MX.php index 4ce3eac986f..dc0aef45c4f 100644 --- a/apps/files_external/l10n/es_MX.php +++ b/apps/files_external/l10n/es_MX.php @@ -5,9 +5,6 @@ $TRANSLATIONS = array( "Grant access" => "Conceder acceso", "Please provide a valid Dropbox app key and secret." => "Por favor, proporcione un una clave válida de la app Dropbox y una clave secreta.", "Error configuring Google Drive storage" => "Error configurando el almacenamiento de Google Drive", -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Advertencia: El cliente \"smbclient\" no se encuentra instalado. El montado de carpetas CIFS/SMB no es posible. Por favor pida al administrador de su sistema que lo instale.", -"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." => "Advertencia: El soporte de FTP en PHP no se encuentra instalado. El montado de carpetas FTP no es posible. Por favor pida al administrador de su sistema que lo instale.", -"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Advertencia: El soporte de Curl en PHP no está activado ni instalado. El montado de ownCloud, WebDAV o GoogleDrive no es posible. Pida al administrador de su sistema que lo instale.", "External Storage" => "Almacenamiento externo", "Folder name" => "Nombre de la carpeta", "External storage" => "Almacenamiento externo", diff --git a/apps/files_external/l10n/et_EE.php b/apps/files_external/l10n/et_EE.php index 0ed0baa44f9..0589d9fd518 100644 --- a/apps/files_external/l10n/et_EE.php +++ b/apps/files_external/l10n/et_EE.php @@ -6,9 +6,6 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Palun sisesta korrektne Dropboxi rakenduse võti ja salasõna.", "Error configuring Google Drive storage" => "Viga Google Drive'i salvestusruumi seadistamisel", "Saved" => "Salvestatud", -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Hoiatus: \"smbclient\" pole paigaldatud. Jagatud CIFS/SMB hoidlate ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata SAMBA tugi.", -"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." => "Hoiatus: PHP-s puudub FTP tugi. Jagatud FTP hoidlate ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata FTP tugi.", -"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Hoiatus: PHP-s puudub Curl tugi. Jagatud ownCloud / WebDAV või GoogleDrive ühendamine pole võimalik. Palu oma süsteemihalduril see paigaldada.", "External Storage" => "Väline salvestuskoht", "Folder name" => "Kausta nimi", "External storage" => "Väline andmehoidla", diff --git a/apps/files_external/l10n/eu.php b/apps/files_external/l10n/eu.php index caaf96516bc..c2111a1f736 100644 --- a/apps/files_external/l10n/eu.php +++ b/apps/files_external/l10n/eu.php @@ -5,9 +5,6 @@ $TRANSLATIONS = array( "Grant access" => "Baimendu sarrera", "Please provide a valid Dropbox app key and secret." => "Mesedez eman baliozkoa den Dropbox app giltza eta sekretua", "Error configuring Google Drive storage" => "Errore bat egon da Google Drive biltegiratzea konfiguratzean", -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Abisua: \"smbclient\" ez dago instalatuta. CIFS/SMB partekatutako karpetak montatzea ez da posible. Mesedez eskatu zure sistema kudeatzaileari instalatzea.", -"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." => "Abisua: PHPren FTP modulua ez dago instalatuta edo gaitua. FTP partekatutako karpetak montatzea ez da posible. Mesedez eskatu zure sistema kudeatzaileari instalatzea.", -"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Abisua: Curl euskarri PHP modulua ez dago instalatuta edo gaitua. Ezinezko da ownCloud /WebDAV GoogleDrive-n muntatzea. Mesedez eskatu sistema kudeatzaileari instala dezan. ", "External Storage" => "Kanpoko Biltegiratzea", "Folder name" => "Karpetaren izena", "External storage" => "Kanpoko biltegiratzea", diff --git a/apps/files_external/l10n/fa.php b/apps/files_external/l10n/fa.php index 4b74443d40d..74472c54bf5 100644 --- a/apps/files_external/l10n/fa.php +++ b/apps/files_external/l10n/fa.php @@ -5,9 +5,6 @@ $TRANSLATIONS = array( "Grant access" => " مجوز اعطا دسترسی", "Please provide a valid Dropbox app key and secret." => "لطفا یک کلید و کد امنیتی صحیح دراپ باکس وارد کنید.", "Error configuring Google Drive storage" => "خطا به هنگام تنظیم فضای Google Drive", -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "خطا: \"smbclient\" نصب نشده است. نصب و راه اندازی سهام CIFS/SMB امکان پذیر نمیباشد. لطفا از مدیریت سازمان خود برای راه اندازی آن درخواست نمایید.", -"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." => "خطا: پشتیبانی FTP در PHP فعال نمی باشد یا نصب نشده است. نصب و راه اندازی از سهم های FTP امکان پذیر نمی باشد. لطفا از مدیر سیستم خود برای راه اندازی آن درخواست\nکنید.", -"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "خطا: پشتیبانی Curl فعال نمی باشد یا نصب نشده است. نصب و راه اندازی ownCloud / WebDAV یا GoogleDrive امکان پذیر نیست. لطفا از مدیر سیستم خود برای نصب آن درخواست کنید.", "External Storage" => "حافظه خارجی", "Folder name" => "نام پوشه", "External storage" => "حافظه خارجی", diff --git a/apps/files_external/l10n/fi_FI.php b/apps/files_external/l10n/fi_FI.php index 9f8dbd414fd..1924478ad23 100644 --- a/apps/files_external/l10n/fi_FI.php +++ b/apps/files_external/l10n/fi_FI.php @@ -6,9 +6,6 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Anna kelvollinen Dropbox-sovellusavain ja salainen vastaus.", "Error configuring Google Drive storage" => "Virhe Google Drive levyn asetuksia tehtäessä", "Saved" => "Tallennettu", -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Varoitus: \"smbclient\" ei ole asennettuna. CIFS-/SMB-jakojen liittäminen ei ole mahdollista. Pyydä järjestelmän ylläpitäjää asentamaan smbclient.", -"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." => "Varoitus: PHP:n FTP-tuki ei ole käytössä tai sitä ei ole asennettu. FTP-jakojen liittäminen ei ole mahdollista. Pyydä järjestelmän ylläpitäjää ottamaan FTP-tuki käyttöön.", -"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Varoitus: PHP:n Curl-tuki ei ole käytössä tai sitä ei ole lainkaan asennettu. ownCloudin, WebDAV:in tai Google Driven liittäminen ei ole mahdollista. Pyydä järjestelmän ylläpitäjää ottamaan Curl-tuki käyttöön.", "External Storage" => "Erillinen tallennusväline", "Folder name" => "Kansion nimi", "External storage" => "Ulkoinen tallennustila", diff --git a/apps/files_external/l10n/fr.php b/apps/files_external/l10n/fr.php index 1a306113f4d..80c18940096 100644 --- a/apps/files_external/l10n/fr.php +++ b/apps/files_external/l10n/fr.php @@ -6,9 +6,6 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Veuillez fournir une clé d'application (app key) ainsi qu'un mot de passe valides.", "Error configuring Google Drive storage" => "Erreur lors de la configuration du support de stockage Google Drive", "Saved" => "Sauvegarder", -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Attention : \"smbclient\" n'est pas installé. Le montage des partages CIFS/SMB n'est pas disponible. Contactez votre administrateur système pour l'installer.", -"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." => "Attention : Le support FTP de PHP n'est pas activé ou installé. Le montage des partages FTP n'est pas disponible. Contactez votre administrateur système pour l'installer.", -"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Attention : Le support de Curl n'est pas activé ou installé dans PHP. Le montage de ownCloud / WebDAV ou GoogleDrive n'est pas possible. Contactez votre administrateur système pour l'installer.", "External Storage" => "Stockage externe", "Folder name" => "Nom du dossier", "External storage" => "Stockage externe", diff --git a/apps/files_external/l10n/gl.php b/apps/files_external/l10n/gl.php index 3b5aaa53de0..1117e8590cf 100644 --- a/apps/files_external/l10n/gl.php +++ b/apps/files_external/l10n/gl.php @@ -6,9 +6,6 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Forneza unha chave correcta e segreda do Dropbox.", "Error configuring Google Drive storage" => "Produciuse un erro ao configurar o almacenamento en Google Drive", "Saved" => "Gardado", -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Aviso: «smbclient» non está instalado. Non é posibel a montaxe de comparticións CIFS/SMB. Consulte co administrador do sistema para instalalo.", -"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." => "Aviso: A compatibilidade de FTP en PHP non está activada ou instalada. Non é posibel a montaxe de comparticións FTP. Consulte co administrador do sistema para instalalo.", -"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Aviso: A compatibilidade de Curl en PHP non está activada ou instalada. Non é posíbel a montaxe de ownCloud / WebDAV ou GoogleDrive. Consulte co administrador do sistema para instalala.", "External Storage" => "Almacenamento externo", "Folder name" => "Nome do cartafol", "External storage" => "Almacenamento externo", diff --git a/apps/files_external/l10n/hu_HU.php b/apps/files_external/l10n/hu_HU.php index 9fed43e6267..39d185d5f0b 100644 --- a/apps/files_external/l10n/hu_HU.php +++ b/apps/files_external/l10n/hu_HU.php @@ -5,9 +5,6 @@ $TRANSLATIONS = array( "Grant access" => "Megadom a hozzáférést", "Please provide a valid Dropbox app key and secret." => "Adjon meg egy érvényes Dropbox app key-t és secretet!", "Error configuring Google Drive storage" => "A Google Drive tárolót nem sikerült beállítani", -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Figyelem: az \"smbclient\" nincs telepítve a kiszolgálón. Emiatt nem lehet CIFS/SMB megosztásokat fölcsatolni. Kérje meg a rendszergazdát, hogy telepítse a szükséges programot.", -"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." => "Figyelem: a PHP FTP támogatása vagy nincs telepítve, vagy nincs engedélyezve a kiszolgálón. Emiatt nem lehetséges FTP-tárolókat fölcsatolni. Kérje meg a rendszergazdát, hogy telepítse a szükséges programot.", -"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Figyelmeztetés: A PHP-ben nincs telepítve vagy engedélyezve a Curl támogatás. Nem lehetséges ownCloud / WebDAV ill. GoogleDrive tárolók becsatolása. Kérje meg a rendszergazdát, hogy telepítse a szükséges programot!", "External Storage" => "Külső tárolási szolgáltatások becsatolása", "Folder name" => "Mappanév", "External storage" => "Külső tárolók", diff --git a/apps/files_external/l10n/id.php b/apps/files_external/l10n/id.php index 94fa89077a8..8ab5069539f 100644 --- a/apps/files_external/l10n/id.php +++ b/apps/files_external/l10n/id.php @@ -5,8 +5,6 @@ $TRANSLATIONS = array( "Grant access" => "Berikan hak akses", "Please provide a valid Dropbox app key and secret." => "Masukkan kunci dan sandi aplikasi Dropbox yang benar.", "Error configuring Google Drive storage" => "Kesalahan dalam mengkonfigurasi penyimpanan Google Drive", -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Peringatan: \"smbclient\" tidak terpasang. Mount direktori CIFS/SMB tidak dapat dilakukan. Silakan minta administrator sistem untuk memasangnya.", -"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." => "Peringatan: Dukungan FTP di PHP tidak aktif atau tidak terpasang. Mount direktori FTP tidak dapat dilakukan. Silakan minta administrator sistem untuk memasangnya.", "External Storage" => "Penyimpanan Eksternal", "Folder name" => "Nama folder", "External storage" => "Penyimpanan eksternal", diff --git a/apps/files_external/l10n/is.php b/apps/files_external/l10n/is.php index 5a350bad4a0..21a215807ab 100644 --- a/apps/files_external/l10n/is.php +++ b/apps/files_external/l10n/is.php @@ -5,8 +5,6 @@ $TRANSLATIONS = array( "Grant access" => "Veita aðgengi", "Please provide a valid Dropbox app key and secret." => "Gefðu upp virkan Dropbox lykil og leynikóða", "Error configuring Google Drive storage" => "Villa kom upp við að setja upp Google Drive gagnasvæði", -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Aðvörun: \"smbclient\" er ekki uppsettur. Uppsetning á CIFS/SMB gagnasvæðum er ekki möguleg. Hafðu samband við kerfisstjóra til að fá hann uppsettan.", -"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." => "Aðvörun: FTP stuðningur í PHP er ekki virkur. Uppsetning á FTP gagnasvæðum er ekki möguleg. Hafðu samband við kerfisstjóra til að fá hann uppsettan.", "External Storage" => "Ytri gagnageymsla", "Folder name" => "Nafn möppu", "Configuration" => "Uppsetning", diff --git a/apps/files_external/l10n/it.php b/apps/files_external/l10n/it.php index ea3e5738189..b68bff2474e 100644 --- a/apps/files_external/l10n/it.php +++ b/apps/files_external/l10n/it.php @@ -6,9 +6,6 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Fornisci chiave di applicazione e segreto di Dropbox validi.", "Error configuring Google Drive storage" => "Errore durante la configurazione dell'archivio Google Drive", "Saved" => "Salvato", -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Avviso: \"smbclient\" non è installato. Impossibile montare condivisioni CIFS/SMB. Chiedi all'amministratore di sistema di installarlo.", -"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." => "Avviso: il supporto FTP di PHP non è abilitato o non è installato. Impossibile montare condivisioni FTP. Chiedi all'amministratore di sistema di installarlo.", -"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Avviso: il supporto Curl di PHP non è abilitato o non è installato. Impossibile montare condivisioni ownCloud / WebDAV o GoogleDrive. Chiedi all'amministratore di sistema di installarlo.", "External Storage" => "Archiviazione esterna", "Folder name" => "Nome della cartella", "External storage" => "Archiviazione esterna", diff --git a/apps/files_external/l10n/ja.php b/apps/files_external/l10n/ja.php index 41deb100e57..52d66043e19 100644 --- a/apps/files_external/l10n/ja.php +++ b/apps/files_external/l10n/ja.php @@ -6,9 +6,6 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "有効なDropboxアプリのキーとパスワードを入力してください。", "Error configuring Google Drive storage" => "Googleドライブストレージの設定エラー", "Saved" => "保存されました", -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "警告: \"smbclient\" がインストールされていません。CIFS/SMB共有のマウントはできません。システム管理者にインストールを依頼してください。", -"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." => "警告: PHPのFTPサポートが無効またはインストールされていません。FTP共有のマウントはできません。システム管理者にインストールを依頼してください。", -"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "警告: PHPのCurlサポートが無効またはインストールされていません。ownCloud / WebDAVまたはGoogleDriveのマウントはできません。システム管理者にインストールを依頼してください。", "External Storage" => "外部ストレージ", "Folder name" => "フォルダー名", "External storage" => "外部ストレージ", diff --git a/apps/files_external/l10n/ka_GE.php b/apps/files_external/l10n/ka_GE.php index 7412bb145b6..d68dae88c02 100644 --- a/apps/files_external/l10n/ka_GE.php +++ b/apps/files_external/l10n/ka_GE.php @@ -5,9 +5,6 @@ $TRANSLATIONS = array( "Grant access" => "დაშვების მინიჭება", "Please provide a valid Dropbox app key and secret." => "გთხოვთ მიუთითოთ Dropbox აპლიკაციის გასაღები და კოდი.", "Error configuring Google Drive storage" => "შეცდომა Google Drive საცავის კონფიგურირების დროს", -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "გაფრთხილება: \"smbclient\" არ არის ინსტალირებული. CIFS/SMB ზიარების მონტირება შეუძლებელია. გთხოვთ თხოვოთ თქვენს სისტემურ ადმინისტრატორებს დააინსტალიროს ის.", -"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." => "გაფრთხილება: FTP მხარდაჭერა არ არის აქტიური ან დაინსტალირებული. FTP ზიარის მონტირება შეუძლებელია. გთხოვთ თხოვოთ თქვენს სისტემურ ადმინისტრატორებს დააინსტალიროს ის.", -"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "გაფრთხილება:PHP–ის Curl მხარდაჭერა არ არის ჩართული ან ინსტალირებული. ownCloud / WebDAV ან GoogleDrive–ის მონტირება შეუძლებელია. თხოვეთ თქვენს ადმინისტრატორს დააინსტალიროს ის.", "External Storage" => "ექსტერნალ საცავი", "Folder name" => "ფოლდერის სახელი", "External storage" => "ექსტერნალ საცავი", diff --git a/apps/files_external/l10n/ko.php b/apps/files_external/l10n/ko.php index 87157e1f885..371cba3e12d 100644 --- a/apps/files_external/l10n/ko.php +++ b/apps/files_external/l10n/ko.php @@ -5,9 +5,6 @@ $TRANSLATIONS = array( "Grant access" => "접근 권한 부여", "Please provide a valid Dropbox app key and secret." => "올바른 Dropbox 앱 키와 암호를 입력하십시오.", "Error configuring Google Drive storage" => "Google 드라이브 저장소 설정 오류", -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "경고: \"smbclient\"가 설치되지 않았습니다. CIFS/SMB 공유 자원에 연결할 수 없습니다. 시스템 관리자에게 설치를 요청하십시오.", -"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." => "경고: PHP FTP 지원이 비활성화되어 있거나 설치되지 않았습니다. FTP 공유를 마운트할 수 없습니다. 시스템 관리자에게 설치를 요청하십시오.", -"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "경고: PHP Curl 지원이 비활성화되어 있거나 설치되지 않았습니다. 다른 ownCloud, WebDAV, Google 드라이브 공유를 마운트할 수 없습니다. 시스템 관리자에게 설치를 요청하십시오.", "External Storage" => "외부 저장소", "Folder name" => "폴더 이름", "External storage" => "외부 저장소", diff --git a/apps/files_external/l10n/lt_LT.php b/apps/files_external/l10n/lt_LT.php index abb43ab8adc..fdf1ee70136 100644 --- a/apps/files_external/l10n/lt_LT.php +++ b/apps/files_external/l10n/lt_LT.php @@ -5,9 +5,6 @@ $TRANSLATIONS = array( "Grant access" => "Suteikti priėjimą", "Please provide a valid Dropbox app key and secret." => "Prašome įvesti teisingus Dropbox \"app key\" ir \"secret\".", "Error configuring Google Drive storage" => "Klaida nustatinėjant Google Drive talpyklą", -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Įspėjimas: \"smbclient\" nėra įdiegtas. CIFS/SMB dalinimasis nėra galimas. Prašome susisiekti su sistemos administratoriumi kad būtų įdiegtas \"smbclient\"", -"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." => "Įspėjimas: FTP palaikymas PHP sistemoje nėra įjungtas arba nėra įdiegtas. FTP dalinimosi įjungimas nėra galimas. Prašome susisiekti su sistemos administratoriumi kad būtų įdiegtas FTP palaikymas. ", -"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Įspėjimas: \"Curl\" palaikymas PHP terpėje nėra įjungtas arba įdiegtas. ownCloud/WebDAV ar GoogleDrive įjungimas nebus įmanomas. Prašome susisiekti su sistemos administratoriumi kad būtų įdiegtas arba įjungtas \"Curl\" palaikymas.", "External Storage" => "Išorinės saugyklos", "Folder name" => "Katalogo pavadinimas", "External storage" => "Išorinė saugykla", diff --git a/apps/files_external/l10n/lv.php b/apps/files_external/l10n/lv.php index 1512ff0dc2f..e1037b50328 100644 --- a/apps/files_external/l10n/lv.php +++ b/apps/files_external/l10n/lv.php @@ -5,9 +5,6 @@ $TRANSLATIONS = array( "Grant access" => "Piešķirt pieeju", "Please provide a valid Dropbox app key and secret." => "Lūdzu, norādiet derīgu Dropbox lietotnes atslēgu un noslēpumu.", "Error configuring Google Drive storage" => "Kļūda, konfigurējot Google Drive krātuvi", -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Brīdinājums: nav uzinstalēts “smbclient”. Nevar montēt CIFS/SMB koplietojumus. Lūdzu, vaicājiet savam sistēmas administratoram, lai to uzinstalē.", -"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." => "Brīdinājums: uz PHP nav aktivēts vai instalēts FTP atbalsts. Nevar montēt FTP koplietojumus. Lūdzu, vaicājiet savam sistēmas administratoram, lai to uzinstalē.", -"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Brīdinājums: PHP Curl atbalsts nav instalēts. OwnCloud / WebDAV vai GoogleDrive montēšana nav iespējama. Lūdziet sistēmas administratoram lai tas tiek uzstādīts.", "External Storage" => "Ārējā krātuve", "Folder name" => "Mapes nosaukums", "External storage" => "Ārējā krātuve", diff --git a/apps/files_external/l10n/mk.php b/apps/files_external/l10n/mk.php index ddce2d5c178..507c0a74559 100644 --- a/apps/files_external/l10n/mk.php +++ b/apps/files_external/l10n/mk.php @@ -5,8 +5,6 @@ $TRANSLATIONS = array( "Grant access" => "Дозволи пристап", "Please provide a valid Dropbox app key and secret." => "Ве молам доставите валиден Dropbox клуч и тајна лозинка.", "Error configuring Google Drive storage" => "Грешка при конфигурација на Google Drive", -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Внимание: \"smbclient\" не е инсталиран. Не е можно монтирање на CIFS/SMB дискови. Замолете го Вашиот систем администратор да го инсталира.", -"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." => "Внимание: Не е овозможена или инсталирани FTP подршка во PHP. Не е можно монтирање на FTP дискови. Замолете го Вашиот систем администратор да го инсталира.", "External Storage" => "Надворешно складиште", "Folder name" => "Име на папка", "Configuration" => "Конфигурација", diff --git a/apps/files_external/l10n/nb_NO.php b/apps/files_external/l10n/nb_NO.php index d8149520ea7..95c9b47f412 100644 --- a/apps/files_external/l10n/nb_NO.php +++ b/apps/files_external/l10n/nb_NO.php @@ -6,9 +6,6 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Vær vennlig å oppgi gyldig Dropbox appnøkkel og hemmelighet.", "Error configuring Google Drive storage" => "Feil med konfigurering av Google Drive", "Saved" => "Lagret", -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Advarsel: \"smbclient\" er ikke installert. Kan ikke montere CIFS/SMB mapper. Ta kontakt med din systemadministrator for å installere det.", -"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." => "Advarsel: FTP støtte i PHP er ikke slått på eller innstallert. Kan ikke montere FTP mapper. Ta kontakt med din systemadministrator for å innstallere det.", -"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Advarsel: Curl støtte i PHP er ikke aktivert eller innstallert. Kan ikke montere owncloud/WebDAV eller Googledrive. Ta kontakt med din systemadministrator for å innstallerer det.", "External Storage" => "Ekstern lagring", "Folder name" => "Mappenavn", "External storage" => "Ekstern lagringsplass", diff --git a/apps/files_external/l10n/nl.php b/apps/files_external/l10n/nl.php index dceccc7ee53..0226e454f9a 100644 --- a/apps/files_external/l10n/nl.php +++ b/apps/files_external/l10n/nl.php @@ -6,9 +6,6 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Geef een geldige Dropbox key en secret.", "Error configuring Google Drive storage" => "Fout tijdens het configureren van Google Drive opslag", "Saved" => "Bewaard", -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Waarschuwing: \"smbclient\" is niet geïnstalleerd. Mounten van CIFS/SMB shares is niet mogelijk. Vraag uw beheerder om smbclient te installeren.", -"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." => "Waarschuwing: FTP ondersteuning in PHP is niet geactiveerd of geïnstalleerd. Mounten van FTP shares is niet mogelijk. Vraag uw beheerder FTP ondersteuning te installeren.", -"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Waarschuwing: Curl ondersteuning in PHP is niet geactiveerd of geïnstalleerd. Mounten van ownCloud / WebDAV of GoogleDrive is niet mogelijk. Vraag uw systeembeheerder dit te installeren.", "External Storage" => "Externe opslag", "Folder name" => "Mapnaam", "External storage" => "Externe opslag", diff --git a/apps/files_external/l10n/pl.php b/apps/files_external/l10n/pl.php index 4a3dbaf206a..801a72c9bf9 100644 --- a/apps/files_external/l10n/pl.php +++ b/apps/files_external/l10n/pl.php @@ -6,9 +6,6 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Proszę podać prawidłowy klucz aplikacji Dropbox i klucz sekretny.", "Error configuring Google Drive storage" => "Wystąpił błąd podczas konfigurowania zasobu Google Drive", "Saved" => "Zapisano", -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Ostrzeżenie: \"smbclient\" nie jest zainstalowany. Zamontowanie katalogów CIFS/SMB nie jest możliwe. Skontaktuj sie z administratorem w celu zainstalowania.", -"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." => "Ostrzeżenie: Wsparcie dla FTP w PHP nie jest zainstalowane lub włączone. Skontaktuj sie z administratorem w celu zainstalowania lub włączenia go.", -"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Ostrzeżenie: Wsparcie dla Curl w PHP nie jest zainstalowane lub włączone. Montowanie WebDAV lub GoogleDrive nie będzie możliwe. Skontaktuj się z administratorem w celu zainstalowania lub włączenia tej opcji.", "External Storage" => "Zewnętrzna zasoby dyskowe", "Folder name" => "Nazwa folderu", "External storage" => "Zewnętrzne zasoby dyskowe", diff --git a/apps/files_external/l10n/pt_BR.php b/apps/files_external/l10n/pt_BR.php index 5638fd1d703..121c45f45d6 100644 --- a/apps/files_external/l10n/pt_BR.php +++ b/apps/files_external/l10n/pt_BR.php @@ -6,9 +6,6 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Por favor forneça um app key e secret válido do Dropbox", "Error configuring Google Drive storage" => "Erro ao configurar armazenamento do Google Drive", "Saved" => "Salvo", -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Aviso: \"smbclient\" não está instalado. Impossível montar compartilhamentos de CIFS/SMB. Por favor, peça ao seu administrador do sistema para instalá-lo.", -"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." => "Aviso: O suporte para FTP do PHP não está ativado ou instalado. Impossível montar compartilhamentos FTP. Por favor, peça ao seu administrador do sistema para instalá-lo.", -"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => " Aviso: O suport a Curl em PHP não está habilitado ou instalado. A montagem do ownCloud / WebDAV ou GoogleDrive não é possível. Por favor, solicite ao seu administrador do sistema instalá-lo.", "External Storage" => "Armazenamento Externo", "Folder name" => "Nome da pasta", "External storage" => "Armazenamento Externo", diff --git a/apps/files_external/l10n/pt_PT.php b/apps/files_external/l10n/pt_PT.php index 5bd2d0d43b6..d0b70006ea1 100644 --- a/apps/files_external/l10n/pt_PT.php +++ b/apps/files_external/l10n/pt_PT.php @@ -6,9 +6,6 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Por favor forneça uma \"app key\" e \"secret\" do Dropbox válidas.", "Error configuring Google Drive storage" => "Erro ao configurar o armazenamento do Google Drive", "Saved" => "Guardado", -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Atenção: O cliente \"smbclient\" não está instalado. Não é possível montar as partilhas CIFS/SMB . Peça ao seu administrador para instalar.", -"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." => "Aviso: O suporte FTP no PHP não está activate ou instalado. Não é possível montar as partilhas FTP. Peça ao seu administrador para instalar.", -"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Atenção:
      O suporte PHP para o Curl não está activado ou instalado. A montagem do ownCloud/WebDav ou GoolgeDriver não é possível. Por favor contacte o administrador para o instalar.", "External Storage" => "Armazenamento Externo", "Folder name" => "Nome da pasta", "External storage" => "Armazenamento Externo", diff --git a/apps/files_external/l10n/ro.php b/apps/files_external/l10n/ro.php index e6cdd8450ec..3fc56c67d33 100644 --- a/apps/files_external/l10n/ro.php +++ b/apps/files_external/l10n/ro.php @@ -6,9 +6,6 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Prezintă te rog o cheie de Dropbox validă și parola", "Error configuring Google Drive storage" => "Eroare la configurarea mediului de stocare Google Drive", "Saved" => "Salvat", -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Atenție: \"smbclient\" nu este instalat. Montarea mediilor CIFS/SMB partajate nu este posibilă. Solicită administratorului sistemului tău să îl instaleaze.", -"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." => "Atenție: suportul pentru FTP în PHP nu este activat sau instalat. Montarea mediilor FPT partajate nu este posibilă. Solicită administratorului sistemului tău să îl instaleze.", -"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Atentie: Suportul Curl nu este pornit / instalat in configuratia PHP! Montarea ownCloud / WebDAV / GoogleDrive nu este posibila! Intrebati administratorul sistemului despre aceasta problema!", "External Storage" => "Stocare externă", "Folder name" => "Denumire director", "External storage" => "Stocare externă", diff --git a/apps/files_external/l10n/ru.php b/apps/files_external/l10n/ru.php index d4695c867af..f282f3969e5 100644 --- a/apps/files_external/l10n/ru.php +++ b/apps/files_external/l10n/ru.php @@ -6,9 +6,6 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Пожалуйста, предоставьте действующий ключ Dropbox и пароль.", "Error configuring Google Drive storage" => "Ошибка при настройке хранилища Google Drive", "Saved" => "Сохранено", -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Внимание: \"smbclient\" не установлен. Подключение по CIFS/SMB невозможно. Пожалуйста, обратитесь к системному администратору, чтобы установить его.", -"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." => "Внимание: Поддержка FTP не включена в PHP. Подключение по FTP невозможно. Пожалуйста, обратитесь к системному администратору, чтобы включить.", -"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Внимание: Поддержка Curl в PHP не включена или не установлена. Подключение ownCloud / WebDAV или GoogleDrive невозможно. Попросите вашего системного администратора установить его.", "External Storage" => "Внешний носитель", "Folder name" => "Имя папки", "External storage" => "Внешний носитель данных", diff --git a/apps/files_external/l10n/sk_SK.php b/apps/files_external/l10n/sk_SK.php index 1f1a150b8a1..de32fb5ffb1 100644 --- a/apps/files_external/l10n/sk_SK.php +++ b/apps/files_external/l10n/sk_SK.php @@ -6,9 +6,6 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Zadajte platný kľúč aplikácie a heslo Dropbox", "Error configuring Google Drive storage" => "Chyba pri konfigurácii úložiska Google drive", "Saved" => "Uložené", -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Upozornenie: \"smbclient\" nie je nainštalovaný. Nie je možné pripojenie oddielov CIFS/SMB. Požiadajte administrátora systému, nech ho nainštaluje.", -"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." => "Upozornenie: Podpora FTP v PHP nie je povolená alebo nainštalovaná. Nie je možné pripojenie oddielov FTP. Požiadajte administrátora systému, nech ho nainštaluje.", -"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Varovanie: nie je nainštalovaná, alebo povolená, podpora Curl v PHP. Nie je možné pripojenie oddielov ownCloud, WebDAV, či GoogleDrive. Prosím požiadajte svojho administrátora systému, nech ju nainštaluje.", "External Storage" => "Externé úložisko", "Folder name" => "Názov priečinka", "External storage" => "Externé úložisko", diff --git a/apps/files_external/l10n/sl.php b/apps/files_external/l10n/sl.php index d02b8f499d6..bb34494a5d7 100644 --- a/apps/files_external/l10n/sl.php +++ b/apps/files_external/l10n/sl.php @@ -6,9 +6,6 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Vpisati je treba veljaven ključ programa in kodo za Dropbox", "Error configuring Google Drive storage" => "Napaka nastavljanja shrambe Google Drive", "Saved" => "Shranjeno", -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Opozorilo: paket \"smbclient\" ni nameščen. Priklapljanje pogonov CIFS/SMB ne bo mogoče.", -"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." => "Opozorilo: podpora FTP v PHP ni omogočena ali pa ni nameščena. Priklapljanje pogonov FTP zato ne bo mogoče.", -"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Opozorilo: podpora za Curl v PHP ni omogočena ali pa ni nameščena. Priklapljanje točke ownCloud / WebDAV ali GoogleDrive zato ne bo mogoče. Zahtevane pakete je treba pred uporabo namestiti.", "External Storage" => "Zunanja podatkovna shramba", "Folder name" => "Ime mape", "External storage" => "Zunanja shramba", diff --git a/apps/files_external/l10n/sv.php b/apps/files_external/l10n/sv.php index e2a4a0a8063..ad5e6ad050c 100644 --- a/apps/files_external/l10n/sv.php +++ b/apps/files_external/l10n/sv.php @@ -6,9 +6,6 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Ange en giltig Dropbox nyckel och hemlighet.", "Error configuring Google Drive storage" => "Fel vid konfigurering av Google Drive", "Saved" => "Sparad", -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Varning: \"smb-klienten\" är inte installerad. Montering av CIFS/SMB delningar är inte möjligt. Kontakta din systemadministratör för att få den installerad.", -"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." => "Varning: Stöd för FTP i PHP är inte aktiverat eller installerat. Montering av FTP-delningar är inte möjligt. Kontakta din systemadministratör för att få det installerat.", -"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Varning: Curl-stöd i PHP är inte aktiverat eller installerat. Montering av ownCloud / WebDAV eller GoogleDrive är inte möjligt. Vänligen be din administratör att installera det.", "External Storage" => "Extern lagring", "Folder name" => "Mappnamn", "External storage" => "Extern lagring", diff --git a/apps/files_external/l10n/th_TH.php b/apps/files_external/l10n/th_TH.php index 0a5a419c5e5..e3653eb41f7 100644 --- a/apps/files_external/l10n/th_TH.php +++ b/apps/files_external/l10n/th_TH.php @@ -5,8 +5,6 @@ $TRANSLATIONS = array( "Grant access" => "อนุญาตให้เข้าถึงได้", "Please provide a valid Dropbox app key and secret." => "กรุณากรอกรหัส app key ของ Dropbox และรหัสลับ", "Error configuring Google Drive storage" => "เกิดข้อผิดพลาดในการกำหนดค่าการจัดเก็บข้อมูลในพื้นที่ของ Google Drive", -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "คำเตือน: \"smbclient\" ยังไม่ได้ถูกติดตั้ง. การชี้ CIFS/SMB เพื่อแชร์ข้อมูลไม่สามารถกระทำได้ กรุณาสอบถามข้อมูลเพิ่มเติมจากผู้ดูแลระบบเพื่อติดตั้ง.", -"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." => "คำเตือน: การสนับสนุนการใช้งาน FTP ในภาษา PHP ยังไม่ได้ถูกเปิดใช้งานหรือถูกติดตั้ง. การชี้ FTP เพื่อแชร์ข้อมูลไม่สามารถดำเนินการได้ กรุณาสอบถามข้อมูลเพิ่มเติมจากผู้ดูแลระบบเพื่อติดตั้ง", "External Storage" => "พื้นทีจัดเก็บข้อมูลจากภายนอก", "Folder name" => "ชื่อโฟลเดอร์", "Configuration" => "การกำหนดค่า", diff --git a/apps/files_external/l10n/tr.php b/apps/files_external/l10n/tr.php index 426f652e3a6..07bf1a2354c 100644 --- a/apps/files_external/l10n/tr.php +++ b/apps/files_external/l10n/tr.php @@ -6,9 +6,6 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Lütfen Dropbox app key ve secret temin ediniz", "Error configuring Google Drive storage" => "Google Drive depo yapılandırma hatası", "Saved" => "Kaydedildi", -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Uyarı: \"smbclient\" kurulu değil. CIFS/SMB paylaşımlarını bağlama işlemi mümkün olmadı. Lütfen kurulumu için sistem yöneticinize danışın.", -"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." => "Uyarı: PHP içerisinde FTP desteği etkin veya yüklü değil. FTP paylaşımlarını bağlama işlemi mümkün olmadı. Lütfen kurulumu için sistem yöneticinize danışın.", -"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Uyarı: PHP içerisinde Curl desteği etkin veya yüklü değil. ownCloud / WebDAV veya GoogleDrive bağlama işlemi mümkün olmadı. Lütfen kurulumu için sistem yöneticinizde danışın.", "External Storage" => "Harici Depolama", "Folder name" => "Klasör ismi", "External storage" => "Harici depolama", diff --git a/apps/files_external/l10n/uk.php b/apps/files_external/l10n/uk.php index 2f5767c9a1d..533eba07eb1 100644 --- a/apps/files_external/l10n/uk.php +++ b/apps/files_external/l10n/uk.php @@ -5,9 +5,6 @@ $TRANSLATIONS = array( "Grant access" => "Дозволити доступ", "Please provide a valid Dropbox app key and secret." => "Будь ласка, надайте дійсний ключ та пароль Dropbox.", "Error configuring Google Drive storage" => "Помилка при налаштуванні сховища Google Drive", -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Попередження: Клієнт \"smbclient\" не встановлено. Під'єднанатися до CIFS/SMB тек неможливо. Попрохайте системного адміністратора встановити його.", -"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." => "Попередження: Підтримка FTP в PHP не увімкнута чи не встановлена. Під'єднанатися до FTP тек неможливо. Попрохайте системного адміністратора встановити її.", -"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Попередження: Підтримка CURL в PHP не увімкнута чи не встановлена. Під'єднанатися OwnCloud / WebDav або Google Drive неможливе. Попрохайте системного адміністратора встановити її.", "External Storage" => "Зовнішні сховища", "Folder name" => "Ім'я теки", "External storage" => "Зовнішнє сховище", diff --git a/apps/files_external/l10n/vi.php b/apps/files_external/l10n/vi.php index 370bd71c31c..787fc82832e 100644 --- a/apps/files_external/l10n/vi.php +++ b/apps/files_external/l10n/vi.php @@ -5,9 +5,6 @@ $TRANSLATIONS = array( "Grant access" => "Cấp quyền truy cập", "Please provide a valid Dropbox app key and secret." => "Xin vui lòng cung cấp một ứng dụng Dropbox hợp lệ và mã bí mật.", "Error configuring Google Drive storage" => "Lỗi cấu hình lưu trữ Google Drive", -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Cảnh báo: \"smbclient\" chưa được cài đặt. Mount CIFS/SMB shares là không thể thực hiện được. Hãy hỏi người quản trị hệ thống để cài đặt nó.", -"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." => "Cảnh báo: FTP trong PHP chưa được cài đặt hoặc chưa được mở. Mount FTP shares là không thể. Xin hãy yêu cầu quản trị hệ thống của bạn cài đặt nó.", -"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Cảnh báo: Tính năng Curl trong PHP chưa được kích hoạt hoặc cài đặt. Việc gắn kết ownCloud / WebDAV hay GoogleDrive không thực hiện được. Vui lòng liên hệ người quản trị để cài đặt nó.", "External Storage" => "Lưu trữ ngoài", "Folder name" => "Tên thư mục", "External storage" => "Lưu trữ ngoài", diff --git a/apps/files_external/l10n/zh_CN.php b/apps/files_external/l10n/zh_CN.php index 3051df04d93..40d5158bf5c 100644 --- a/apps/files_external/l10n/zh_CN.php +++ b/apps/files_external/l10n/zh_CN.php @@ -5,9 +5,6 @@ $TRANSLATIONS = array( "Grant access" => "授权", "Please provide a valid Dropbox app key and secret." => "请提供有效的Dropbox应用key和secret", "Error configuring Google Drive storage" => "配置Google Drive存储时出错", -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "警告:“smbclient” 尚未安装。CIFS/SMB 分享挂载无法实现。请咨询系统管理员进行安装。", -"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." => "警告:PHP中尚未启用或安装FTP。FTP 分享挂载无法实现。请咨询系统管理员进行安装。", -"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "警告: PHP中未启用或未安装Curl支持。ownCloud / WebDAV 或 GoogleDrive 不能挂载。请请求您的系统管理员安装该它。", "External Storage" => "外部存储", "Folder name" => "目录名称", "External storage" => "外部存储", diff --git a/apps/files_external/l10n/zh_TW.php b/apps/files_external/l10n/zh_TW.php index ae7d84b0ee3..ac480e405fb 100644 --- a/apps/files_external/l10n/zh_TW.php +++ b/apps/files_external/l10n/zh_TW.php @@ -5,9 +5,6 @@ $TRANSLATIONS = array( "Grant access" => "允許存取", "Please provide a valid Dropbox app key and secret." => "請提供有效的 Dropbox app key 和 app secret 。", "Error configuring Google Drive storage" => "設定 Google Drive 儲存時發生錯誤", -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "警告:未安裝 \"smbclient\" ,因此無法掛載 CIFS/SMB 分享,請洽您的系統管理員將其安裝。", -"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." => "警告:PHP 並未啓用 FTP 的支援,因此無法掛載 FTP 分享,請洽您的系統管理員將其安裝並啓用。", -"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "警告:PHP 並未啓用 Curl 的支援,因此無法掛載 ownCloud/WebDAV 或 Google Drive 分享,請洽您的系統管理員將其安裝並啓用。", "External Storage" => "外部儲存", "Folder name" => "資料夾名稱", "External storage" => "外部儲存", diff --git a/apps/files_sharing/l10n/ast.php b/apps/files_sharing/l10n/ast.php new file mode 100644 index 00000000000..02a2f6fb628 --- /dev/null +++ b/apps/files_sharing/l10n/ast.php @@ -0,0 +1,6 @@ + "Compartíu por {owner}", +"Password" => "Contraseña" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/ast.php b/apps/files_trashbin/l10n/ast.php index e304b890f99..d2cfafd679c 100644 --- a/apps/files_trashbin/l10n/ast.php +++ b/apps/files_trashbin/l10n/ast.php @@ -1,5 +1,7 @@ "Nome", +"Restore" => "Restaurar", "Delete" => "Desaniciar" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_versions/l10n/ast.php b/apps/files_versions/l10n/ast.php new file mode 100644 index 00000000000..4869d70b54d --- /dev/null +++ b/apps/files_versions/l10n/ast.php @@ -0,0 +1,8 @@ + "Versiones", +"More versions..." => "Más versiones...", +"No other versions available" => "Nun hai otres versiones disponibles", +"Restore" => "Restaurar" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/ast.php b/apps/user_ldap/l10n/ast.php index 9cd0d7e7c6d..e8e2d779d19 100644 --- a/apps/user_ldap/l10n/ast.php +++ b/apps/user_ldap/l10n/ast.php @@ -2,6 +2,9 @@ $TRANSLATIONS = array( "Deletion failed" => "Falló'l borráu", "_%s group found_::_%s groups found_" => array("",""), -"_%s user found_::_%s users found_" => array("","") +"_%s user found_::_%s users found_" => array("",""), +"Save" => "Guardar", +"Password" => "Contraseña", +"Continue" => "Continuar" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/en_GB.php b/apps/user_ldap/l10n/en_GB.php index 4421a8035ca..b87c99c135c 100644 --- a/apps/user_ldap/l10n/en_GB.php +++ b/apps/user_ldap/l10n/en_GB.php @@ -90,6 +90,8 @@ $TRANSLATIONS = array( "Group-Member association" => "Group-Member association", "Nested Groups" => "Nested Groups", "When switched on, groups that contain groups are supported. (Only works if the group member attribute contains DNs.)" => "When switched on, groups that contain groups are supported. (Only works if the group member attribute contains DNs.)", +"Paging chunksize" => "Paging chunksize", +"Chunksize used for paged LDAP searches that may return bulky results like user or group enumeration. (Setting it 0 disables paged LDAP searches in those situations.)" => "Chunksize used for paged LDAP searches that may return bulky results like user or group enumeration. (Setting it 0 disables paged LDAP searches in those situations.)", "Special Attributes" => "Special Attributes", "Quota Field" => "Quota Field", "Quota Default" => "Quota Default", diff --git a/apps/user_ldap/l10n/gl.php b/apps/user_ldap/l10n/gl.php index 802c6d0e435..c3524453899 100644 --- a/apps/user_ldap/l10n/gl.php +++ b/apps/user_ldap/l10n/gl.php @@ -90,6 +90,8 @@ $TRANSLATIONS = array( "Group-Member association" => "Asociación de grupos e membros", "Nested Groups" => "Grupos aniñados", "When switched on, groups that contain groups are supported. (Only works if the group member attribute contains DNs.)" => "Se está activado, admítense grupos que conteñen grupos. (Só funciona se o atributo de membro de grupo conten os DN.)", +"Paging chunksize" => "Tamaño dos fragmentos paxinados", +"Chunksize used for paged LDAP searches that may return bulky results like user or group enumeration. (Setting it 0 disables paged LDAP searches in those situations.)" => "Tamaño dos fragmentos utilizados para as buscas LDAP paxinadas, que poden devolver resultados voluminosos como usuario ou enumeración de grupo. (Se se establece a 0, desactívanse as buscas LDAP paxinadas nesas situacións.)", "Special Attributes" => "Atributos especiais", "Quota Field" => "Campo de cota", "Quota Default" => "Cota predeterminada", diff --git a/apps/user_ldap/l10n/nl.php b/apps/user_ldap/l10n/nl.php index 55e4e07033a..d1ffd4f00d4 100644 --- a/apps/user_ldap/l10n/nl.php +++ b/apps/user_ldap/l10n/nl.php @@ -90,6 +90,8 @@ $TRANSLATIONS = array( "Group-Member association" => "Groepslid associatie", "Nested Groups" => "Geneste groepen", "When switched on, groups that contain groups are supported. (Only works if the group member attribute contains DNs.)" => "Wanneer ingeschakeld worden groepen binnen groepen ondersteund. (Werkt alleen als het groepslid attribuut DNs bevat)", +"Paging chunksize" => "Paging chunkgrootte", +"Chunksize used for paged LDAP searches that may return bulky results like user or group enumeration. (Setting it 0 disables paged LDAP searches in those situations.)" => "De chunkgrootte die wordt gebruikt voor LDAP opvragingen die in grote aantallen resulteren, zoals gebruiker- of groepsverzamelingen. (Instellen op 0 deactiveert gepagede LDAP opvragingen in dergelijke situaties.)", "Special Attributes" => "Speciale attributen", "Quota Field" => "Quota veld", "Quota Default" => "Quota standaard", diff --git a/apps/user_ldap/l10n/pl.php b/apps/user_ldap/l10n/pl.php index 5c6d3d7022e..69a94ec693c 100644 --- a/apps/user_ldap/l10n/pl.php +++ b/apps/user_ldap/l10n/pl.php @@ -90,6 +90,8 @@ $TRANSLATIONS = array( "Group-Member association" => "Członek grupy stowarzyszenia", "Nested Groups" => "Grupy zagnieżdżone", "When switched on, groups that contain groups are supported. (Only works if the group member attribute contains DNs.)" => "Kiedy włączone, grupy, które zawierają grupy, są wspierane. (Działa tylko, jeśli członek grupy ma ustawienie DNs)", +"Paging chunksize" => "Wielkość stronicowania", +"Chunksize used for paged LDAP searches that may return bulky results like user or group enumeration. (Setting it 0 disables paged LDAP searches in those situations.)" => "Długość łańcucha jest używana do stronicowanych wyszukiwań LDAP, które mogą zwracać duże zbiory jak lista grup, czy użytkowników. (Ustawienie na 0 wyłącza stronicowane wyszukiwania w takich sytuacjach.)", "Special Attributes" => "Specjalne atrybuty", "Quota Field" => "Pole przydziału", "Quota Default" => "Przydział domyślny", diff --git a/apps/user_ldap/l10n/pt_BR.php b/apps/user_ldap/l10n/pt_BR.php index 786bee4c8ae..844024a953d 100644 --- a/apps/user_ldap/l10n/pt_BR.php +++ b/apps/user_ldap/l10n/pt_BR.php @@ -90,6 +90,8 @@ $TRANSLATIONS = array( "Group-Member association" => "Associação Grupo-Membro", "Nested Groups" => "Grupos Aninhados", "When switched on, groups that contain groups are supported. (Only works if the group member attribute contains DNs.)" => "Quando habilitado, os grupos que contêm os grupos são suportados. (Só funciona se o atributo de membro de grupo contém DNs.)", +"Paging chunksize" => "Bloco de paginação", +"Chunksize used for paged LDAP searches that may return bulky results like user or group enumeration. (Setting it 0 disables paged LDAP searches in those situations.)" => "Tamanho do bloco usado para pesquisas LDAP paginados que podem retornar resultados volumosos como usuário ou grupo de enumeração. (Defini-lo 0 desativa paginada pesquisas LDAP nessas situações.)", "Special Attributes" => "Atributos Especiais", "Quota Field" => "Campo de Cota", "Quota Default" => "Cota Padrão", diff --git a/apps/user_ldap/l10n/sv.php b/apps/user_ldap/l10n/sv.php index fa844b799c2..6a4ed0c7204 100644 --- a/apps/user_ldap/l10n/sv.php +++ b/apps/user_ldap/l10n/sv.php @@ -90,6 +90,8 @@ $TRANSLATIONS = array( "Group-Member association" => "Attribut för gruppmedlemmar", "Nested Groups" => "Undergrupper", "When switched on, groups that contain groups are supported. (Only works if the group member attribute contains DNs.)" => "När den är påslagen, stöds grupper som innehåller grupper. (Fungerar endast om gruppmedlemmens attribut innehåller DNs.)", +"Paging chunksize" => "Paging klusterstorlek", +"Chunksize used for paged LDAP searches that may return bulky results like user or group enumeration. (Setting it 0 disables paged LDAP searches in those situations.)" => "Klusterstorlek som används för paged LDAP sökningar som kan komma att returnera skrymmande resultat som uppräknande av användare eller grupper. (Inställning av denna till 0 inaktiverar paged LDAP sökningar i de situationerna)", "Special Attributes" => "Specialattribut", "Quota Field" => "Kvotfält", "Quota Default" => "Datakvot standard", diff --git a/apps/user_ldap/l10n/tr.php b/apps/user_ldap/l10n/tr.php index fa829a7427c..d654b4e2416 100644 --- a/apps/user_ldap/l10n/tr.php +++ b/apps/user_ldap/l10n/tr.php @@ -90,6 +90,8 @@ $TRANSLATIONS = array( "Group-Member association" => "Grup-Üye işbirliği", "Nested Groups" => "İç içe Gruplar", "When switched on, groups that contain groups are supported. (Only works if the group member attribute contains DNs.)" => "Etkinleştirildiğinde, grup içeren gruplar desteklenir (Sadece grup üyesi DN niteliği içeriyorsa çalışır).", +"Paging chunksize" => "Sayfalama yığın boyutu", +"Chunksize used for paged LDAP searches that may return bulky results like user or group enumeration. (Setting it 0 disables paged LDAP searches in those situations.)" => "Yığın boyutu, kullanıcı veya grup numaralandırması benzeri hantal sonuçlar döndürebilen sayfalandırılmış LDAP aramaları için kullanılır. (0 yapmak bu durumlarda sayfalandırılmış LDAP aramalarını devre dışı bırakır.)", "Special Attributes" => "Özel Öznitelikler", "Quota Field" => "Kota Alanı", "Quota Default" => "Öntanımlı Kota", diff --git a/apps/user_webdavauth/l10n/ast.php b/apps/user_webdavauth/l10n/ast.php new file mode 100644 index 00000000000..118fa2ce30f --- /dev/null +++ b/apps/user_webdavauth/l10n/ast.php @@ -0,0 +1,7 @@ + "Autenticación per aciu de WevDAV", +"Address: " => "Direición:", +"The user credentials will be sent to this address. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "Les credenciales d'usuariu van unviase a esta direición. Esti complementu verifica la rempuesta y va interpretar los códigos de rempuesta HTTP 401 y 403 como credenciales inválides y toles otres rempuestes como credenciales válides." +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ast.php b/core/l10n/ast.php index 57f7cdde791..9ae1685347c 100644 --- a/core/l10n/ast.php +++ b/core/l10n/ast.php @@ -1,5 +1,6 @@ "Base de datos anovada", "Sunday" => "Domingu", "Monday" => "Llunes", "Tuesday" => "Martes", @@ -19,16 +20,55 @@ $TRANSLATIONS = array( "October" => "Ochobre", "November" => "Payares", "December" => "Avientu", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), +"Settings" => "Axustes", +"seconds ago" => "fai segundos", +"_%n minute ago_::_%n minutes ago_" => array("fai %n minutu","fai %n minutos"), +"_%n hour ago_::_%n hours ago_" => array("fai %n hora","fai %n hores"), +"today" => "güei", +"yesterday" => "ayeri", +"_%n day ago_::_%n days ago_" => array("fai %n día","fai %n díes"), +"last month" => "mes caberu", +"_%n month ago_::_%n months ago_" => array("fai %n mes","fai %n meses"), +"months ago" => "fai meses", +"last year" => "añu caberu", +"years ago" => "fai años", +"Choose" => "Esbillar", +"Yes" => "Sí", +"No" => "Non", "_{count} file conflict_::_{count} file conflicts_" => array("",""), +"Which files do you want to keep?" => "¿Qué ficheros quies caltener?", +"Cancel" => "Encaboxar", +"Continue" => "Continuar", +"Shared" => "Compartíu", "Share" => "Compartir", +"Share link" => "Compartir enllaz", +"Password" => "Contraseña", +"Send" => "Unviar", "group" => "grupu", "Unshare" => "Dexar de compartir", +"notify by email" => "notificar per corréu", "can edit" => "pue editar", +"access control" => "control d'accesu", +"create" => "crear", +"update" => "xubir", +"delete" => "desaniciar", +"share" => "compartir", +"Password protected" => "Contraseña protexida", +"Email sent" => "Corréu unviáu", "Delete" => "Desaniciar", -"Personal" => "Personal" +"Add" => "Amestar", +"Edit tags" => "Editar etiquetes", +"Username" => "Nome d'usuariu", +"Reset" => "Reaniciar", +"For the best results, please consider using a GNU/Linux server instead." => "Pa los meyores resultaos, por favor considera l'usu d'un sirvidor GNU/Linux nel so llugar.", +"Personal" => "Personal", +"Cheers!" => "¡Salú!", +"will be used" => "usaráse", +"Finishing …" => "Finando ...", +"Log out" => "Zarrar sesión", +"Lost your password?" => "¿Escaeciesti la to contraseña?", +"Log in" => "Aniciar sesión", +"Alternative Logins" => "Anicios de sesión alternativos", +"Thank you for your patience." => "Gracies pola to paciencia." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ca.php b/core/l10n/ca.php index 0a658d515d9..214b2eac0e9 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -50,6 +50,7 @@ $TRANSLATIONS = array( "Error loading message template: {error}" => "Error en carregar la plantilla de missatge: {error}", "_{count} file conflict_::_{count} file conflicts_" => array("{count} conflicte de fitxer","{count} conflictes de fitxer"), "One file conflict" => "Un fitxer en conflicte", +"New Files" => "Fitxers nous", "Which files do you want to keep?" => "Quin fitxer voleu conservar?", "If you select both versions, the copied file will have a number added to its name." => "Si seleccioneu les dues versions, el fitxer copiat tindrà un número afegit al seu nom.", "Cancel" => "Cancel·la", diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index ffe34f78280..c21d904b233 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -50,6 +50,7 @@ $TRANSLATIONS = array( "Error loading message template: {error}" => "Chyba při nahrávání šablony zprávy: {error}", "_{count} file conflict_::_{count} file conflicts_" => array("{count} souborový konflikt","{count} souborové konflikty","{count} souborových konfliktů"), "One file conflict" => "Jeden konflikt souboru", +"New Files" => "Nové soubory", "Which files do you want to keep?" => "Které soubory chcete ponechat?", "If you select both versions, the copied file will have a number added to its name." => "Pokud zvolíte obě verze, zkopírovaný soubor bude mít název doplněný o číslo.", "Cancel" => "Zrušit", diff --git a/core/l10n/da.php b/core/l10n/da.php index d3384dac432..c7bda6fd365 100644 --- a/core/l10n/da.php +++ b/core/l10n/da.php @@ -49,6 +49,7 @@ $TRANSLATIONS = array( "Error loading message template: {error}" => "Fejl ved indlæsning af besked skabelon: {error}", "_{count} file conflict_::_{count} file conflicts_" => array("{count} filkonflikt","{count} filkonflikter"), "One file conflict" => "En filkonflikt", +"New Files" => "Nye filer", "Which files do you want to keep?" => "Hvilke filer ønsker du at beholde?", "If you select both versions, the copied file will have a number added to its name." => "Hvis du vælger begge versioner, vil den kopierede fil få tilføjet et nummer til sit navn.", "Cancel" => "Annuller", diff --git a/core/l10n/de.php b/core/l10n/de.php index 79edfb725d7..4d8c583e164 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -50,6 +50,7 @@ $TRANSLATIONS = array( "Error loading message template: {error}" => "Fehler beim Laden der Nachrichtenvorlage: {error}", "_{count} file conflict_::_{count} file conflicts_" => array("{count} Dateikonflikt","{count} Dateikonflikte"), "One file conflict" => "Ein Dateikonflikt", +"New Files" => "Neue Dateien", "Which files do you want to keep?" => "Welche Dateien möchtest Du behalten?", "If you select both versions, the copied file will have a number added to its name." => "Wenn Du beide Versionen auswählst, erhält die kopierte Datei eine Zahl am Ende des Dateinamens.", "Cancel" => "Abbrechen", diff --git a/core/l10n/de_CH.php b/core/l10n/de_CH.php index 42b8eb3bcea..eb2cfd233d3 100644 --- a/core/l10n/de_CH.php +++ b/core/l10n/de_CH.php @@ -40,6 +40,7 @@ $TRANSLATIONS = array( "No" => "Nein", "Ok" => "OK", "_{count} file conflict_::_{count} file conflicts_" => array("",""), +"New Files" => "Neue Dateien", "Cancel" => "Abbrechen", "Shared" => "Geteilt", "Share" => "Teilen", diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index a0877e792e2..900d3c03172 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -50,6 +50,7 @@ $TRANSLATIONS = array( "Error loading message template: {error}" => "Fehler beim Laden der Nachrichtenvorlage: {error}", "_{count} file conflict_::_{count} file conflicts_" => array("{count} Dateikonflikt","{count} Dateikonflikte"), "One file conflict" => "Ein Dateikonflikt", +"New Files" => "Neue Dateien", "Which files do you want to keep?" => "Welche Dateien möchten Sie behalten?", "If you select both versions, the copied file will have a number added to its name." => "Wenn Sie beide Versionen auswählen, erhält die kopierte Datei eine Zahl am Ende des Dateinamens.", "Cancel" => "Abbrechen", diff --git a/core/l10n/el.php b/core/l10n/el.php index 0ffb746fc77..c899427ae30 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -50,6 +50,7 @@ $TRANSLATIONS = array( "Error loading message template: {error}" => "Σφάλμα φόρτωσης προτύπου μηνυμάτων: {σφάλμα}", "_{count} file conflict_::_{count} file conflicts_" => array("{count} αρχείο διαφέρει","{count} αρχεία διαφέρουν"), "One file conflict" => "Ένα αρχείο διαφέρει", +"New Files" => "Νέα Αρχεία", "Which files do you want to keep?" => "Ποια αρχεία θέλετε να κρατήσετε;", "If you select both versions, the copied file will have a number added to its name." => "Εάν επιλέξετε και τις δυο εκδοχές, ένας αριθμός θα προστεθεί στο αντιγραφόμενο αρχείο.", "Cancel" => "Άκυρο", diff --git a/core/l10n/en_GB.php b/core/l10n/en_GB.php index bc36f5a4446..215bae92d1c 100644 --- a/core/l10n/en_GB.php +++ b/core/l10n/en_GB.php @@ -50,6 +50,8 @@ $TRANSLATIONS = array( "Error loading message template: {error}" => "Error loading message template: {error}", "_{count} file conflict_::_{count} file conflicts_" => array("{count} file conflict","{count} file conflicts"), "One file conflict" => "One file conflict", +"New Files" => "New Files", +"Already existing files" => "Already existing files", "Which files do you want to keep?" => "Which files do you wish to keep?", "If you select both versions, the copied file will have a number added to its name." => "If you select both versions, the copied file will have a number added to its name.", "Cancel" => "Cancel", diff --git a/core/l10n/eo.php b/core/l10n/eo.php index f264b7ed7a7..05d28efb66b 100644 --- a/core/l10n/eo.php +++ b/core/l10n/eo.php @@ -41,6 +41,7 @@ $TRANSLATIONS = array( "Ok" => "Akcepti", "_{count} file conflict_::_{count} file conflicts_" => array("{count} dosierkonflikto","{count} dosierkonfliktoj"), "One file conflict" => "Unu dosierkonflikto", +"New Files" => "Novaj dosieroj", "Which files do you want to keep?" => "Kiujn dosierojn vi volas konservi?", "If you select both versions, the copied file will have a number added to its name." => "Se vi elektos ambaŭ eldonojn, la kopiota dosiero havos numeron aldonitan al sia nomo.", "Cancel" => "Nuligi", diff --git a/core/l10n/es.php b/core/l10n/es.php index 52f1a15089a..cb2d09d60fe 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -50,6 +50,8 @@ $TRANSLATIONS = array( "Error loading message template: {error}" => "Error cargando plantilla del mensaje: {error}", "_{count} file conflict_::_{count} file conflicts_" => array("{count} conflicto de archivo","{count} conflictos de archivo"), "One file conflict" => "On conflicto de archivo", +"New Files" => "Nuevos Archivos", +"Already existing files" => "Archivos ya existentes", "Which files do you want to keep?" => "¿Que archivos deseas mantener?", "If you select both versions, the copied file will have a number added to its name." => "Si seleccionas ambas versiones, el archivo copiado tendrá añadido un número en su nombre.", "Cancel" => "Cancelar", diff --git a/core/l10n/es_AR.php b/core/l10n/es_AR.php index b5b37d4825b..c9d270edefa 100644 --- a/core/l10n/es_AR.php +++ b/core/l10n/es_AR.php @@ -49,6 +49,7 @@ $TRANSLATIONS = array( "Error loading message template: {error}" => "Error cargando la plantilla del mensaje: {error}", "_{count} file conflict_::_{count} file conflicts_" => array("un archivo en conflicto","{count} archivos en conflicto"), "One file conflict" => "Un archivo en conflicto", +"New Files" => "Nuevos archivos", "Which files do you want to keep?" => "¿Qué archivos deseas retener?", "If you select both versions, the copied file will have a number added to its name." => "Si tu seleccionas ambas versiones, el archivo copiado tendrá un número agregado a su nombre.", "Cancel" => "Cancelar", diff --git a/core/l10n/et_EE.php b/core/l10n/et_EE.php index e9c23d96b81..422caac9c15 100644 --- a/core/l10n/et_EE.php +++ b/core/l10n/et_EE.php @@ -50,6 +50,7 @@ $TRANSLATIONS = array( "Error loading message template: {error}" => "Viga sõnumi malli laadimisel: {error}", "_{count} file conflict_::_{count} file conflicts_" => array("{count} failikonflikt","{count} failikonflikti"), "One file conflict" => "Üks failikonflikt", +"New Files" => "Uued failid", "Which files do you want to keep?" => "Milliseid faile sa soovid alles hoida?", "If you select both versions, the copied file will have a number added to its name." => "Kui valid mõlemad versioonid, siis lisatakse kopeeritud faili nimele number.", "Cancel" => "Loobu", diff --git a/core/l10n/eu.php b/core/l10n/eu.php index 33c98fb9b90..8fd554485db 100644 --- a/core/l10n/eu.php +++ b/core/l10n/eu.php @@ -49,6 +49,7 @@ $TRANSLATIONS = array( "Error loading message template: {error}" => "Errorea mezu txantiloia kargatzean: {error}", "_{count} file conflict_::_{count} file conflicts_" => array("fitxategi {count}ek konfliktua sortu du","{count} fitxategik konfliktua sortu dute"), "One file conflict" => "Fitxategi batek konfliktua sortu du", +"New Files" => "Fitxategi Berriak", "Which files do you want to keep?" => "Ze fitxategi mantendu nahi duzu?", "If you select both versions, the copied file will have a number added to its name." => "Bi bertsioak hautatzen badituzu, kopiatutako fitxategiaren izenean zenbaki bat atxikituko zaio.", "Cancel" => "Ezeztatu", diff --git a/core/l10n/fa.php b/core/l10n/fa.php index 3e7e246e827..a349d3b7704 100644 --- a/core/l10n/fa.php +++ b/core/l10n/fa.php @@ -37,6 +37,7 @@ $TRANSLATIONS = array( "No" => "نه", "Ok" => "قبول", "_{count} file conflict_::_{count} file conflicts_" => array(""), +"New Files" => "فایل های جدید", "Cancel" => "منصرف شدن", "Shared" => "اشتراک گذاشته شده", "Share" => "اشتراک‌گذاری", diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php index 0af7503ee9d..7797d17c872 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -50,6 +50,8 @@ $TRANSLATIONS = array( "Error loading message template: {error}" => "Virhe ladatessa viestipohjaa: {error}", "_{count} file conflict_::_{count} file conflicts_" => array("{count} tiedoston ristiriita","{count} tiedoston ristiriita"), "One file conflict" => "Yhden tiedoston ristiriita", +"New Files" => "Uudet tiedostot", +"Already existing files" => "Jo olemassa olevat tiedostot", "Which files do you want to keep?" => "Mitkä tiedostot haluat säilyttää?", "If you select both versions, the copied file will have a number added to its name." => "Jos valitset kummatkin versiot, kopioidun tiedoston nimeen lisätään numero.", "Cancel" => "Peru", @@ -122,6 +124,8 @@ $TRANSLATIONS = array( "To login page" => "Kirjautumissivulle", "New password" => "Uusi salasana", "Reset password" => "Palauta salasana", +"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Mac OS X ei ole tuettu, joten %s ei toimi kunnolla tällä alustalla. Käytä omalla vastuulla!", +"For the best results, please consider using a GNU/Linux server instead." => "Käytä parhaan lopputuloksen saamiseksi GNU/Linux-palvelinta.", "Personal" => "Henkilökohtainen", "Users" => "Käyttäjät", "Apps" => "Sovellukset", diff --git a/core/l10n/fr.php b/core/l10n/fr.php index f5a1ecd42fb..2475eddee8a 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -50,6 +50,7 @@ $TRANSLATIONS = array( "Error loading message template: {error}" => "Erreur de chargement du modèle de message : {error}", "_{count} file conflict_::_{count} file conflicts_" => array("{count} fichier en conflit","{count} fichiers en conflit"), "One file conflict" => "Un conflit de fichier", +"New Files" => "Nouveaux fichiers", "Which files do you want to keep?" => "Quels fichiers désirez-vous garder ?", "If you select both versions, the copied file will have a number added to its name." => "Si vous sélectionnez les deux versions, un nombre sera ajouté au nom du fichier copié.", "Cancel" => "Annuler", diff --git a/core/l10n/gl.php b/core/l10n/gl.php index c1c678e7e3f..eb9f1af5657 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -50,6 +50,8 @@ $TRANSLATIONS = array( "Error loading message template: {error}" => "Produciuse un erro ao cargar o modelo da mensaxe: {error}", "_{count} file conflict_::_{count} file conflicts_" => array("{count} conflito de ficheiro","{count} conflitos de ficheiros"), "One file conflict" => "Un conflito de ficheiro", +"New Files" => "Ficheiros novos", +"Already existing files" => "Ficheiros xa existentes", "Which files do you want to keep?" => "Que ficheiros quere conservar?", "If you select both versions, the copied file will have a number added to its name." => "Se selecciona ambas versións, o ficheiro copiado terá un número engadido ao nome.", "Cancel" => "Cancelar", diff --git a/core/l10n/he.php b/core/l10n/he.php index 4579626f12d..8fb7373a143 100644 --- a/core/l10n/he.php +++ b/core/l10n/he.php @@ -37,6 +37,7 @@ $TRANSLATIONS = array( "No" => "לא", "Ok" => "בסדר", "_{count} file conflict_::_{count} file conflicts_" => array("",""), +"New Files" => "קבצים חדשים", "Cancel" => "ביטול", "Shared" => "שותף", "Share" => "שתף", diff --git a/core/l10n/hu_HU.php b/core/l10n/hu_HU.php index e81991ec7ad..096b28e2d9b 100644 --- a/core/l10n/hu_HU.php +++ b/core/l10n/hu_HU.php @@ -49,6 +49,7 @@ $TRANSLATIONS = array( "Error loading message template: {error}" => "Nem sikerült betölteni az üzenet sablont: {error}", "_{count} file conflict_::_{count} file conflicts_" => array("{count} fájl ütközik","{count} fájl ütközik"), "One file conflict" => "Egy file ütközik", +"New Files" => "Új fájlok", "Which files do you want to keep?" => "Melyik file-okat akarod megtartani?", "If you select both versions, the copied file will have a number added to its name." => "Ha kiválasztod mindazokaz a verziókat, a másolt fileok neve sorszámozva lesz.", "Cancel" => "Mégsem", diff --git a/core/l10n/it.php b/core/l10n/it.php index 2f0017263fa..43e9752f5e0 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -50,6 +50,7 @@ $TRANSLATIONS = array( "Error loading message template: {error}" => "Errore durante il caricamento del modello di messaggio: {error}", "_{count} file conflict_::_{count} file conflicts_" => array("{count} file in conflitto","{count} file in conflitto"), "One file conflict" => "Un file in conflitto", +"New Files" => "File nuovi", "Which files do you want to keep?" => "Quali file vuoi mantenere?", "If you select both versions, the copied file will have a number added to its name." => "Se selezioni entrambe le versioni, sarà aggiunto un numero al nome del file copiato.", "Cancel" => "Annulla", diff --git a/core/l10n/ja.php b/core/l10n/ja.php index 5f8d6a05ae9..3a99f0e598b 100644 --- a/core/l10n/ja.php +++ b/core/l10n/ja.php @@ -50,6 +50,7 @@ $TRANSLATIONS = array( "Error loading message template: {error}" => "メッセージテンプレートの読み込みエラー: {error}", "_{count} file conflict_::_{count} file conflicts_" => array("{count} ファイルが競合"), "One file conflict" => "1ファイルが競合", +"New Files" => "新しいファイル", "Which files do you want to keep?" => "どちらのファイルを保持したいですか?", "If you select both versions, the copied file will have a number added to its name." => "両方のバージョンを選択した場合は、ファイル名の後ろに数字を追加したファイルのコピーを作成します。", "Cancel" => "キャンセル", diff --git a/core/l10n/ka_GE.php b/core/l10n/ka_GE.php index 0070fd7994e..a76a8866541 100644 --- a/core/l10n/ka_GE.php +++ b/core/l10n/ka_GE.php @@ -37,6 +37,7 @@ $TRANSLATIONS = array( "No" => "არა", "Ok" => "დიახ", "_{count} file conflict_::_{count} file conflicts_" => array(""), +"New Files" => "ახალი ფაილები", "Cancel" => "უარყოფა", "Shared" => "გაზიარებული", "Share" => "გაზიარება", diff --git a/core/l10n/lv.php b/core/l10n/lv.php index 505bf46b4c9..683ff2c129a 100644 --- a/core/l10n/lv.php +++ b/core/l10n/lv.php @@ -37,6 +37,7 @@ $TRANSLATIONS = array( "No" => "Nē", "Ok" => "Labi", "_{count} file conflict_::_{count} file conflicts_" => array("","",""), +"New Files" => "Jaunās datnes", "Cancel" => "Atcelt", "Shared" => "Kopīgs", "Share" => "Dalīties", diff --git a/core/l10n/nl.php b/core/l10n/nl.php index 05cef6afd5a..b09509e6290 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -50,6 +50,8 @@ $TRANSLATIONS = array( "Error loading message template: {error}" => "Fout bij laden berichtensjabloon: {error}", "_{count} file conflict_::_{count} file conflicts_" => array("{count} bestandsconflict","{count} bestandsconflicten"), "One file conflict" => "Een bestandsconflict", +"New Files" => "Nieuwe bestanden", +"Already existing files" => "Al aanwezige bestanden", "Which files do you want to keep?" => "Welke bestanden wilt u bewaren?", "If you select both versions, the copied file will have a number added to its name." => "Als u beide versies selecteerde, zal het gekopieerde bestand een nummer aan de naam toegevoegd krijgen.", "Cancel" => "Annuleer", diff --git a/core/l10n/pl.php b/core/l10n/pl.php index 17fde36c7cd..fe0cf145832 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -50,6 +50,8 @@ $TRANSLATIONS = array( "Error loading message template: {error}" => "Błąd podczas ładowania szablonu wiadomości: {error}", "_{count} file conflict_::_{count} file conflicts_" => array("{count} konfliktów plików","{count} konfliktów plików","{count} konfliktów plików"), "One file conflict" => "Konflikt pliku", +"New Files" => "Nowe pliki", +"Already existing files" => "Już istniejące pliki", "Which files do you want to keep?" => "Które pliki chcesz zachować?", "If you select both versions, the copied file will have a number added to its name." => "Jeśli wybierzesz obie wersje, skopiowany plik będzie miał dodany numerek w nazwie", "Cancel" => "Anuluj", diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index b31925cdf79..3545426b670 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -50,6 +50,8 @@ $TRANSLATIONS = array( "Error loading message template: {error}" => "Erro no carregamento de modelo de mensagem: {error}", "_{count} file conflict_::_{count} file conflicts_" => array("{count} conflito de arquivo","{count} conflitos de arquivos"), "One file conflict" => "Conflito em um arquivo", +"New Files" => "Novos Arquivos", +"Already existing files" => "Arquivos já existentes", "Which files do you want to keep?" => "Qual arquivo você quer manter?", "If you select both versions, the copied file will have a number added to its name." => "Se você selecionar ambas as versões, o arquivo copiado terá um número adicionado ao seu nome.", "Cancel" => "Cancelar", diff --git a/core/l10n/pt_PT.php b/core/l10n/pt_PT.php index a4d6785cd5e..bb1b6011a6b 100644 --- a/core/l10n/pt_PT.php +++ b/core/l10n/pt_PT.php @@ -49,6 +49,7 @@ $TRANSLATIONS = array( "Error loading message template: {error}" => "Erro ao carregar o template: {error}", "_{count} file conflict_::_{count} file conflicts_" => array("{count} conflicto de ficheiro","{count} conflitos de ficheiro"), "One file conflict" => "Um conflito no ficheiro", +"New Files" => "Ficheiros Novos", "Which files do you want to keep?" => "Quais os ficheiros que pretende manter?", "If you select both versions, the copied file will have a number added to its name." => "Se escolher ambas as versões, o ficheiro copiado irá ter um número adicionado ao seu nome.", "Cancel" => "Cancelar", diff --git a/core/l10n/ru.php b/core/l10n/ru.php index e2fdc36be0b..aa784088f7a 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -50,6 +50,7 @@ $TRANSLATIONS = array( "Error loading message template: {error}" => "Ошибка загрузки шаблона сообщений: {error}", "_{count} file conflict_::_{count} file conflicts_" => array("{count} конфликт в файлах","{count} конфликта в файлах","{count} конфликтов в файлах"), "One file conflict" => "Один конфликт в файлах", +"New Files" => "Новые файлы", "Which files do you want to keep?" => "Какие файлы вы хотите сохранить?", "If you select both versions, the copied file will have a number added to its name." => "При выборе обоих версий, к названию копируемого файла будет добавлена цифра", "Cancel" => "Отменить", diff --git a/core/l10n/sk_SK.php b/core/l10n/sk_SK.php index 853118e7a62..1b717bc412e 100644 --- a/core/l10n/sk_SK.php +++ b/core/l10n/sk_SK.php @@ -50,6 +50,7 @@ $TRANSLATIONS = array( "Error loading message template: {error}" => "Chyba pri nahrávaní šablóny správy: {error}", "_{count} file conflict_::_{count} file conflicts_" => array("{count} konflikt súboru","{count} konflikty súboru","{count} konfliktov súboru"), "One file conflict" => "Jeden konflikt súboru", +"New Files" => "Nové súbory", "Which files do you want to keep?" => "Ktoré súbory chcete ponechať?", "If you select both versions, the copied file will have a number added to its name." => "Ak zvolíte obe verzie, názov nakopírovaného súboru bude doplnený o číslo.", "Cancel" => "Zrušiť", diff --git a/core/l10n/sl.php b/core/l10n/sl.php index 49eb4f9aa69..7476d9f9c7c 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -50,6 +50,7 @@ $TRANSLATIONS = array( "Error loading message template: {error}" => "Napaka nalaganja predloge sporočil: {error}", "_{count} file conflict_::_{count} file conflicts_" => array("{count} spor datotek","{count} spora datotek","{count} spori datotek","{count} sporov datotek"), "One file conflict" => "En spor datotek", +"New Files" => "Nove datoteke", "Which files do you want to keep?" => "Katare datoteke želite ohraniti?", "If you select both versions, the copied file will have a number added to its name." => "Če izberete obe različici, bo kopirani datoteki k imenu dodana številka.", "Cancel" => "Prekliči", diff --git a/core/l10n/sv.php b/core/l10n/sv.php index 7e72039df80..d46c204d7c3 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -50,6 +50,8 @@ $TRANSLATIONS = array( "Error loading message template: {error}" => "Fel uppstod under inläsningen av meddelandemallen: {error}", "_{count} file conflict_::_{count} file conflicts_" => array("{count} filkonflikt","{count} filkonflikter"), "One file conflict" => "En filkonflikt", +"New Files" => "Nya filer", +"Already existing files" => "Filer som redan existerar", "Which files do you want to keep?" => "Vilken fil vill du behålla?", "If you select both versions, the copied file will have a number added to its name." => "Om du väljer båda versionerna kommer de kopierade filerna ha nummer tillagda i filnamnet.", "Cancel" => "Avbryt", diff --git a/core/l10n/th_TH.php b/core/l10n/th_TH.php index 85a9b4ab238..9ee3c60f947 100644 --- a/core/l10n/th_TH.php +++ b/core/l10n/th_TH.php @@ -37,6 +37,7 @@ $TRANSLATIONS = array( "No" => "ไม่ตกลง", "Ok" => "ตกลง", "_{count} file conflict_::_{count} file conflicts_" => array(""), +"New Files" => "ไฟล์ใหม่", "Cancel" => "ยกเลิก", "Shared" => "แชร์แล้ว", "Share" => "แชร์", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index 9d211bd0570..7e75cdf4b01 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -50,6 +50,8 @@ $TRANSLATIONS = array( "Error loading message template: {error}" => "İleti şablonu yüklenirken hata: {error}", "_{count} file conflict_::_{count} file conflicts_" => array("{count} dosya çakışması","{count} dosya çakışması"), "One file conflict" => "Bir dosya çakışması", +"New Files" => "Yeni Dosyalar", +"Already existing files" => "Zaten mevcut olan dosyalar", "Which files do you want to keep?" => "Hangi dosyaları saklamak istiyorsunuz?", "If you select both versions, the copied file will have a number added to its name." => "İki sürümü de seçerseniz, kopyalanan dosyanın ismine bir sayı ilave edilecektir.", "Cancel" => "İptal", diff --git a/core/l10n/uk.php b/core/l10n/uk.php index ade29981b49..f6bcfdcdc8d 100644 --- a/core/l10n/uk.php +++ b/core/l10n/uk.php @@ -49,6 +49,7 @@ $TRANSLATIONS = array( "Error loading message template: {error}" => "Помилка при завантаженні шаблону повідомлення: {error}", "_{count} file conflict_::_{count} file conflicts_" => array("{count} файловий конфлікт","{count} файлових конфліктів","{count} файлових конфліктів"), "One file conflict" => "Один файловий конфлікт", +"New Files" => "Нових Файлів", "Which files do you want to keep?" => "Які файли ви хочете залишити?", "If you select both versions, the copied file will have a number added to its name." => "Якщо ви оберете обидві версії, скопійований файл буде мати номер, доданий у його ім'я.", "Cancel" => "Відмінити", diff --git a/core/l10n/vi.php b/core/l10n/vi.php index be99580d942..319f68b6355 100644 --- a/core/l10n/vi.php +++ b/core/l10n/vi.php @@ -49,6 +49,7 @@ $TRANSLATIONS = array( "Error loading message template: {error}" => "Lỗi khi tải mẫu thông điệp: {error}", "_{count} file conflict_::_{count} file conflicts_" => array("{count} tập tin xung đột"), "One file conflict" => "Một tập tin xung đột", +"New Files" => "File mới", "Which files do you want to keep?" => "Bạn muốn tiếp tục với những tập tin nào?", "If you select both versions, the copied file will have a number added to its name." => "Nếu bạn chọn cả hai phiên bản, tập tin được sao chép sẽ được đánh thêm số vào tên của nó.", "Cancel" => "Hủy", diff --git a/core/l10n/zh_CN.php b/core/l10n/zh_CN.php index e5a6a254e54..68f50baf98f 100644 --- a/core/l10n/zh_CN.php +++ b/core/l10n/zh_CN.php @@ -49,6 +49,7 @@ $TRANSLATIONS = array( "Error loading message template: {error}" => "加载消息模板出错: {error}", "_{count} file conflict_::_{count} file conflicts_" => array("{count} 个文件冲突"), "One file conflict" => "1个文件冲突", +"New Files" => "新文件", "Which files do you want to keep?" => "想要保留哪一个文件呢?", "If you select both versions, the copied file will have a number added to its name." => "如果同时选择了连个版本,复制的文件名将会添加上一个数字。", "Cancel" => "取消", diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index dae143cef40..0799344697a 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -49,6 +49,7 @@ $TRANSLATIONS = array( "Error loading message template: {error}" => "載入訊息樣板出錯: {error}", "_{count} file conflict_::_{count} file conflicts_" => array("{count} 個檔案衝突"), "One file conflict" => "一個檔案衝突", +"New Files" => "新檔案", "Which files do you want to keep?" => "您要保留哪一個檔案?", "If you select both versions, the copied file will have a number added to its name." => "如果您同時選擇兩個版本,被複製的那個檔案名稱後面會加上編號", "Cancel" => "取消", diff --git a/l10n/ach/files_external.po b/l10n/ach/files_external.po index 7a2b8692dfd..5170057923b 100644 --- a/l10n/ach/files_external.po +++ b/l10n/ach/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/ach/lib.po b/l10n/ach/lib.po index c338a1ca543..3e9a97a32ff 100644 --- a/l10n/ach/lib.po +++ b/l10n/ach/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -336,3 +336,21 @@ msgstr "" #: private/template/functions.php:145 msgid "years ago" msgstr "" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/ady/files_external.po b/l10n/ady/files_external.po index 98f9d7ffd0b..777a46c36c5 100644 --- a/l10n/ady/files_external.po +++ b/l10n/ady/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" "MIME-Version: 1.0\n" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/ady/lib.po b/l10n/ady/lib.po index 0a215aa3587..07c60bce626 100644 --- a/l10n/ady/lib.po +++ b/l10n/ady/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" "MIME-Version: 1.0\n" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -336,3 +336,21 @@ msgstr "" #: private/template/functions.php:145 msgid "years ago" msgstr "" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/af/files_external.po b/l10n/af/files_external.po index cb1a4ed7563..847f55e6e06 100644 --- a/l10n/af/files_external.po +++ b/l10n/af/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/af/lib.po b/l10n/af/lib.po index 9567765edb2..c571917f3e9 100644 --- a/l10n/af/lib.po +++ b/l10n/af/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -336,3 +336,21 @@ msgstr "" #: private/template/functions.php:145 msgid "years ago" msgstr "" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/af_ZA/files_external.po b/l10n/af_ZA/files_external.po index 8ce2d531805..03a9505a520 100644 --- a/l10n/af_ZA/files_external.po +++ b/l10n/af_ZA/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index 6dcb6dbbdf1..47d21e1c5b7 100644 --- a/l10n/af_ZA/lib.po +++ b/l10n/af_ZA/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "webdienste onder jou beheer" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -336,3 +336,21 @@ msgstr "" #: private/template/functions.php:145 msgid "years ago" msgstr "" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/ak/files_external.po b/l10n/ak/files_external.po index ffc28dd6444..84c7c7e4042 100644 --- a/l10n/ak/files_external.po +++ b/l10n/ak/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/ak/lib.po b/l10n/ak/lib.po index 2747783c021..1404a2e7a6a 100644 --- a/l10n/ak/lib.po +++ b/l10n/ak/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -336,3 +336,21 @@ msgstr "" #: private/template/functions.php:145 msgid "years ago" msgstr "" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/am_ET/files_external.po b/l10n/am_ET/files_external.po index b7a5e551087..7b7292cc4f9 100644 --- a/l10n/am_ET/files_external.po +++ b/l10n/am_ET/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" "MIME-Version: 1.0\n" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/am_ET/lib.po b/l10n/am_ET/lib.po index 0bec5cd684f..2412812c9c1 100644 --- a/l10n/am_ET/lib.po +++ b/l10n/am_ET/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-25 09:38+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" "MIME-Version: 1.0\n" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -278,8 +278,8 @@ msgstr "" msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -336,3 +336,21 @@ msgstr "" #: private/template/functions.php:145 msgid "years ago" msgstr "" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/ar/files_external.po b/l10n/ar/files_external.po index a12496b73ef..345a782cd7d 100644 --- a/l10n/ar/files_external.po +++ b/l10n/ar/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -42,24 +42,33 @@ msgstr "" msgid "Saved" msgstr "حفظ" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index e86849ce2bc..f5419aee959 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-23 13:40+0000\n" -"Last-Translator: Abderraouf Mehdi Bouhali \n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -67,23 +67,23 @@ msgstr "الصورة غير صالحة" msgid "web services under your control" msgstr "خدمات الشبكة تحت سيطرتك" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "تحميل ملفات ZIP متوقف" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "الملفات بحاجة الى ان يتم تحميلها واحد تلو الاخر" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "العودة الى الملفات" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "الملفات المحددة كبيرة جدا ليتم ضغطها في ملف zip" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -280,8 +280,8 @@ msgstr "اعدادات خادمك غير صحيحة بشكل تسمح لك بم msgid "Please double check the installation guides." msgstr "الرجاء التحقق من دليل التنصيب." -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "%s شارك »%s« معك" @@ -354,3 +354,21 @@ msgstr "السنةالماضية" #: private/template/functions.php:145 msgid "years ago" msgstr "سنة مضت" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/ast/core.po b/l10n/ast/core.po index eacc22af16a..96ac7799a29 100644 --- a/l10n/ast/core.po +++ b/l10n/ast/core.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Tornes Llume , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 22:40+0000\n" +"Last-Translator: Tornes Llume \n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -36,7 +37,7 @@ msgstr "" #: ajax/update.php:16 msgid "Updated database" -msgstr "" +msgstr "Base de datos anovada" #: avatar/controller.php:62 msgid "No image or file provided" @@ -136,7 +137,7 @@ msgstr "Avientu" #: js/js.js:479 msgid "Settings" -msgstr "" +msgstr "Axustes" #: js/js.js:564 msgid "Saving..." @@ -144,59 +145,59 @@ msgstr "" #: js/js.js:1124 msgid "seconds ago" -msgstr "" +msgstr "fai segundos" #: js/js.js:1125 msgid "%n minute ago" msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "fai %n minutu" +msgstr[1] "fai %n minutos" #: js/js.js:1126 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "fai %n hora" +msgstr[1] "fai %n hores" #: js/js.js:1127 msgid "today" -msgstr "" +msgstr "güei" #: js/js.js:1128 msgid "yesterday" -msgstr "" +msgstr "ayeri" #: js/js.js:1129 msgid "%n day ago" msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "fai %n día" +msgstr[1] "fai %n díes" #: js/js.js:1130 msgid "last month" -msgstr "" +msgstr "mes caberu" #: js/js.js:1131 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "fai %n mes" +msgstr[1] "fai %n meses" #: js/js.js:1132 msgid "months ago" -msgstr "" +msgstr "fai meses" #: js/js.js:1133 msgid "last year" -msgstr "" +msgstr "añu caberu" #: js/js.js:1134 msgid "years ago" -msgstr "" +msgstr "fai años" #: js/oc-dialogs.js:123 msgid "Choose" -msgstr "" +msgstr "Esbillar" #: js/oc-dialogs.js:146 msgid "Error loading file picker template: {error}" @@ -204,11 +205,11 @@ msgstr "" #: js/oc-dialogs.js:172 msgid "Yes" -msgstr "" +msgstr "Sí" #: js/oc-dialogs.js:182 msgid "No" -msgstr "" +msgstr "Non" #: js/oc-dialogs.js:199 msgid "Ok" @@ -238,7 +239,7 @@ msgstr "" #: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" -msgstr "" +msgstr "¿Qué ficheros quies caltener?" #: js/oc-dialogs.js:371 msgid "" @@ -248,11 +249,11 @@ msgstr "" #: js/oc-dialogs.js:379 msgid "Cancel" -msgstr "" +msgstr "Encaboxar" #: js/oc-dialogs.js:389 msgid "Continue" -msgstr "" +msgstr "Continuar" #: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "(all selected)" @@ -288,7 +289,7 @@ msgstr "" #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" -msgstr "" +msgstr "Compartíu" #: js/share.js:109 msgid "Share" @@ -325,7 +326,7 @@ msgstr "" #: js/share.js:220 msgid "Share link" -msgstr "" +msgstr "Compartir enllaz" #: js/share.js:223 msgid "Password protect" @@ -333,7 +334,7 @@ msgstr "" #: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" -msgstr "" +msgstr "Contraseña" #: js/share.js:230 msgid "Allow Public Upload" @@ -345,7 +346,7 @@ msgstr "" #: js/share.js:235 msgid "Send" -msgstr "" +msgstr "Unviar" #: js/share.js:240 msgid "Set expiration date" @@ -381,7 +382,7 @@ msgstr "Dexar de compartir" #: js/share.js:409 msgid "notify by email" -msgstr "" +msgstr "notificar per corréu" #: js/share.js:412 msgid "can edit" @@ -389,27 +390,27 @@ msgstr "pue editar" #: js/share.js:414 msgid "access control" -msgstr "" +msgstr "control d'accesu" #: js/share.js:417 msgid "create" -msgstr "" +msgstr "crear" #: js/share.js:420 msgid "update" -msgstr "" +msgstr "xubir" #: js/share.js:423 msgid "delete" -msgstr "" +msgstr "desaniciar" #: js/share.js:426 msgid "share" -msgstr "" +msgstr "compartir" #: js/share.js:698 msgid "Password protected" -msgstr "" +msgstr "Contraseña protexida" #: js/share.js:711 msgid "Error unsetting expiration date" @@ -425,7 +426,7 @@ msgstr "" #: js/share.js:765 msgid "Email sent" -msgstr "" +msgstr "Corréu unviáu" #: js/share.js:789 msgid "Warning" @@ -445,11 +446,11 @@ msgstr "Desaniciar" #: js/tags.js:31 msgid "Add" -msgstr "" +msgstr "Amestar" #: js/tags.js:39 msgid "Edit tags" -msgstr "" +msgstr "Editar etiquetes" #: js/tags.js:57 msgid "Error loading dialog template: {error}" @@ -507,7 +508,7 @@ msgstr "" #: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 #: templates/login.php:32 msgid "Username" -msgstr "" +msgstr "Nome d'usuariu" #: lostpassword/templates/lostpassword.php:25 msgid "" @@ -523,7 +524,7 @@ msgstr "" #: lostpassword/templates/lostpassword.php:30 msgid "Reset" -msgstr "" +msgstr "Reaniciar" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -551,7 +552,7 @@ msgstr "" #: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." -msgstr "" +msgstr "Pa los meyores resultaos, por favor considera l'usu d'un sirvidor GNU/Linux nel so llugar." #: strings.php:5 msgid "Personal" @@ -626,7 +627,7 @@ msgstr "" #: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" -msgstr "" +msgstr "¡Salú!" #: templates/installation.php:25 templates/installation.php:32 #: templates/installation.php:39 @@ -685,7 +686,7 @@ msgstr "" #: templates/installation.php:94 msgid "will be used" -msgstr "" +msgstr "usaráse" #: templates/installation.php:109 msgid "Database user" @@ -713,7 +714,7 @@ msgstr "" #: templates/installation.php:150 msgid "Finishing …" -msgstr "" +msgstr "Finando ..." #: templates/layout.user.php:40 msgid "" @@ -729,7 +730,7 @@ msgstr "" #: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" -msgstr "" +msgstr "Zarrar sesión" #: templates/login.php:9 msgid "Automatic logon rejected!" @@ -755,7 +756,7 @@ msgstr "" #: templates/login.php:46 msgid "Lost your password?" -msgstr "" +msgstr "¿Escaeciesti la to contraseña?" #: templates/login.php:51 msgid "remember" @@ -763,11 +764,11 @@ msgstr "" #: templates/login.php:54 msgid "Log in" -msgstr "" +msgstr "Aniciar sesión" #: templates/login.php:60 msgid "Alternative Logins" -msgstr "" +msgstr "Anicios de sesión alternativos" #: templates/mail.php:15 #, php-format @@ -792,7 +793,7 @@ msgstr "" #: templates/singleuser.user.php:7 templates/update.user.php:6 msgid "Thank you for your patience." -msgstr "" +msgstr "Gracies pola to paciencia." #: templates/update.admin.php:3 #, php-format diff --git a/l10n/ast/files.po b/l10n/ast/files.po index 79497938ef8..f3d8d88b2df 100644 --- a/l10n/ast/files.po +++ b/l10n/ast/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-07 19:30+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 22:20+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -29,7 +29,7 @@ msgstr "" #: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." -msgstr "" +msgstr "El nome de ficheru nun pue quedar baleru." #: ajax/newfile.php:63 #, php-format @@ -40,7 +40,7 @@ msgstr "" msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "" +msgstr "Nome inválidu, los caráuteres \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" nun tán permitíos." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 #: lib/app.php:65 @@ -90,11 +90,11 @@ msgstr "" #: ajax/upload.php:75 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Nun se xubió dengún ficheru. Fallu desconocíu" #: ajax/upload.php:82 msgid "There is no error, the file uploaded with success" -msgstr "" +msgstr "Nun hai dengún fallu, el ficheru xubióse ensin problemes" #: ajax/upload.php:83 msgid "" @@ -105,27 +105,27 @@ msgstr "" msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "" +msgstr "El ficheru xubíu perpasa la direutiva \"MAX_FILE_SIZE\" especificada nel formulariu HTML" #: ajax/upload.php:86 msgid "The uploaded file was only partially uploaded" -msgstr "" +msgstr "El ficheru xubióse de mou parcial" #: ajax/upload.php:87 msgid "No file was uploaded" -msgstr "" +msgstr "Nun se xubió dengún ficheru" #: ajax/upload.php:88 msgid "Missing a temporary folder" -msgstr "" +msgstr "Falta una carpeta temporal" #: ajax/upload.php:89 msgid "Failed to write to disk" -msgstr "" +msgstr "Fallu al escribir al discu" #: ajax/upload.php:107 msgid "Not enough storage available" -msgstr "" +msgstr "Nun hai abondu espaciu disponible" #: ajax/upload.php:159 msgid "Upload failed. Could not find uploaded file" @@ -141,7 +141,7 @@ msgstr "" #: appinfo/app.php:11 js/filelist.js:14 msgid "Files" -msgstr "" +msgstr "Ficheros" #: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" @@ -203,7 +203,7 @@ msgstr "" #: js/fileactions.js:238 msgid "Rename" -msgstr "" +msgstr "Renomar" #: js/filelist.js:102 js/files.js:552 msgid "Error moving file" @@ -286,11 +286,11 @@ msgstr "" #: js/files.js:570 templates/index.php:67 msgid "Name" -msgstr "" +msgstr "Nome" #: js/files.js:571 templates/index.php:79 msgid "Size" -msgstr "" +msgstr "Tamañu" #: js/files.js:572 templates/index.php:81 msgid "Modified" @@ -307,7 +307,7 @@ msgstr "" #: lib/helper.php:14 templates/index.php:22 msgid "Upload" -msgstr "" +msgstr "Xubir" #: templates/admin.php:4 msgid "File handling" @@ -339,7 +339,7 @@ msgstr "" #: templates/admin.php:25 msgid "Save" -msgstr "" +msgstr "Guardar" #: templates/index.php:5 msgid "New" @@ -371,7 +371,7 @@ msgstr "" #: templates/index.php:45 msgid "Cancel upload" -msgstr "" +msgstr "Encaboxar xuba" #: templates/index.php:51 msgid "You don’t have permission to upload or create files here" diff --git a/l10n/ast/files_encryption.po b/l10n/ast/files_encryption.po index 85dc08a6ce7..61be80edefc 100644 --- a/l10n/ast/files_encryption.po +++ b/l10n/ast/files_encryption.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Tornes Llume , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-07 14:16+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 21:40+0000\n" +"Last-Translator: Tornes Llume \n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,11 +38,11 @@ msgstr "" #: ajax/changeRecoveryPassword.php:49 msgid "Password successfully changed." -msgstr "" +msgstr "Contraseña camudada esitosamente." #: ajax/changeRecoveryPassword.php:51 msgid "Could not change the password. Maybe the old password was not correct." -msgstr "" +msgstr "Nun pue camudase la contraseña. Quiciabes la contraseña vieya nun fore correuta." #: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." @@ -109,11 +110,11 @@ msgstr "" #: templates/invalid_private_key.php:8 msgid "personal settings" -msgstr "" +msgstr "axustes personales" #: templates/settings-admin.php:2 templates/settings-personal.php:2 msgid "Encryption" -msgstr "" +msgstr "Cifráu" #: templates/settings-admin.php:5 msgid "" @@ -130,11 +131,11 @@ msgstr "" #: templates/settings-admin.php:19 templates/settings-personal.php:50 msgid "Enabled" -msgstr "" +msgstr "Habilitáu" #: templates/settings-admin.php:27 templates/settings-personal.php:58 msgid "Disabled" -msgstr "" +msgstr "Deshabilitáu" #: templates/settings-admin.php:32 msgid "Change recovery key password:" @@ -154,7 +155,7 @@ msgstr "" #: templates/settings-admin.php:56 msgid "Change Password" -msgstr "" +msgstr "Camudar conseña" #: templates/settings-personal.php:8 msgid "Your private key password no longer match your log-in password:" @@ -168,7 +169,7 @@ msgstr "" msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." -msgstr "" +msgstr "Si nun recuerdes la to contraseña vieya pues entrugar al to alministrador pa recuperar los tos ficheros." #: templates/settings-personal.php:21 msgid "Old log-in password" @@ -198,4 +199,4 @@ msgstr "" #: templates/settings-personal.php:60 msgid "Could not update file recovery" -msgstr "" +msgstr "Nun pue anovase'l ficheru de recuperación" diff --git a/l10n/ast/files_external.po b/l10n/ast/files_external.po index 6cc7ffe3e12..d330ac83e5b 100644 --- a/l10n/ast/files_external.po +++ b/l10n/ast/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-07 19:30+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 @@ -79,7 +88,7 @@ msgstr "" #: templates/settings.php:11 msgid "Options" -msgstr "" +msgstr "Opciones" #: templates/settings.php:12 msgid "Available for" @@ -99,7 +108,7 @@ msgstr "" #: templates/settings.php:97 msgid "Groups" -msgstr "" +msgstr "Grupos" #: templates/settings.php:105 msgid "Users" diff --git a/l10n/ast/files_sharing.po b/l10n/ast/files_sharing.po index 75d475c4855..9154e9f56e5 100644 --- a/l10n/ast/files_sharing.po +++ b/l10n/ast/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-07 14:16+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 20:00+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -19,7 +19,7 @@ msgstr "" #: js/share.js:33 msgid "Shared by {owner}" -msgstr "" +msgstr "Compartíu por {owner}" #: templates/authenticate.php:4 msgid "This share is password-protected" @@ -31,7 +31,7 @@ msgstr "" #: templates/authenticate.php:10 msgid "Password" -msgstr "" +msgstr "Contraseña" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." diff --git a/l10n/ast/files_trashbin.po b/l10n/ast/files_trashbin.po index 0df0166dc8f..bab374d0cd0 100644 --- a/l10n/ast/files_trashbin.po +++ b/l10n/ast/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-07 19:30+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 21:40+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -47,18 +47,18 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:18 +#: templates/index.php:19 msgid "Name" -msgstr "" +msgstr "Nome" -#: templates/index.php:21 templates/index.php:23 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" -msgstr "" +msgstr "Restaurar" -#: templates/index.php:29 +#: templates/index.php:30 msgid "Deleted" msgstr "" -#: templates/index.php:32 templates/index.php:33 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Desaniciar" diff --git a/l10n/ast/files_versions.po b/l10n/ast/files_versions.po index 0fbdc2c22ad..2fdf419af52 100644 --- a/l10n/ast/files_versions.po +++ b/l10n/ast/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Tornes Llume , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-07 14:16+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 21:40+0000\n" +"Last-Translator: Tornes Llume \n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,7 +25,7 @@ msgstr "" #: js/versions.js:39 msgid "Versions" -msgstr "" +msgstr "Versiones" #: js/versions.js:61 msgid "Failed to revert {file} to revision {timestamp}." @@ -32,12 +33,12 @@ msgstr "" #: js/versions.js:88 msgid "More versions..." -msgstr "" +msgstr "Más versiones..." #: js/versions.js:126 msgid "No other versions available" -msgstr "" +msgstr "Nun hai otres versiones disponibles" #: js/versions.js:156 msgid "Restore" -msgstr "" +msgstr "Restaurar" diff --git a/l10n/ast/lib.po b/l10n/ast/lib.po index f5115138fc9..fe01f80318e 100644 --- a/l10n/ast/lib.po +++ b/l10n/ast/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-07 19:30+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -38,7 +38,7 @@ msgstr "Personal" #: private/app.php:377 msgid "Settings" -msgstr "" +msgstr "Axustes" #: private/app.php:389 msgid "Users" @@ -161,11 +161,11 @@ msgstr "" #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" -msgstr "" +msgstr "Ficheros" #: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" -msgstr "" +msgstr "Testu" #: private/search/provider/file.php:30 msgid "Images" @@ -291,48 +291,66 @@ msgstr "" #: private/template/functions.php:133 msgid "seconds ago" -msgstr "" +msgstr "fai segundos" #: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -msgstr[1] "" +msgstr[1] "fai %n minutos" #: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -msgstr[1] "" +msgstr[1] "fai %n hores" #: private/template/functions.php:136 msgid "today" -msgstr "" +msgstr "güei" #: private/template/functions.php:137 msgid "yesterday" -msgstr "" +msgstr "ayeri" #: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -msgstr[1] "" +msgstr[1] "fai %n díes" #: private/template/functions.php:141 msgid "last month" -msgstr "" +msgstr "mes caberu" #: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -msgstr[1] "" +msgstr[1] "fai %n meses" #: private/template/functions.php:144 msgid "last year" -msgstr "" +msgstr "añu caberu" #: private/template/functions.php:145 msgid "years ago" +msgstr "fai años" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" msgstr "" diff --git a/l10n/ast/settings.po b/l10n/ast/settings.po index 3029c44d880..adb96b40df3 100644 --- a/l10n/ast/settings.po +++ b/l10n/ast/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-07 19:30+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 22:40+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -41,7 +41,7 @@ msgstr "" #: admin/controller.php:99 msgid "Email sent" -msgstr "" +msgstr "Corréu unviáu" #: admin/controller.php:101 msgid "You need to set your user email before being able to send test emails." @@ -53,7 +53,7 @@ msgstr "" #: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" -msgstr "" +msgstr "Cifráu" #: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" @@ -254,7 +254,7 @@ msgstr "" #: js/users.js:101 templates/users.php:24 templates/users.php:88 #: templates/users.php:116 msgid "Groups" -msgstr "" +msgstr "Grupos" #: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" @@ -583,11 +583,11 @@ msgstr "" #: templates/admin.php:409 msgid "More" -msgstr "" +msgstr "Más" #: templates/admin.php:410 msgid "Less" -msgstr "" +msgstr "Menos" #: templates/admin.php:416 templates/personal.php:171 msgid "Version" @@ -666,7 +666,7 @@ msgstr "" #: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" -msgstr "" +msgstr "Contraseña" #: templates/personal.php:39 msgid "Your password was changed" @@ -694,7 +694,7 @@ msgstr "" #: templates/personal.php:76 msgid "Email" -msgstr "" +msgstr "Corréu-e" #: templates/personal.php:78 msgid "Your email address" @@ -732,7 +732,7 @@ msgstr "" #: templates/personal.php:104 msgid "Cancel" -msgstr "" +msgstr "Encaboxar" #: templates/personal.php:105 msgid "Choose as profile image" @@ -775,7 +775,7 @@ msgstr "" #: templates/users.php:28 msgid "Create" -msgstr "" +msgstr "Crear" #: templates/users.php:34 msgid "Admin Recovery Password" @@ -805,7 +805,7 @@ msgstr "Otru" #: templates/users.php:85 msgid "Username" -msgstr "" +msgstr "Nome d'usuariu" #: templates/users.php:92 msgid "Storage" diff --git a/l10n/ast/user_ldap.po b/l10n/ast/user_ldap.po index f13251011b1..93779a6b297 100644 --- a/l10n/ast/user_ldap.po +++ b/l10n/ast/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 22:40+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -150,7 +150,7 @@ msgstr "" #: templates/part.settingcontrols.php:2 msgid "Save" -msgstr "" +msgstr "Guardar" #: templates/part.settingcontrols.php:4 msgid "Test Configuration" @@ -250,7 +250,7 @@ msgstr "" #: templates/part.wizard-server.php:52 msgid "Password" -msgstr "" +msgstr "Contraseña" #: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." @@ -285,7 +285,7 @@ msgstr "" #: templates/part.wizardcontrols.php:8 msgid "Continue" -msgstr "" +msgstr "Continuar" #: templates/settings.php:11 msgid "" diff --git a/l10n/ast/user_webdavauth.po b/l10n/ast/user_webdavauth.po index e3c12d518ce..2aa9fcebe56 100644 --- a/l10n/ast/user_webdavauth.po +++ b/l10n/ast/user_webdavauth.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Iñigo Varela , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-07 14:16+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 17:50+0000\n" +"Last-Translator: Iñigo Varela \n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,15 +20,15 @@ msgstr "" #: templates/settings.php:2 msgid "WebDAV Authentication" -msgstr "" +msgstr "Autenticación per aciu de WevDAV" #: templates/settings.php:3 msgid "Address: " -msgstr "" +msgstr "Direición:" #: templates/settings.php:6 msgid "" "The user credentials will be sent to this address. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " "credentials, and all other responses as valid credentials." -msgstr "" +msgstr "Les credenciales d'usuariu van unviase a esta direición. Esti complementu verifica la rempuesta y va interpretar los códigos de rempuesta HTTP 401 y 403 como credenciales inválides y toles otres rempuestes como credenciales válides." diff --git a/l10n/az/files_external.po b/l10n/az/files_external.po index 9650db35a56..444bc71d9ef 100644 --- a/l10n/az/files_external.po +++ b/l10n/az/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/az/lib.po b/l10n/az/lib.po index 75015cb94cd..7c931cb158b 100644 --- a/l10n/az/lib.po +++ b/l10n/az/lib.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: az\n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: private/app.php:236 #, php-format @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -297,11 +297,13 @@ msgstr "" msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" +msgstr[1] "" #: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" +msgstr[1] "" #: private/template/functions.php:136 msgid "today" @@ -315,6 +317,7 @@ msgstr "" msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" +msgstr[1] "" #: private/template/functions.php:141 msgid "last month" @@ -324,6 +327,7 @@ msgstr "" msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" +msgstr[1] "" #: private/template/functions.php:144 msgid "last year" @@ -332,3 +336,21 @@ msgstr "" #: private/template/functions.php:145 msgid "years ago" msgstr "" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/be/files_external.po b/l10n/be/files_external.po index d1acf2670b0..3df60f9dbbf 100644 --- a/l10n/be/files_external.po +++ b/l10n/be/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/be/lib.po b/l10n/be/lib.po index d3648c9b694..3a42b36b154 100644 --- a/l10n/be/lib.po +++ b/l10n/be/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -344,3 +344,21 @@ msgstr "У мінулым годзе" #: private/template/functions.php:145 msgid "years ago" msgstr "Гадоў таму" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/bg_BG/files_external.po b/l10n/bg_BG/files_external.po index 89bf79299d4..f748e7dfd71 100644 --- a/l10n/bg_BG/files_external.po +++ b/l10n/bg_BG/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 602638fe77c..2f128367a94 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -66,23 +66,23 @@ msgstr "" msgid "web services under your control" msgstr "уеб услуги под Ваш контрол" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "Изтеглянето като ZIP е изключено." -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "Файловете трябва да се изтеглят един по един." -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "Назад към файловете" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "Избраните файлове са прекалено големи за генерирането на ZIP архив." -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -193,8 +193,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Невалидно MS SQL потребителско име и/или парола: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Необходимо е да влезете в всъществуващ акаунт или като администратора" @@ -207,9 +207,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Грешка в базата от данни: \"%s\"" @@ -218,9 +218,9 @@ msgstr "Грешка в базата от данни: \"%s\"" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "Проблемната команда беше: \"%s\"" @@ -256,7 +256,7 @@ msgstr "Невалидно Oracle потребителско име и/или п msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Проблемната команда беше: \"%s\", име: %s, парола: %s" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "Невалидно PostgreSQL потребителско име и/или парола" @@ -268,19 +268,19 @@ msgstr "Въведете потребителско име за админист msgid "Set an admin password." msgstr "Въведете парола за администратор." -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Вашият web сървър все още не е удачно настроен да позволява синхронизация на файлове, защото WebDAV интерфейсът изглежда не работи." -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "Моля направете повторна справка с ръководството за инсталиране." -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -337,3 +337,21 @@ msgstr "последната година" #: private/template/functions.php:145 msgid "years ago" msgstr "последните години" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/bn_BD/files_external.po b/l10n/bn_BD/files_external.po index efd9a845cec..ac322b99429 100644 --- a/l10n/bn_BD/files_external.po +++ b/l10n/bn_BD/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -41,24 +41,33 @@ msgstr "Google Drive সংরক্ষণাগার নির্ধারণ msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index dc14b1ce4b3..df86a5c8f8c 100644 --- a/l10n/bn_BD/lib.po +++ b/l10n/bn_BD/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "ওয়েব সার্ভিস আপনার হাতের মুঠোয়" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "ZIP ডাউনলোড বন্ধ করা আছে।" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "ফাইলগুলো একে একে ডাউনলোড করা আবশ্যক।" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "ফাইলে ফিরে চল" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "নির্বাচিত ফাইলগুলো এতই বৃহৎ যে জিপ ফাইল তৈরী করা সম্ভব নয়।" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -336,3 +336,21 @@ msgstr "গত বছর" #: private/template/functions.php:145 msgid "years ago" msgstr "বছর পূর্বে" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/bs/files_external.po b/l10n/bs/files_external.po index 9ec2438dd5b..fbe15ff86f7 100644 --- a/l10n/bs/files_external.po +++ b/l10n/bs/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/bs/lib.po b/l10n/bs/lib.po index ddf2e1f9694..9b1d2f5cc76 100644 --- a/l10n/bs/lib.po +++ b/l10n/bs/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -340,3 +340,21 @@ msgstr "" #: private/template/functions.php:145 msgid "years ago" msgstr "" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 5926fde25bb..17d16afe763 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 06:10+0000\n" "Last-Translator: I Robot\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -233,7 +233,7 @@ msgstr "Un fitxer en conflicte" #: js/oc-dialogs.js:367 msgid "New Files" -msgstr "" +msgstr "Fitxers nous" #: js/oc-dialogs.js:368 msgid "Already existing files" diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index 61d5ecf6948..66fb2423fbd 100644 --- a/l10n/ca/files_external.po +++ b/l10n/ca/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -43,25 +43,34 @@ msgstr "Error en configurar l'emmagatzemament Google Drive" msgid "Saved" msgstr "Desat" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." -msgstr "Avís: \"smbclient\" no està instal·lat. No es pot muntar la compartició CIFS/SMB. Demaneu a l'administrador del sistema que l'instal·li." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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 "Avís: El suport FTP per PHP no està activat o no està instal·lat. No es pot muntar la compartició FTP. Demaneu a l'administrador del sistema que l'instal·li." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." -msgstr "Avís:El suport Curl de PHP no està activat o instal·lat. No es pot muntar ownCloud / WebDAV o GoogleDrive. Demaneu a l'administrador que l'instal·li." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." +msgstr "" #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index be843190732..348b20d7afe 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-19 01:55-0400\n" -"PO-Revision-Date: 2014-03-18 09:02+0000\n" -"Last-Translator: rogerc\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"Last-Translator: I Robot\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" @@ -66,23 +66,23 @@ msgstr "Imatge no vàlida" msgid "web services under your control" msgstr "controleu els vostres serveis web" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "La baixada en ZIP està desactivada." -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "Els fitxers s'han de baixar d'un en un." -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "Torna a Fitxers" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "Els fitxers seleccionats son massa grans per generar un fitxer zip." -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -268,19 +268,19 @@ msgstr "Establiu un nom d'usuari per l'administrador." msgid "Set an admin password." msgstr "Establiu una contrasenya per l'administrador." -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "El servidor web no està configurat correctament per permetre la sincronització de fitxers perquè la interfície WebDAV sembla no funcionar correctament." -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "Comproveu les guies d'instal·lació." -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "%s ha compartit »%s« amb tu" @@ -337,3 +337,21 @@ msgstr "l'any passat" #: private/template/functions.php:145 msgid "years ago" msgstr "anys enrere" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 3daadc82e18..b57e1632d7e 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 06:10+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" @@ -243,7 +243,7 @@ msgstr "Jeden konflikt souboru" #: js/oc-dialogs.js:367 msgid "New Files" -msgstr "" +msgstr "Nové soubory" #: js/oc-dialogs.js:368 msgid "Already existing files" diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index b07a223d18e..05a39f7eb80 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -43,25 +43,34 @@ msgstr "Chyba při nastavení úložiště Google Drive" msgid "Saved" msgstr "Uloženo" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." -msgstr "Varování: není nainstalován program \"smbclient\". Není možné připojení oddílů CIFS/SMB. Prosím požádejte svého správce systému ať jej nainstaluje." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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 "Varování: podpora FTP v PHP není povolena nebo není nainstalována. Není možné připojení oddílů FTP. Prosím požádejte svého správce systému ať ji nainstaluje." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." -msgstr "Varování: podpora CURL v PHP není povolena nebo není nainstalována. Není možné připojení oddílů ownCloud, WebDAV, či GoogleDrive. Prosím požádejte svého správce systému ať ji nainstaluje." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." +msgstr "" #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index c1edc976374..f613429e0bd 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-23 21:50+0000\n" -"Last-Translator: pstast \n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -70,23 +70,23 @@ msgstr "Chybný obrázek" msgid "web services under your control" msgstr "webové služby pod Vaší kontrolou" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "Stahování v ZIPu je vypnuto." -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "Soubory musí být stahovány jednotlivě." -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "Zpět k souborům" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "Vybrané soubory jsou příliš velké pro vytvoření ZIP souboru." -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -283,8 +283,8 @@ msgstr "Váš webový server není správně nastaven pro umožnění synchroniz msgid "Please double check the installation guides." msgstr "Zkonzultujte, prosím, průvodce instalací." -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "%s s vámi sdílí »%s«" @@ -345,3 +345,21 @@ msgstr "minulý rok" #: private/template/functions.php:145 msgid "years ago" msgstr "před lety" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/cy_GB/files_external.po b/l10n/cy_GB/files_external.po index c44cde13ffb..855d4d6f82b 100644 --- a/l10n/cy_GB/files_external.po +++ b/l10n/cy_GB/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index 60f778e3128..f58729ece0b 100644 --- a/l10n/cy_GB/lib.po +++ b/l10n/cy_GB/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "gwasanaethau gwe a reolir gennych" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "Mae llwytho ZIP wedi ei ddiffodd." -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "Mae angen llwytho ffeiliau i lawr fesul un." -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "Nôl i Ffeiliau" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "Mae'r ffeiliau ddewiswyd yn rhy fawr i gynhyrchu ffeil zip." -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Enw a/neu gyfrinair MS SQL annilys: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Rhaid i chi naill ai gyflwyno cyfrif presennol neu'r gweinyddwr." @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Gwall DB: \"%s\"" @@ -217,9 +217,9 @@ msgstr "Gwall DB: \"%s\"" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "Y gorchymyn wnaeth beri tramgwydd oedd: \"%s\"" @@ -255,7 +255,7 @@ msgstr "Enw a/neu gyfrinair Oracle annilys" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Y gorchymyn wnaeth beri tramgwydd oedd: \"%s\", enw: %s, cyfrinair: %s" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "Enw a/neu gyfrinair PostgreSQL annilys" @@ -267,19 +267,19 @@ msgstr "Creu enw defnyddiwr i'r gweinyddwr." msgid "Set an admin password." msgstr "Gosod cyfrinair y gweinyddwr." -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Nid yw eich gweinydd wedi'i gyflunio eto i ganiatáu cydweddu ffeiliau oherwydd bod y rhyngwyneb WebDAV wedi torri." -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "Gwiriwch y canllawiau gosod eto." -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -344,3 +344,21 @@ msgstr "y llynedd" #: private/template/functions.php:145 msgid "years ago" msgstr "blwyddyn yn ôl" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/da/core.po b/l10n/da/core.po index 7cee7a2d715..6a57c445c88 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 06:10+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" @@ -237,7 +237,7 @@ msgstr "En filkonflikt" #: js/oc-dialogs.js:367 msgid "New Files" -msgstr "" +msgstr "Nye filer" #: js/oc-dialogs.js:368 msgid "Already existing files" diff --git a/l10n/da/files_external.po b/l10n/da/files_external.po index c6be8d84f06..4a0d6ece905 100644 --- a/l10n/da/files_external.po +++ b/l10n/da/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -42,25 +42,34 @@ msgstr "Fejl ved konfiguration af Google Drive plads" msgid "Saved" msgstr "Gemt" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." -msgstr " Advarsel: \"smbclient\" ikke er installeret. Montering af CIFS / SMB delinger er ikke muligt. Spørg din systemadministrator om at installere det." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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 " Advarsel: FTP-understøttelse i PHP ikke er aktiveret eller installeret. Montering af FTP delinger er ikke muligt. Spørg din systemadministrator om at installere det." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." -msgstr "Advarsel: Understøttelsen for Curl i PHP er enten ikke aktiveret eller ikke installeret. Det er ikke muligt, at montere ownCloud / WebDAV eller GoogleDrive. Spørg din system administrator om at installere det. " +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." +msgstr "" #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index b0a5605312e..94ac0b43f36 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-25 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 11:30+0000\n" -"Last-Translator: Sappe\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -69,23 +69,23 @@ msgstr "Ugyldigt billede" msgid "web services under your control" msgstr "Webtjenester under din kontrol" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "ZIP-download er slået fra." -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "Filer skal downloades en for en." -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "Tilbage til Filer" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "De markerede filer er for store til at generere en ZIP-fil." -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -282,8 +282,8 @@ msgstr "Din webserver er endnu ikke sat op til at tillade fil synkronisering for msgid "Please double check the installation guides." msgstr "Dobbelttjek venligst installations vejledningerne." -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "%s delte »%s« med sig" @@ -340,3 +340,21 @@ msgstr "sidste år" #: private/template/functions.php:145 msgid "years ago" msgstr "år siden" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/de/core.po b/l10n/de/core.po index 7cf5b2bf1cf..ba8d5f905b9 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 06:10+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" @@ -240,7 +240,7 @@ msgstr "Ein Dateikonflikt" #: js/oc-dialogs.js:367 msgid "New Files" -msgstr "" +msgstr "Neue Dateien" #: js/oc-dialogs.js:368 msgid "Already existing files" diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index 5357def2bae..f8273641768 100644 --- a/l10n/de/files_external.po +++ b/l10n/de/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -44,25 +44,34 @@ msgstr "Fehler beim Einrichten von Google Drive" msgid "Saved" msgstr "Gespeichert" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." -msgstr "Warnung: \"smbclient\" ist nicht installiert. Das Einhängen von CIFS/SMB-Freigaben ist nicht möglich. Bitte Deinen System-Administrator, dies zu installieren." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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 "Warnung:: Die FTP Unterstützung von PHP ist nicht aktiviert oder installiert. Bitte wende Dich an Deinen Systemadministrator." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." -msgstr "Warnung: Die Curl-Unterstützung in PHP ist nicht aktiviert oder installiert. Das Einbinden von ownCloud / WebDav der GoogleDrive-Freigaben ist nicht möglich. Bitte Deinen Systemadminstrator um die Installation. " +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." +msgstr "" #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index 70f1e16ede0..811013a102a 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 11:00+0000\n" -"Last-Translator: stefanniedermann \n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -70,23 +70,23 @@ msgstr "Ungültiges Bild" msgid "web services under your control" msgstr "Web-Services unter Deiner Kontrolle" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "Der ZIP-Download ist deaktiviert." -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "Die Dateien müssen einzeln heruntergeladen werden." -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "Zurück zu \"Dateien\"" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen." -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -197,8 +197,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL Benutzername und/oder Password ungültig: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Du musst entweder ein existierendes Benutzerkonto oder das Administratoren-Konto angeben." @@ -211,9 +211,9 @@ msgstr "MySQL/MariaDB Benutzername und/oder Passwort sind nicht gültig" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "DB Fehler: \"%s\"" @@ -222,9 +222,9 @@ msgstr "DB Fehler: \"%s\"" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "Fehlerhafter Befehl war: \"%s\"" @@ -260,7 +260,7 @@ msgstr "Oracle Benutzername und/oder Passwort ungültig" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL Benutzername und/oder Passwort ungültig" @@ -272,19 +272,19 @@ msgstr "Setze Administrator Benutzername." msgid "Set an admin password." msgstr "Setze Administrator Passwort" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Dein Web-Server ist noch nicht für Datei-Synchronisation bereit, weil die WebDAV-Schnittstelle vermutlich defekt ist." -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "Bitte prüfe die Installationsanleitungen." -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "%s teilte »%s« mit Dir" @@ -341,3 +341,21 @@ msgstr "Letztes Jahr" #: private/template/functions.php:145 msgid "years ago" msgstr "Vor Jahren" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/de_AT/files_external.po b/l10n/de_AT/files_external.po index e004446e674..f838de9ba61 100644 --- a/l10n/de_AT/files_external.po +++ b/l10n/de_AT/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/de_AT/lib.po b/l10n/de_AT/lib.po index 535f8b9b15d..bc182373dba 100644 --- a/l10n/de_AT/lib.po +++ b/l10n/de_AT/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -336,3 +336,21 @@ msgstr "" #: private/template/functions.php:145 msgid "years ago" msgstr "" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/de_CH/core.po b/l10n/de_CH/core.po index dcd044d0b5c..a64e658ce1e 100644 --- a/l10n/de_CH/core.po +++ b/l10n/de_CH/core.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 06:10+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" @@ -240,7 +240,7 @@ msgstr "" #: js/oc-dialogs.js:367 msgid "New Files" -msgstr "" +msgstr "Neue Dateien" #: js/oc-dialogs.js:368 msgid "Already existing files" diff --git a/l10n/de_CH/files_external.po b/l10n/de_CH/files_external.po index 85ed7c7d1b8..e1ca4b4cb2d 100644 --- a/l10n/de_CH/files_external.po +++ b/l10n/de_CH/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -42,25 +42,34 @@ msgstr "Fehler beim Einrichten von Google Drive" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." -msgstr "Warnung: «smbclient» ist nicht installiert. Das Einhängen von CIFS/SMB-Freigaben ist nicht möglich. Bitten Sie Ihren Systemadministrator, dies zu installieren." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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 "Warnung:: Die FTP Unterstützung von PHP ist nicht aktiviert oder installiert. Bitte wenden Sie sich an Ihren Systemadministrator." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." -msgstr "Achtung: Die Curl-Unterstützung von PHP ist nicht aktiviert oder installiert. Das Laden von ownCloud / WebDAV oder GoogleDrive Freigaben ist nicht möglich. Bitte Sie Ihren Systemadministrator, das Modul zu installieren." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." +msgstr "" #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/de_CH/lib.po b/l10n/de_CH/lib.po index 0694cb86099..ec7ff99968b 100644 --- a/l10n/de_CH/lib.po +++ b/l10n/de_CH/lib.po @@ -6,13 +6,13 @@ # FlorianScholz , 2013 # FlorianScholz , 2013 # Mario Siegmann , 2013 -# traductor , 2013 +# traductor, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -69,23 +69,23 @@ msgstr "" msgid "web services under your control" msgstr "Web-Services unter Ihrer Kontrolle" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "Der ZIP-Download ist deaktiviert." -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "Die Dateien müssen einzeln heruntergeladen werden." -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "Zurück zu \"Dateien\"" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "Die gewählten Dateien sind zu gross, um eine ZIP-Datei zu erstellen." -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -196,8 +196,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL Benutzername und/oder Passwort ungültig: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Sie müssen entweder ein existierendes Benutzerkonto oder das Administratoren-Konto angeben." @@ -210,9 +210,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "DB Fehler: \"%s\"" @@ -221,9 +221,9 @@ msgstr "DB Fehler: \"%s\"" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "Fehlerhafter Befehl war: \"%s\"" @@ -259,7 +259,7 @@ msgstr "Oracle Benutzername und/oder Passwort ungültig" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL Benutzername und/oder Passwort ungültig" @@ -271,19 +271,19 @@ msgstr "Setze Administrator Benutzername." msgid "Set an admin password." msgstr "Setze Administrator Passwort" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfiguriert, weil die WebDAV-Schnittstelle vermutlich defekt ist." -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "Bitte prüfen Sie die Installationsanleitungen." -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "%s teilt »%s« mit Ihnen" @@ -340,3 +340,21 @@ msgstr "Letztes Jahr" #: private/template/functions.php:145 msgid "years ago" msgstr "Vor Jahren" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index c04fc90ee20..dc0425ed00f 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 06:10+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" @@ -241,7 +241,7 @@ msgstr "Ein Dateikonflikt" #: js/oc-dialogs.js:367 msgid "New Files" -msgstr "" +msgstr "Neue Dateien" #: js/oc-dialogs.js:368 msgid "Already existing files" diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index 799f68c1df6..d18946d9c29 100644 --- a/l10n/de_DE/files_external.po +++ b/l10n/de_DE/files_external.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -45,25 +45,34 @@ msgstr "Fehler beim Einrichten von Google Drive" msgid "Saved" msgstr "Gespeichert" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." -msgstr "Warnung: \"smbclient\" ist nicht installiert. Das Einhängen von CIFS/SMB-Freigaben ist nicht möglich. Bitten Sie Ihren Systemadministrator, dies zu installieren." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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 "Warnung:: Die FTP Unterstützung von PHP ist nicht aktiviert oder installiert. Bitte wenden Sie sich an Ihren Systemadministrator." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." -msgstr "Achtung: Die Curl-Unterstützung von PHP ist nicht aktiviert oder installiert. Das Laden von ownCloud / WebDAV oder GoogleDrive Freigaben ist nicht möglich. Bitte Sie Ihren Systemadministrator, das Modul zu installieren." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." +msgstr "" #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index 9bd58decbd8..a6321e11a88 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -5,15 +5,15 @@ # Translators: # Mario Siegmann , 2013 # stefanniedermann , 2014 -# traductor , 2013 +# traductor, 2013 # noxin , 2013 # kabum , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 21:54+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -70,23 +70,23 @@ msgstr "Ungültiges Bild" msgid "web services under your control" msgstr "Web-Services unter Ihrer Kontrolle" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "Der ZIP-Download ist deaktiviert." -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "Die Dateien müssen einzeln heruntergeladen werden." -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "Zurück zu \"Dateien\"" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen." -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -197,8 +197,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL Benutzername und/oder Passwort ungültig: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Sie müssen entweder ein existierendes Benutzerkonto oder das Administratoren-Konto angeben." @@ -211,9 +211,9 @@ msgstr "MySQL/MariaDB Benutzername und/oder Passwort sind nicht gültig" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "DB Fehler: \"%s\"" @@ -222,9 +222,9 @@ msgstr "DB Fehler: \"%s\"" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "Fehlerhafter Befehl war: \"%s\"" @@ -260,7 +260,7 @@ msgstr "Oracle Benutzername und/oder Passwort ungültig" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL Benutzername und/oder Passwort ungültig" @@ -272,19 +272,19 @@ msgstr "Setze Administrator Benutzername." msgid "Set an admin password." msgstr "Setze Administrator Passwort" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfiguriert, weil die WebDAV-Schnittstelle vermutlich defekt ist." -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "Bitte prüfen Sie die Installationsanleitungen." -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "%s hat »%s« mit Ihnen geteilt" @@ -341,3 +341,21 @@ msgstr "Letztes Jahr" #: private/template/functions.php:145 msgid "years ago" msgstr "Vor Jahren" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/el/core.po b/l10n/el/core.po index e12cf5bd9ae..cc9851ee84b 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 06:10+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" @@ -240,7 +240,7 @@ msgstr "Ένα αρχείο διαφέρει" #: js/oc-dialogs.js:367 msgid "New Files" -msgstr "" +msgstr "Νέα Αρχεία" #: js/oc-dialogs.js:368 msgid "Already existing files" diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index d5fdc2c7e8c..8ffa8026920 100644 --- a/l10n/el/files_external.po +++ b/l10n/el/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -43,25 +43,34 @@ msgstr "Σφάλμα ρυθμίζωντας αποθήκευση Google Drive " msgid "Saved" msgstr "Αποθηκεύτηκαν" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." -msgstr "Προσοχή: Ο \"smbclient\" δεν εγκαταστάθηκε. Δεν είναι δυνατή η προσάρτηση CIFS/SMB. Παρακαλώ ενημερώστε τον διαχειριστή συστήματος να το εγκαταστήσει." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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 "Προσοχή: Η υποστήριξη FTP στην PHP δεν ενεργοποιήθηκε ή εγκαταστάθηκε. Δεν είναι δυνατή η προσάρτηση FTP. Παρακαλώ ενημερώστε τον διαχειριστή συστήματος να το εγκαταστήσει." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." -msgstr "<Προειδοποίηση Η υποστήριξη του συστήματος Curl στο PHP δεν είναι ενεργοποιημένη ή εγκαταστημένη. Η αναπαραγωγή του ownCloud/WebDAV ή GoogleDrive δεν είναι δυνατή. Παρακαλώ ρωτήστε τον διαχειριστλη του συστήματος για την εγκατάσταση. " +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." +msgstr "" #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index 3428c9daded..80a7f0699a7 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-01 01:55-0400\n" -"PO-Revision-Date: 2014-03-31 16:30+0000\n" -"Last-Translator: pe_ppe \n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -282,8 +282,8 @@ msgstr "Ο διακομιστής σας δεν έχει ρυθμιστεί κα msgid "Please double check the installation guides." msgstr "Ελέγξτε ξανά τις οδηγίες εγκατάστασης." -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "Ο %s διαμοιράστηκε μαζί σας το »%s«" @@ -340,3 +340,21 @@ msgstr "τελευταίο χρόνο" #: private/template/functions.php:145 msgid "years ago" msgstr "χρόνια πριν" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/en@pirate/files_external.po b/l10n/en@pirate/files_external.po index 054964abe08..b4caece8b5d 100644 --- a/l10n/en@pirate/files_external.po +++ b/l10n/en@pirate/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/en@pirate/lib.po b/l10n/en@pirate/lib.po index de836bfdfb5..ac875a524d7 100644 --- a/l10n/en@pirate/lib.po +++ b/l10n/en@pirate/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "web services under your control" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -336,3 +336,21 @@ msgstr "" #: private/template/functions.php:145 msgid "years ago" msgstr "" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/en_GB/core.po b/l10n/en_GB/core.po index 1dd7f065f01..bb299a375b4 100644 --- a/l10n/en_GB/core.po +++ b/l10n/en_GB/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 12:10+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" @@ -231,11 +231,11 @@ msgstr "One file conflict" #: js/oc-dialogs.js:367 msgid "New Files" -msgstr "" +msgstr "New Files" #: js/oc-dialogs.js:368 msgid "Already existing files" -msgstr "" +msgstr "Already existing files" #: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" diff --git a/l10n/en_GB/files_external.po b/l10n/en_GB/files_external.po index f4245bb4ce3..83c6537a620 100644 --- a/l10n/en_GB/files_external.po +++ b/l10n/en_GB/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" -"Last-Translator: mnestis \n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -42,25 +42,34 @@ msgstr "Error configuring Google Drive storage" msgid "Saved" msgstr "Saved" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." -msgstr "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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 "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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." -msgstr "Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." +msgstr "" #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/en_GB/lib.po b/l10n/en_GB/lib.po index 9eb29ced3e9..d65f8d73bd1 100644 --- a/l10n/en_GB/lib.po +++ b/l10n/en_GB/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-18 01:55-0400\n" -"PO-Revision-Date: 2014-03-17 13:08+0000\n" -"Last-Translator: mnestis \n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -66,23 +66,23 @@ msgstr "Invalid image" msgid "web services under your control" msgstr "web services under your control" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "ZIP download is turned off." -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "Files need to be downloaded one by one." -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "Back to Files" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "Selected files too large to generate zip file." -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -268,19 +268,19 @@ msgstr "Set an admin username." msgid "Set an admin password." msgstr "Set an admin password." -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Your web server is not yet properly setup to allow files synchronisation because the WebDAV interface seems to be broken." -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "Please double check the installation guides." -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "%s shared \"%s\" with you" @@ -337,3 +337,21 @@ msgstr "last year" #: private/template/functions.php:145 msgid "years ago" msgstr "years ago" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/en_GB/user_ldap.po b/l10n/en_GB/user_ldap.po index 40e5e22c87e..005aa3cebae 100644 --- a/l10n/en_GB/user_ldap.po +++ b/l10n/en_GB/user_ldap.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 12:10+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" @@ -422,14 +422,14 @@ msgstr "When switched on, groups that contain groups are supported. (Only works #: templates/settings.php:40 msgid "Paging chunksize" -msgstr "" +msgstr "Paging chunksize" #: templates/settings.php:40 msgid "" "Chunksize used for paged LDAP searches that may return bulky results like " "user or group enumeration. (Setting it 0 disables paged LDAP searches in " "those situations.)" -msgstr "" +msgstr "Chunksize used for paged LDAP searches that may return bulky results like user or group enumeration. (Setting it 0 disables paged LDAP searches in those situations.)" #: templates/settings.php:42 msgid "Special Attributes" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index c82b3cafbeb..36bf5f5ca70 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 06:10+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" @@ -232,7 +232,7 @@ msgstr "Unu dosierkonflikto" #: js/oc-dialogs.js:367 msgid "New Files" -msgstr "" +msgstr "Novaj dosieroj" #: js/oc-dialogs.js:368 msgid "Already existing files" diff --git a/l10n/eo/files_external.po b/l10n/eo/files_external.po index f9856c41220..b92b2672f90 100644 --- a/l10n/eo/files_external.po +++ b/l10n/eo/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -41,24 +41,33 @@ msgstr "Eraro dum agordado de la memorservo Google Drive" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index 61481d103bf..ac9e0fc8f4f 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -66,23 +66,23 @@ msgstr "Ne validas bildo" msgid "web services under your control" msgstr "TTT-servoj regataj de vi" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "ZIP-elŝuto estas malkapabligita." -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "Dosieroj devas elŝutiĝi unuope." -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "Reen al la dosieroj" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "La elektitaj dosieroj tro grandas por genero de ZIP-dosiero." -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -193,8 +193,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "La uzantonomo de MS SQL aŭ la pasvorto ne validas: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -207,9 +207,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Datumbaza eraro: “%s”" @@ -218,9 +218,9 @@ msgstr "Datumbaza eraro: “%s”" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -256,7 +256,7 @@ msgstr "La uzantonomo de Oracle aŭ la pasvorto ne validas" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "La uzantonomo de PostgreSQL aŭ la pasvorto ne validas" @@ -268,19 +268,19 @@ msgstr "Starigi administran uzantonomon." msgid "Set an admin password." msgstr "Starigi administran pasvorton." -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Via TTT-servilo ankoraŭ ne ĝuste agordiĝis por permesi sinkronigi dosierojn ĉar la WebDAV-interfaco ŝajnas rompita." -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "Bonvolu duoble kontroli la gvidilon por instalo." -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "%s kunhavigis “%s” kun vi" @@ -337,3 +337,21 @@ msgstr "lastajare" #: private/template/functions.php:145 msgid "years ago" msgstr "jaroj antaŭe" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/es/core.po b/l10n/es/core.po index 808e4ef74ff..4aad3e3b44e 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 20:50+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" @@ -244,11 +244,11 @@ msgstr "On conflicto de archivo" #: js/oc-dialogs.js:367 msgid "New Files" -msgstr "" +msgstr "Nuevos Archivos" #: js/oc-dialogs.js:368 msgid "Already existing files" -msgstr "" +msgstr "Archivos ya existentes" #: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" diff --git a/l10n/es/files_external.po b/l10n/es/files_external.po index 15440edc23d..097fda073bc 100644 --- a/l10n/es/files_external.po +++ b/l10n/es/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" -"Last-Translator: Art O. Pal \n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -43,25 +43,34 @@ msgstr "Error configurando el almacenamiento de Google Drive" msgid "Saved" msgstr "Guardado" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." -msgstr "Advertencia: El cliente smb (smbclient) no se encuentra instalado. El montado de archivos o ficheros CIFS/SMB no es posible. Por favor pida al administrador de su sistema que lo instale." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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 "Advertencia: El soporte de FTP en PHP no se encuentra instalado. El montado de archivos o ficheros FTP no es posible. Por favor pida al administrador de su sistema que lo instale." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." -msgstr "Advertencia: El soporte de Curl en PHP no está activado ni instalado. El montado de ownCloud, WebDAV o GoogleDrive no es posible. Pida al administrador de su sistema que lo instale." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." +msgstr "" #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index 994e3b4d6ea..b5958c392d1 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 15:31+0000\n" -"Last-Translator: Art O. Pal \n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -72,23 +72,23 @@ msgstr "Imagen inválida" msgid "web services under your control" msgstr "Servicios web bajo su control" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "La descarga en ZIP está desactivada." -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "Los archivos deben ser descargados uno por uno." -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "Volver a Archivos" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "Los archivos seleccionados son demasiado grandes para generar el archivo zip." -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -199,8 +199,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Usuario y/o contraseña de MS SQL no válidos: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Tiene que ingresar una cuenta existente o la del administrador." @@ -213,9 +213,9 @@ msgstr "Nombre de usuario o contraseña de MySQL/MariaDB inválidos" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Error BD: \"%s\"" @@ -224,9 +224,9 @@ msgstr "Error BD: \"%s\"" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "Comando infractor: \"%s\"" @@ -262,7 +262,7 @@ msgstr "Usuario y/o contraseña de Oracle no válidos" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Comando infractor: \"%s\", nombre: %s, contraseña: %s" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "Usuario y/o contraseña de PostgreSQL no válidos" @@ -274,19 +274,19 @@ msgstr "Configurar un nombre de usuario del administrador" msgid "Set an admin password." msgstr "Configurar la contraseña del administrador." -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Su servidor web aún no está configurado adecuadamente para permitir sincronización de archivos ya que la interfaz WebDAV parece no estar funcionando." -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "Por favor, vuelva a comprobar las guías de instalación." -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "%s ha compatido »%s« contigo" @@ -343,3 +343,21 @@ msgstr "año pasado" #: private/template/functions.php:145 msgid "years ago" msgstr "hace años" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index 422d04ec0d9..ad7d518ec14 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 06:10+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" @@ -232,7 +232,7 @@ msgstr "Un archivo en conflicto" #: js/oc-dialogs.js:367 msgid "New Files" -msgstr "" +msgstr "Nuevos archivos" #: js/oc-dialogs.js:368 msgid "Already existing files" diff --git a/l10n/es_AR/files_external.po b/l10n/es_AR/files_external.po index 16581163453..84191efc644 100644 --- a/l10n/es_AR/files_external.po +++ b/l10n/es_AR/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -42,25 +42,34 @@ msgstr "Error al configurar el almacenamiento de Google Drive" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." -msgstr "Advertencia: El cliente smb \"smbclient\" no está instalado. Montar archivos CIFS/SMB no es posible. Por favor, pedile al administrador de tu sistema que lo instale." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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 "Advertencia: El soporte de FTP en PHP no está instalado. Montar archivos FTP no es posible. Por favor, pedile al administrador de tu sistema que lo instale." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." -msgstr "Advertencia: El soporte de Curl de PHP no está activo ni instalado. Montar servicios ownCloud, WebDAV y/o GoogleDrive no será posible. Pedile al administrador del sistema que lo instale." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." +msgstr "" #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index 338ad790c09..af7dd38bda3 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -67,23 +67,23 @@ msgstr "Imagen inválida" msgid "web services under your control" msgstr "servicios web sobre los que tenés control" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "La descarga en ZIP está desactivada." -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "Los archivos deben ser descargados de a uno." -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "Volver a Archivos" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "Los archivos seleccionados son demasiado grandes para generar el archivo zip." -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -194,8 +194,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Nombre de usuario y contraseña de MS SQL no son válidas: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Tenés que ingresar una cuenta existente o el administrador." @@ -208,9 +208,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Error DB: \"%s\"" @@ -219,9 +219,9 @@ msgstr "Error DB: \"%s\"" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "El comando no comprendido es: \"%s\"" @@ -257,7 +257,7 @@ msgstr "El nombre de usuario y/o contraseña no son válidos" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "El comando no comprendido es: \"%s\", nombre: \"%s\", contraseña: \"%s\"" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "Nombre de usuario o contraseña PostgradeSQL inválido." @@ -269,19 +269,19 @@ msgstr "Configurar un nombre de administrador." msgid "Set an admin password." msgstr "Configurar una contraseña de administrador." -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Tu servidor web no está configurado todavía para permitir sincronización de archivos porque la interfaz WebDAV parece no funcionar." -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "Por favor, comprobá nuevamente la guía de instalación." -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "%s compartió \"%s\" con vos" @@ -338,3 +338,21 @@ msgstr "el año pasado" #: private/template/functions.php:145 msgid "years ago" msgstr "años atrás" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/es_CL/files_external.po b/l10n/es_CL/files_external.po index df72d217036..556ec2e34c7 100644 --- a/l10n/es_CL/files_external.po +++ b/l10n/es_CL/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/es_CL/lib.po b/l10n/es_CL/lib.po index 30b584c236c..ab7e0025c78 100644 --- a/l10n/es_CL/lib.po +++ b/l10n/es_CL/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -336,3 +336,21 @@ msgstr "último año" #: private/template/functions.php:145 msgid "years ago" msgstr "años anteriores" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/es_MX/files_external.po b/l10n/es_MX/files_external.po index 654db481cad..85a74353c10 100644 --- a/l10n/es_MX/files_external.po +++ b/l10n/es_MX/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -41,25 +41,34 @@ msgstr "Error configurando el almacenamiento de Google Drive" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." -msgstr "Advertencia: El cliente \"smbclient\" no se encuentra instalado. El montado de carpetas CIFS/SMB no es posible. Por favor pida al administrador de su sistema que lo instale." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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 "Advertencia: El soporte de FTP en PHP no se encuentra instalado. El montado de carpetas FTP no es posible. Por favor pida al administrador de su sistema que lo instale." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." -msgstr "Advertencia: El soporte de Curl en PHP no está activado ni instalado. El montado de ownCloud, WebDAV o GoogleDrive no es posible. Pida al administrador de su sistema que lo instale." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." +msgstr "" #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/es_MX/lib.po b/l10n/es_MX/lib.po index 239fda1a7ef..30dd734868e 100644 --- a/l10n/es_MX/lib.po +++ b/l10n/es_MX/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -65,23 +65,23 @@ msgstr "Imagen inválida" msgid "web services under your control" msgstr "Servicios web bajo su control" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "La descarga en ZIP está desactivada." -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "Los archivos deben ser descargados uno por uno." -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "Volver a Archivos" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "Los archivos seleccionados son demasiado grandes para generar el archivo zip." -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Usuario y/o contraseña de MS SQL no válidos: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Tiene que ingresar una cuenta existente o la del administrador." @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Error BD: \"%s\"" @@ -217,9 +217,9 @@ msgstr "Error BD: \"%s\"" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "Comando infractor: \"%s\"" @@ -255,7 +255,7 @@ msgstr "Usuario y/o contraseña de Oracle no válidos" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Comando infractor: \"%s\", nombre: %s, contraseña: %s" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "Usuario y/o contraseña de PostgreSQL no válidos" @@ -267,19 +267,19 @@ msgstr "Configurar un nombre de usuario del administrador" msgid "Set an admin password." msgstr "Configurar la contraseña del administrador." -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Su servidor web aún no está configurado adecuadamente para permitir sincronización de archivos ya que la interfaz WebDAV parece no estar funcionando." -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "Por favor, vuelva a comprobar las guías de instalación." -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "%s ha compartido »%s« contigo" @@ -336,3 +336,21 @@ msgstr "año pasado" #: private/template/functions.php:145 msgid "years ago" msgstr "hace años" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index f006da74b91..686bc7973e1 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 06:10+0000\n" "Last-Translator: I Robot\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -232,7 +232,7 @@ msgstr "Üks failikonflikt" #: js/oc-dialogs.js:367 msgid "New Files" -msgstr "" +msgstr "Uued failid" #: js/oc-dialogs.js:368 msgid "Already existing files" diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index 7e81ca1b008..094d7f16ab5 100644 --- a/l10n/et_EE/files_external.po +++ b/l10n/et_EE/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-07 15:10+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,25 +43,34 @@ msgstr "Viga Google Drive'i salvestusruumi seadistamisel" msgid "Saved" msgstr "Salvestatud" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." -msgstr "Hoiatus: \"smbclient\" pole paigaldatud. Jagatud CIFS/SMB hoidlate ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata SAMBA tugi." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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 "Hoiatus: PHP-s puudub FTP tugi. Jagatud FTP hoidlate ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata FTP tugi." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." -msgstr "Hoiatus: PHP-s puudub Curl tugi. Jagatud ownCloud / WebDAV või GoogleDrive ühendamine pole võimalik. Palu oma süsteemihalduril see paigaldada." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." +msgstr "" #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index b2b36c19447..22ad38b16d2 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-01 08:10+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -280,8 +280,8 @@ msgstr "Veebiserveri ei ole veel korralikult seadistatud võimaldamaks failide s msgid "Please double check the installation guides." msgstr "Palun tutvu veelkord paigalduse juhenditega." -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "%s jagas sinuga »%s«" @@ -338,3 +338,21 @@ msgstr "viimasel aastal" #: private/template/functions.php:145 msgid "years ago" msgstr "aastat tagasi" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index aa87563e834..bbfc2bbca11 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 06:10+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" @@ -232,7 +232,7 @@ msgstr "Fitxategi batek konfliktua sortu du" #: js/oc-dialogs.js:367 msgid "New Files" -msgstr "" +msgstr "Fitxategi Berriak" #: js/oc-dialogs.js:368 msgid "Already existing files" diff --git a/l10n/eu/files_external.po b/l10n/eu/files_external.po index 1a98ee665bf..5d1aca46839 100644 --- a/l10n/eu/files_external.po +++ b/l10n/eu/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -42,25 +42,34 @@ msgstr "Errore bat egon da Google Drive biltegiratzea konfiguratzean" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." -msgstr "Abisua: \"smbclient\" ez dago instalatuta. CIFS/SMB partekatutako karpetak montatzea ez da posible. Mesedez eskatu zure sistema kudeatzaileari instalatzea." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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 "Abisua: PHPren FTP modulua ez dago instalatuta edo gaitua. FTP partekatutako karpetak montatzea ez da posible. Mesedez eskatu zure sistema kudeatzaileari instalatzea." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." -msgstr "Abisua: Curl euskarri PHP modulua ez dago instalatuta edo gaitua. Ezinezko da ownCloud /WebDAV GoogleDrive-n muntatzea. Mesedez eskatu sistema kudeatzaileari instala dezan. " +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." +msgstr "" #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index cb55fbd589f..46c2edf7e3f 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -67,23 +67,23 @@ msgstr "Baliogabeko irudia" msgid "web services under your control" msgstr "web zerbitzuak zure kontrolpean" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "ZIP deskarga ez dago gaituta." -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "Fitxategiak banan-banan deskargatu behar dira." -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "Itzuli fitxategietara" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "Hautatuko fitxategiak oso handiak dira zip fitxategia sortzeko." -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -194,8 +194,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL erabiltzaile izena edota pasahitza ez dira egokiak: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Existitzen den kontu bat edo administradorearena jarri behar duzu." @@ -208,9 +208,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "DB errorea: \"%s\"" @@ -219,9 +219,9 @@ msgstr "DB errorea: \"%s\"" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "Errorea komando honek sortu du: \"%s\"" @@ -257,7 +257,7 @@ msgstr "Oracle erabiltzaile edota pasahitza ez dira egokiak." msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Errorea komando honek sortu du: \"%s\", izena: %s, pasahitza: %s" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL erabiltzaile edota pasahitza ez dira egokiak." @@ -269,19 +269,19 @@ msgstr "Ezarri administraziorako erabiltzaile izena." msgid "Set an admin password." msgstr "Ezarri administraziorako pasahitza." -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Zure web zerbitzaria ez dago oraindik ongi konfiguratuta fitxategien sinkronizazioa egiteko, WebDAV interfazea ongi ez dagoela dirudi." -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "Mesedez begiratu instalazio gidak." -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "%s-ek »%s« zurekin partekatu du" @@ -338,3 +338,21 @@ msgstr "joan den urtean" #: private/template/functions.php:145 msgid "years ago" msgstr "urte" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/eu_ES/files_external.po b/l10n/eu_ES/files_external.po index 2817e15f6d4..dbc51914a58 100644 --- a/l10n/eu_ES/files_external.po +++ b/l10n/eu_ES/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/eu_ES/lib.po b/l10n/eu_ES/lib.po index f24e2561ea6..73af4f395d6 100644 --- a/l10n/eu_ES/lib.po +++ b/l10n/eu_ES/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -336,3 +336,21 @@ msgstr "" #: private/template/functions.php:145 msgid "years ago" msgstr "" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 119af666fc7..c90f3f0654d 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 06:10+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" @@ -226,7 +226,7 @@ msgstr "" #: js/oc-dialogs.js:367 msgid "New Files" -msgstr "" +msgstr "فایل های جدید" #: js/oc-dialogs.js:368 msgid "Already existing files" diff --git a/l10n/fa/files_external.po b/l10n/fa/files_external.po index da40a9ffa6f..f5d47a10677 100644 --- a/l10n/fa/files_external.po +++ b/l10n/fa/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -42,25 +42,34 @@ msgstr "خطا به هنگام تنظیم فضای Google Drive" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." -msgstr "خطا: \"smbclient\" نصب نشده است. نصب و راه اندازی سهام CIFS/SMB امکان پذیر نمیباشد. لطفا از مدیریت سازمان خود برای راه اندازی آن درخواست نمایید." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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 "خطا: پشتیبانی FTP در PHP فعال نمی باشد یا نصب نشده است. نصب و راه اندازی از سهم های FTP امکان پذیر نمی باشد. لطفا از مدیر سیستم خود برای راه اندازی آن درخواست\nکنید." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." -msgstr "خطا: پشتیبانی Curl فعال نمی باشد یا نصب نشده است. نصب و راه اندازی ownCloud / WebDAV یا GoogleDrive امکان پذیر نیست. لطفا از مدیر سیستم خود برای نصب آن درخواست کنید." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." +msgstr "" #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index fa7f91fd3c2..98fd26210e5 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -66,23 +66,23 @@ msgstr "" msgid "web services under your control" msgstr "سرویس های تحت وب در کنترل شما" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "دانلود به صورت فشرده غیر فعال است" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "فایل ها باید به صورت یکی یکی دانلود شوند" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "بازگشت به فایل ها" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "فایل های انتخاب شده بزرگتر از آن هستند که بتوان یک فایل فشرده تولید کرد" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -193,8 +193,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "نام کاربری و / یا رمزعبور MS SQL معتبر نیست: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "شما نیاز به وارد کردن یک حساب کاربری موجود یا حساب مدیریتی دارید." @@ -207,9 +207,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "خطای پایگاه داده: \"%s\"" @@ -218,9 +218,9 @@ msgstr "خطای پایگاه داده: \"%s\"" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "دستور متخلف عبارت است از: \"%s\"" @@ -256,7 +256,7 @@ msgstr "نام کاربری و / یا رمزعبور اراکل معتبر نی msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "دستور متخلف عبارت است از: \"%s\"، نام: \"%s\"، رمزعبور:\"%s\"" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL نام کاربری و / یا رمزعبور معتبر نیست." @@ -268,19 +268,19 @@ msgstr "یک نام کاربری برای مدیر تنظیم نمایید." msgid "Set an admin password." msgstr "یک رمزعبور برای مدیر تنظیم نمایید." -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "احتمالاً وب سرور شما طوری تنظیم نشده است که اجازه ی همگام سازی فایلها را بدهد زیرا به نظر میرسد رابط WebDAV از کار افتاده است." -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "لطفاً دوباره راهنمای نصبرا بررسی کنید." -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "%s به اشتراک گذاشته شده است »%s« توسط شما" @@ -333,3 +333,21 @@ msgstr "سال قبل" #: private/template/functions.php:145 msgid "years ago" msgstr "سال‌های قبل" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 267d952cacc..bca5b27b15c 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 08:00+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" @@ -233,11 +233,11 @@ msgstr "Yhden tiedoston ristiriita" #: js/oc-dialogs.js:367 msgid "New Files" -msgstr "" +msgstr "Uudet tiedostot" #: js/oc-dialogs.js:368 msgid "Already existing files" -msgstr "" +msgstr "Jo olemassa olevat tiedostot" #: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" @@ -549,12 +549,12 @@ msgstr "Palauta salasana" msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " -msgstr "" +msgstr "Mac OS X ei ole tuettu, joten %s ei toimi kunnolla tällä alustalla. Käytä omalla vastuulla!" #: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." -msgstr "" +msgstr "Käytä parhaan lopputuloksen saamiseksi GNU/Linux-palvelinta." #: strings.php:5 msgid "Personal" diff --git a/l10n/fi_FI/files_external.po b/l10n/fi_FI/files_external.po index 50537fbfe78..5e012a3cfcb 100644 --- a/l10n/fi_FI/files_external.po +++ b/l10n/fi_FI/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"Last-Translator: I Robot\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" @@ -42,25 +42,34 @@ msgstr "Virhe Google Drive levyn asetuksia tehtäessä" msgid "Saved" msgstr "Tallennettu" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." -msgstr "Varoitus: \"smbclient\" ei ole asennettuna. CIFS-/SMB-jakojen liittäminen ei ole mahdollista. Pyydä järjestelmän ylläpitäjää asentamaan smbclient." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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 "Varoitus: PHP:n FTP-tuki ei ole käytössä tai sitä ei ole asennettu. FTP-jakojen liittäminen ei ole mahdollista. Pyydä järjestelmän ylläpitäjää ottamaan FTP-tuki käyttöön." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." -msgstr "Varoitus: PHP:n Curl-tuki ei ole käytössä tai sitä ei ole lainkaan asennettu. ownCloudin, WebDAV:in tai Google Driven liittäminen ei ole mahdollista. Pyydä järjestelmän ylläpitäjää ottamaan Curl-tuki käyttöön." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." +msgstr "" #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index 3091572a280..ea6a7b590df 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 13:00+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"Last-Translator: I Robot\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" @@ -66,23 +66,23 @@ msgstr "Virheellinen kuva" msgid "web services under your control" msgstr "verkkopalvelut hallinnassasi" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "ZIP-lataus on poistettu käytöstä." -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "Tiedostot on ladattava yksittäin." -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "Takaisin tiedostoihin" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "Valitut tiedostot ovat liian suurikokoisia mahtuakseen zip-tiedostoon." -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -193,8 +193,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL -käyttäjätunnus ja/tai -salasana on väärin: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -207,9 +207,9 @@ msgstr "MySQL/MariaDB-käyttäjätunnus ja/tai salasana on virheellinen" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Tietokantavirhe: \"%s\"" @@ -218,9 +218,9 @@ msgstr "Tietokantavirhe: \"%s\"" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -256,7 +256,7 @@ msgstr "Oraclen käyttäjätunnus ja/tai salasana on väärin" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL:n käyttäjätunnus ja/tai salasana on väärin" @@ -268,19 +268,19 @@ msgstr "Aseta ylläpitäjän käyttäjätunnus." msgid "Set an admin password." msgstr "Aseta ylläpitäjän salasana." -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "Lue tarkasti asennusohjeet." -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "%s jakoi kohteen »%s« kanssasi" @@ -337,3 +337,21 @@ msgstr "viime vuonna" #: private/template/functions.php:145 msgid "years ago" msgstr "vuotta sitten" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 196546196fe..db845b7f25d 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 06:10+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" @@ -238,7 +238,7 @@ msgstr "Un conflit de fichier" #: js/oc-dialogs.js:367 msgid "New Files" -msgstr "" +msgstr "Nouveaux fichiers" #: js/oc-dialogs.js:368 msgid "Already existing files" diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index 76f1bf6e844..472e1beb377 100644 --- a/l10n/fr/files_external.po +++ b/l10n/fr/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-07 01:55-0400\n" -"PO-Revision-Date: 2014-04-06 20:00+0000\n" -"Last-Translator: Christophe Lherieau \n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -42,25 +42,34 @@ msgstr "Erreur lors de la configuration du support de stockage Google Drive" msgid "Saved" msgstr "Sauvegarder" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." -msgstr "Attention : \"smbclient\" n'est pas installé. Le montage des partages CIFS/SMB n'est pas disponible. Contactez votre administrateur système pour l'installer." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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 "Attention : Le support FTP de PHP n'est pas activé ou installé. Le montage des partages FTP n'est pas disponible. Contactez votre administrateur système pour l'installer." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." -msgstr "Attention : Le support de Curl n'est pas activé ou installé dans PHP. Le montage de ownCloud / WebDAV ou GoogleDrive n'est pas possible. Contactez votre administrateur système pour l'installer." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." +msgstr "" #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index 32cac2cbdb8..9dcc4505655 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 17:12-0400\n" -"PO-Revision-Date: 2014-03-13 15:59+0000\n" -"Last-Translator: Christophe Lherieau \n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -69,23 +69,23 @@ msgstr "Image invalide" msgid "web services under your control" msgstr "services web sous votre contrôle" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "Téléchargement ZIP désactivé." -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "Les fichiers nécessitent d'être téléchargés un par un." -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "Retour aux Fichiers" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "Les fichiers sélectionnés sont trop volumineux pour être compressés." -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -271,19 +271,19 @@ msgstr "Spécifiez un nom d'utilisateur pour l'administrateur." msgid "Set an admin password." msgstr "Spécifiez un mot de passe administrateur." -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Votre serveur web, n'est pas correctement configuré pour permettre la synchronisation des fichiers, car l'interface WebDav ne fonctionne pas comme il faut." -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "Veuillez vous référer au guide d'installation." -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "%s partagé »%s« avec vous" @@ -340,3 +340,21 @@ msgstr "l'année dernière" #: private/template/functions.php:145 msgid "years ago" msgstr "il y a plusieurs années" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/fr_CA/files_external.po b/l10n/fr_CA/files_external.po index bb31737a2e5..04acd06d67a 100644 --- a/l10n/fr_CA/files_external.po +++ b/l10n/fr_CA/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (Canada) (http://www.transifex.com/projects/p/owncloud/language/fr_CA/)\n" "MIME-Version: 1.0\n" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/fr_CA/lib.po b/l10n/fr_CA/lib.po index 5ecda615508..e00186eb0cb 100644 --- a/l10n/fr_CA/lib.po +++ b/l10n/fr_CA/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (Canada) (http://www.transifex.com/projects/p/owncloud/language/fr_CA/)\n" "MIME-Version: 1.0\n" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -336,3 +336,21 @@ msgstr "" #: private/template/functions.php:145 msgid "years ago" msgstr "" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 80e4b68f99a..5d2b05c829b 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 11:00+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" @@ -232,11 +232,11 @@ msgstr "Un conflito de ficheiro" #: js/oc-dialogs.js:367 msgid "New Files" -msgstr "" +msgstr "Ficheiros novos" #: js/oc-dialogs.js:368 msgid "Already existing files" -msgstr "" +msgstr "Ficheiros xa existentes" #: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index 85c08c4d881..e8c8bbb0325 100644 --- a/l10n/gl/files_external.po +++ b/l10n/gl/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -42,25 +42,34 @@ msgstr "Produciuse un erro ao configurar o almacenamento en Google Drive" msgid "Saved" msgstr "Gardado" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." -msgstr "Aviso: «smbclient» non está instalado. Non é posibel a montaxe de comparticións CIFS/SMB. Consulte co administrador do sistema para instalalo." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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 "Aviso: A compatibilidade de FTP en PHP non está activada ou instalada. Non é posibel a montaxe de comparticións FTP. Consulte co administrador do sistema para instalalo." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." -msgstr "Aviso: A compatibilidade de Curl en PHP non está activada ou instalada. Non é posíbel a montaxe de ownCloud / WebDAV ou GoogleDrive. Consulte co administrador do sistema para instalala." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." +msgstr "" #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index d923ae3966d..3f4820e8bb0 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-14 09:20+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -67,23 +67,23 @@ msgstr "Imaxe incorrecta" msgid "web services under your control" msgstr "servizos web baixo o seu control" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "As descargas ZIP están desactivadas." -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "Os ficheiros necesitan seren descargados dun en un." -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "Volver aos ficheiros" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "Os ficheiros seleccionados son demasiado grandes como para xerar un ficheiro zip." -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -269,19 +269,19 @@ msgstr "Estabeleza un nome de usuario administrador" msgid "Set an admin password." msgstr "Estabeleza un contrasinal de administrador" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "O seu servidor web non está aínda configurado adecuadamente para permitir a sincronización de ficheiros xa que semella que a interface WebDAV non está a funcionar." -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "Volva comprobar as guías de instalación" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "%s compartiu «%s» con vostede" @@ -338,3 +338,21 @@ msgstr "último ano" #: private/template/functions.php:145 msgid "years ago" msgstr "anos atrás" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index f91b4635d8c..f9723ef2270 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 11:00+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" @@ -423,14 +423,14 @@ msgstr "Se está activado, admítense grupos que conteñen grupos. (Só funciona #: templates/settings.php:40 msgid "Paging chunksize" -msgstr "" +msgstr "Tamaño dos fragmentos paxinados" #: templates/settings.php:40 msgid "" "Chunksize used for paged LDAP searches that may return bulky results like " "user or group enumeration. (Setting it 0 disables paged LDAP searches in " "those situations.)" -msgstr "" +msgstr "Tamaño dos fragmentos utilizados para as buscas LDAP paxinadas, que poden devolver resultados voluminosos como usuario ou enumeración de grupo. (Se se establece a 0, desactívanse as buscas LDAP paxinadas nesas situacións.)" #: templates/settings.php:42 msgid "Special Attributes" diff --git a/l10n/he/core.po b/l10n/he/core.po index 198d901917a..0179be12db3 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 06:10+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" @@ -232,7 +232,7 @@ msgstr "" #: js/oc-dialogs.js:367 msgid "New Files" -msgstr "" +msgstr "קבצים חדשים" #: js/oc-dialogs.js:368 msgid "Already existing files" diff --git a/l10n/he/files_external.po b/l10n/he/files_external.po index ddda3471e5a..8b8cb74a276 100644 --- a/l10n/he/files_external.po +++ b/l10n/he/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -41,24 +41,33 @@ msgstr "אירעה שגיאה בעת הגדרת אחסון ב־Google Drive" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/he/lib.po b/l10n/he/lib.po index c019c598f31..0773676f705 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "שירותי רשת תחת השליטה שלך" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "הורדת ZIP כבויה" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "יש להוריד את הקבצים אחד אחרי השני." -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "חזרה לקבצים" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "הקבצים הנבחרים גדולים מידי ליצירת קובץ zip." -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "שרת האינטרנט שלך אינו מוגדר לצורכי סנכרון קבצים עדיין כיוון שמנשק ה־WebDAV כנראה אינו תקין." -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "נא לעיין שוב במדריכי ההתקנה." -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "%s שיתף/שיתפה איתך את »%s«" @@ -336,3 +336,21 @@ msgstr "שנה שעברה" #: private/template/functions.php:145 msgid "years ago" msgstr "שנים" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/hi/files_external.po b/l10n/hi/files_external.po index 538fe49c83b..3f24d3235bd 100644 --- a/l10n/hi/files_external.po +++ b/l10n/hi/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index a0e8492a736..955a511e0f0 100644 --- a/l10n/hi/lib.po +++ b/l10n/hi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -336,3 +336,21 @@ msgstr "" #: private/template/functions.php:145 msgid "years ago" msgstr "" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/hr/files_external.po b/l10n/hr/files_external.po index b6577915390..9dab6b27fd5 100644 --- a/l10n/hr/files_external.po +++ b/l10n/hr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index e9e53e47186..27e93095437 100644 --- a/l10n/hr/lib.po +++ b/l10n/hr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "web usluge pod vašom kontrolom" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -340,3 +340,21 @@ msgstr "prošlu godinu" #: private/template/functions.php:145 msgid "years ago" msgstr "godina" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 42057bd33af..d9b058d9412 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 06:10+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" @@ -233,7 +233,7 @@ msgstr "Egy file ütközik" #: js/oc-dialogs.js:367 msgid "New Files" -msgstr "" +msgstr "Új fájlok" #: js/oc-dialogs.js:368 msgid "Already existing files" diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po index 94eac12f85c..3ef34c0ef50 100644 --- a/l10n/hu_HU/files_external.po +++ b/l10n/hu_HU/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -42,25 +42,34 @@ msgstr "A Google Drive tárolót nem sikerült beállítani" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." -msgstr "Figyelem: az \"smbclient\" nincs telepítve a kiszolgálón. Emiatt nem lehet CIFS/SMB megosztásokat fölcsatolni. Kérje meg a rendszergazdát, hogy telepítse a szükséges programot." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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 "Figyelem: a PHP FTP támogatása vagy nincs telepítve, vagy nincs engedélyezve a kiszolgálón. Emiatt nem lehetséges FTP-tárolókat fölcsatolni. Kérje meg a rendszergazdát, hogy telepítse a szükséges programot." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." -msgstr "Figyelmeztetés: A PHP-ben nincs telepítve vagy engedélyezve a Curl támogatás. Nem lehetséges ownCloud / WebDAV ill. GoogleDrive tárolók becsatolása. Kérje meg a rendszergazdát, hogy telepítse a szükséges programot!" +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." +msgstr "" #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index 875d728f202..5cae103f6d7 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -68,23 +68,23 @@ msgstr "Hibás kép" msgid "web services under your control" msgstr "webszolgáltatások saját kézben" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "A ZIP-letöltés nincs engedélyezve." -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "A fájlokat egyenként kell letölteni." -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "Vissza a Fájlokhoz" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "A kiválasztott fájlok túl nagyok a zip tömörítéshez." -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -195,8 +195,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Az MS SQL felhasználónév és/vagy jelszó érvénytelen: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Vagy egy létező felhasználó vagy az adminisztrátor bejelentkezési nevét kell megadnia" @@ -209,9 +209,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Adatbázis hiba: \"%s\"" @@ -220,9 +220,9 @@ msgstr "Adatbázis hiba: \"%s\"" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "A hibát ez a parancs okozta: \"%s\"" @@ -258,7 +258,7 @@ msgstr "Az Oracle felhasználói név és/vagy jelszó érvénytelen" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "A hibát okozó parancs ez volt: \"%s\", login név: %s, jelszó: %s" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "A PostgreSQL felhasználói név és/vagy jelszó érvénytelen" @@ -270,19 +270,19 @@ msgstr "Állítson be egy felhasználói nevet az adminisztrációhoz." msgid "Set an admin password." msgstr "Állítson be egy jelszót az adminisztrációhoz." -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Az Ön webkiszolgálója nincs megfelelően beállítva az állományok szinkronizálásához, mert a WebDAV-elérés úgy tűnik, nem működik." -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "Kérjük tüzetesen tanulmányozza át a telepítési útmutatót." -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "%s megosztotta Önnel ezt: »%s«" @@ -339,3 +339,21 @@ msgstr "tavaly" #: private/template/functions.php:145 msgid "years ago" msgstr "több éve" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/hy/files_external.po b/l10n/hy/files_external.po index 7bcbeba7342..5d5b3cfe323 100644 --- a/l10n/hy/files_external.po +++ b/l10n/hy/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/hy/lib.po b/l10n/hy/lib.po index b81e6dd42c9..d62bc683e0c 100644 --- a/l10n/hy/lib.po +++ b/l10n/hy/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -336,3 +336,21 @@ msgstr "" #: private/template/functions.php:145 msgid "years ago" msgstr "" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/ia/files_external.po b/l10n/ia/files_external.po index 8e6fad27caf..6397e610907 100644 --- a/l10n/ia/files_external.po +++ b/l10n/ia/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index 9304e0a8417..c6eea0497d2 100644 --- a/l10n/ia/lib.po +++ b/l10n/ia/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "servicios web sub tu controlo" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -336,3 +336,21 @@ msgstr "" #: private/template/functions.php:145 msgid "years ago" msgstr "" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/id/files_external.po b/l10n/id/files_external.po index 3ac07bace7e..e93bf83ccc2 100644 --- a/l10n/id/files_external.po +++ b/l10n/id/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -41,24 +41,33 @@ msgstr "Kesalahan dalam mengkonfigurasi penyimpanan Google Drive" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." -msgstr "Peringatan: \"smbclient\" tidak terpasang. Mount direktori CIFS/SMB tidak dapat dilakukan. Silakan minta administrator sistem untuk memasangnya." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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 "Peringatan: Dukungan FTP di PHP tidak aktif atau tidak terpasang. Mount direktori FTP tidak dapat dilakukan. Silakan minta administrator sistem untuk memasangnya." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/id/lib.po b/l10n/id/lib.po index 77fcdde6fc7..9692c6033b4 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -65,23 +65,23 @@ msgstr "Gambar tidak sah" msgid "web services under your control" msgstr "layanan web dalam kendali anda" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "Pengunduhan ZIP dimatikan." -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "Berkas harus diunduh satu persatu." -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "Kembali ke Berkas" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "Berkas yang dipilih terlalu besar untuk dibuat berkas zip-nya." -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Nama pengguna dan/atau sandi MySQL tidak sah: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Anda harus memasukkan akun yang sudah ada atau administrator." @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Galat Basis Data: \"%s\"" @@ -217,9 +217,9 @@ msgstr "Galat Basis Data: \"%s\"" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "Perintah yang bermasalah: \"%s\"" @@ -255,7 +255,7 @@ msgstr "Nama pengguna dan/atau sandi Oracle tidak sah" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Perintah yang bermasalah: \"%s\", nama pengguna: %s, sandi: %s" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "Nama pengguna dan/atau sandi PostgreSQL tidak valid" @@ -267,19 +267,19 @@ msgstr "Atur nama pengguna admin." msgid "Set an admin password." msgstr "Atur sandi admin." -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Web server Anda belum dikonfigurasikan dengan baik untuk mengizinkan sinkronisasi berkas karena tampaknya antarmuka WebDAV rusak." -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "Silakan periksa ulang panduan instalasi." -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "%s membagikan »%s« dengan anda" @@ -332,3 +332,21 @@ msgstr "tahun kemarin" #: private/template/functions.php:145 msgid "years ago" msgstr "beberapa tahun lalu" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/is/files_external.po b/l10n/is/files_external.po index 77acf36be51..5824e83788f 100644 --- a/l10n/is/files_external.po +++ b/l10n/is/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -41,24 +41,33 @@ msgstr "Villa kom upp við að setja upp Google Drive gagnasvæði" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." -msgstr "Aðvörun: \"smbclient\" er ekki uppsettur. Uppsetning á CIFS/SMB gagnasvæðum er ekki möguleg. Hafðu samband við kerfisstjóra til að fá hann uppsettan." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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 "Aðvörun: FTP stuðningur í PHP er ekki virkur. Uppsetning á FTP gagnasvæðum er ekki möguleg. Hafðu samband við kerfisstjóra til að fá hann uppsettan." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/is/lib.po b/l10n/is/lib.po index bbb36d90674..24dba8ecb24 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "vefþjónusta undir þinni stjórn" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "Slökkt á ZIP niðurhali." -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "Skrárnar verður að sækja eina og eina" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "Aftur í skrár" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "Valdar skrár eru of stórar til að búa til ZIP skrá." -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -336,3 +336,21 @@ msgstr "síðasta ári" #: private/template/functions.php:145 msgid "years ago" msgstr "einhverjum árum" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/it/core.po b/l10n/it/core.po index 2643e15d352..6c9c54add50 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 06:10+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" @@ -234,7 +234,7 @@ msgstr "Un file in conflitto" #: js/oc-dialogs.js:367 msgid "New Files" -msgstr "" +msgstr "File nuovi" #: js/oc-dialogs.js:368 msgid "Already existing files" diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index 7b6a0f18694..10ab9a85d7a 100644 --- a/l10n/it/files_external.po +++ b/l10n/it/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,25 +43,34 @@ msgstr "Errore durante la configurazione dell'archivio Google Drive" msgid "Saved" msgstr "Salvato" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." -msgstr "Avviso: \"smbclient\" non è installato. Impossibile montare condivisioni CIFS/SMB. Chiedi all'amministratore di sistema di installarlo." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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 "Avviso: il supporto FTP di PHP non è abilitato o non è installato. Impossibile montare condivisioni FTP. Chiedi all'amministratore di sistema di installarlo." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." -msgstr "Avviso: il supporto Curl di PHP non è abilitato o non è installato. Impossibile montare condivisioni ownCloud / WebDAV o GoogleDrive. Chiedi all'amministratore di sistema di installarlo." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." +msgstr "" #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index 5675eee56ab..5688fe306ca 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 22:52+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -68,23 +68,23 @@ msgstr "Immagine non valida" msgid "web services under your control" msgstr "servizi web nelle tue mani" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "Lo scaricamento in formato ZIP è stato disabilitato." -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "I file devono essere scaricati uno alla volta." -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "Torna ai file" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "I file selezionati sono troppo grandi per generare un file zip." -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -195,8 +195,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Nome utente e/o password MS SQL non validi: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "È necessario inserire un account esistente o l'amministratore." @@ -209,9 +209,9 @@ msgstr "Nome utente e/o password di MySQL/MariaDB non validi" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Errore DB: \"%s\"" @@ -220,9 +220,9 @@ msgstr "Errore DB: \"%s\"" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "Il comando non consentito era: \"%s\"" @@ -258,7 +258,7 @@ msgstr "Nome utente e/o password di Oracle non validi" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Il comando non consentito era: \"%s\", nome: %s, password: %s" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "Nome utente e/o password di PostgreSQL non validi" @@ -270,19 +270,19 @@ msgstr "Imposta un nome utente di amministrazione." msgid "Set an admin password." msgstr "Imposta una password di amministrazione." -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Il tuo server web non è configurato correttamente per consentire la sincronizzazione dei file poiché l'interfaccia WebDAV sembra essere danneggiata." -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "Leggi attentamente le guide d'installazione." -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "%s ha condiviso «%s» con te" @@ -339,3 +339,21 @@ msgstr "anno scorso" #: private/template/functions.php:145 msgid "years ago" msgstr "anni fa" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/ja/core.po b/l10n/ja/core.po index 8caab377b9e..66014893c65 100644 --- a/l10n/ja/core.po +++ b/l10n/ja/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 06:10+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" @@ -231,7 +231,7 @@ msgstr "1ファイルが競合" #: js/oc-dialogs.js:367 msgid "New Files" -msgstr "" +msgstr "新しいファイル" #: js/oc-dialogs.js:368 msgid "Already existing files" diff --git a/l10n/ja/files_external.po b/l10n/ja/files_external.po index 4c071d8bff5..dbce411329b 100644 --- a/l10n/ja/files_external.po +++ b/l10n/ja/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-06 01:55-0400\n" -"PO-Revision-Date: 2014-04-05 09:50+0000\n" -"Last-Translator: tt yn \n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -44,25 +44,34 @@ msgstr "Googleドライブストレージの設定エラー" msgid "Saved" msgstr "保存されました" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." -msgstr "警告: \"smbclient\" がインストールされていません。CIFS/SMB共有のマウントはできません。システム管理者にインストールを依頼してください。" +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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 "警告: PHPのFTPサポートが無効またはインストールされていません。FTP共有のマウントはできません。システム管理者にインストールを依頼してください。" +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." -msgstr "警告: PHPのCurlサポートが無効またはインストールされていません。ownCloud / WebDAVまたはGoogleDriveのマウントはできません。システム管理者にインストールを依頼してください。" +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." +msgstr "" #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/ja/lib.po b/l10n/ja/lib.po index 07ec0881452..b8fdbca0bf9 100644 --- a/l10n/ja/lib.po +++ b/l10n/ja/lib.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 17:12-0400\n" -"PO-Revision-Date: 2014-03-11 13:31+0000\n" -"Last-Translator: plazmism \n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -70,23 +70,23 @@ msgstr "無効な画像" msgid "web services under your control" msgstr "管理下のウェブサービス" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "ZIPダウンロードは無効です。" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "ファイルは1つずつダウンロードする必要があります。" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "ファイルに戻る" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "選択したファイルはZIPファイルの生成には大きすぎます。" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -272,19 +272,19 @@ msgstr "管理者のユーザー名を設定" msgid "Set an admin password." msgstr "管理者のパスワードを設定。" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "WebDAVインターフェースに問題があると思われるため、WEBサーバーはまだファイルの同期を許可するよう適切に設定されていません。" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "インストールガイドをよく確認してください。" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "%sが あなたと »%s«を共有しました" @@ -337,3 +337,21 @@ msgstr "1年前" #: private/template/functions.php:145 msgid "years ago" msgstr "年前" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/jv/files_external.po b/l10n/jv/files_external.po index 180822df4a2..86d3c6e3eba 100644 --- a/l10n/jv/files_external.po +++ b/l10n/jv/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-07 14:16+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Javanese (http://www.transifex.com/projects/p/owncloud/language/jv/)\n" "MIME-Version: 1.0\n" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/jv/lib.po b/l10n/jv/lib.po index 9f4e998e7f1..da7f24790c3 100644 --- a/l10n/jv/lib.po +++ b/l10n/jv/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-07 14:16+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Javanese (http://www.transifex.com/projects/p/owncloud/language/jv/)\n" "MIME-Version: 1.0\n" @@ -336,3 +336,21 @@ msgstr "" #: private/template/functions.php:145 msgid "years ago" msgstr "" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index daac560faaf..734a0cd8b5c 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 06:10+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" @@ -225,7 +225,7 @@ msgstr "" #: js/oc-dialogs.js:367 msgid "New Files" -msgstr "" +msgstr "ახალი ფაილები" #: js/oc-dialogs.js:368 msgid "Already existing files" diff --git a/l10n/ka_GE/files_external.po b/l10n/ka_GE/files_external.po index fbdafbd0c7e..5bb8ccc954b 100644 --- a/l10n/ka_GE/files_external.po +++ b/l10n/ka_GE/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -41,25 +41,34 @@ msgstr "შეცდომა Google Drive საცავის კონფი msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." -msgstr "გაფრთხილება: \"smbclient\" არ არის ინსტალირებული. CIFS/SMB ზიარების მონტირება შეუძლებელია. გთხოვთ თხოვოთ თქვენს სისტემურ ადმინისტრატორებს დააინსტალიროს ის." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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 "გაფრთხილება: FTP მხარდაჭერა არ არის აქტიური ან დაინსტალირებული. FTP ზიარის მონტირება შეუძლებელია. გთხოვთ თხოვოთ თქვენს სისტემურ ადმინისტრატორებს დააინსტალიროს ის." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." -msgstr "გაფრთხილება:PHP–ის Curl მხარდაჭერა არ არის ჩართული ან ინსტალირებული. ownCloud / WebDAV ან GoogleDrive–ის მონტირება შეუძლებელია. თხოვეთ თქვენს ადმინისტრატორს დააინსტალიროს ის." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." +msgstr "" #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index 775fa57d28f..a161500da58 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "web services under your control" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "ZIP download–ი გათიშულია" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "ფაილები უნდა გადმოიტვირთოს სათითაოდ." -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "უკან ფაილებში" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "არჩეული ფაილები ძალიან დიდია zip ფაილის გენერაციისთვის." -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL მომხმარებელი და/ან პაროლი არ არის მართებული: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "თქვენ უნდა შეიყვანოთ არსებული მომხმარებელის სახელი ან ადმინისტრატორი." @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "DB შეცდომა: \"%s\"" @@ -217,9 +217,9 @@ msgstr "DB შეცდომა: \"%s\"" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "Offending ბრძანება იყო: \"%s\"" @@ -255,7 +255,7 @@ msgstr "Oracle იუზერნეიმი და/ან პაროლი msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Offending ბრძანება იყო: \"%s\", სახელი: %s, პაროლი: %s" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL იუზერნეიმი და/ან პაროლი არ არის სწორი" @@ -267,19 +267,19 @@ msgstr "დააყენეთ ადმინისტრატორის msgid "Set an admin password." msgstr "დააყენეთ ადმინისტრატორის პაროლი." -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "თქვენი web სერვერი არ არის კონფიგურირებული ფაილ სინქრონიზაციისთვის, რადგან WebDAV ინტერფეისი შეიძლება იყოს გატეხილი." -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "გთხოვთ გადაათვალიეროთ ინსტალაციის გზამკვლევი." -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -332,3 +332,21 @@ msgstr "ბოლო წელს" #: private/template/functions.php:145 msgid "years ago" msgstr "წლის წინ" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/km/files_external.po b/l10n/km/files_external.po index ccb2b335ee0..3b8216e3de5 100644 --- a/l10n/km/files_external.po +++ b/l10n/km/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/km/lib.po b/l10n/km/lib.po index a9404549af5..354848af619 100644 --- a/l10n/km/lib.po +++ b/l10n/km/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -66,23 +66,23 @@ msgstr "រូបភាព​មិន​ត្រឹម​ត្រូវ" msgid "web services under your control" msgstr "សេវាកម្ម​វេប​ក្រោម​ការ​ការ​បញ្ជា​របស់​អ្នក" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "បាន​បិទ​ការ​ទាញ​យក ZIP ។" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "ត្រូវ​ការ​ទាញ​យក​ឯកសារ​ម្ដង​មួយៗ។" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "ត្រឡប់​ទៅ​ឯកសារ" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "ឯកសារ​ដែល​បាន​ជ្រើស មាន​ទំហំ​ធំ​ពេក​ក្នុង​ការ​បង្កើត​ជា zip ។" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -193,8 +193,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -207,9 +207,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "កំហុស DB៖ \"%s\"" @@ -218,9 +218,9 @@ msgstr "កំហុស DB៖ \"%s\"" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -256,7 +256,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "ឈ្មោះ​អ្នក​ប្រើ និង/ឬ ពាក្យ​សម្ងាត់ PostgreSQL គឺ​មិន​ត្រូវ​ទេ" @@ -268,19 +268,19 @@ msgstr "កំណត់​ឈ្មោះ​អ្នក​គ្រប់គ្ msgid "Set an admin password." msgstr "កំណត់​ពាក្យ​សម្ងាត់​អ្នក​គ្រប់គ្រង។" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -333,3 +333,21 @@ msgstr "ឆ្នាំ​មុន" #: private/template/functions.php:145 msgid "years ago" msgstr "ឆ្នាំ​មុន" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/kn/files_external.po b/l10n/kn/files_external.po index 37d4996225b..9d3bc476143 100644 --- a/l10n/kn/files_external.po +++ b/l10n/kn/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/kn/lib.po b/l10n/kn/lib.po index 01945d87b2e..f54ae77bc83 100644 --- a/l10n/kn/lib.po +++ b/l10n/kn/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -332,3 +332,21 @@ msgstr "" #: private/template/functions.php:145 msgid "years ago" msgstr "" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/ko/files_external.po b/l10n/ko/files_external.po index 25627c2645a..f49c86091e1 100644 --- a/l10n/ko/files_external.po +++ b/l10n/ko/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -42,25 +42,34 @@ msgstr "Google 드라이브 저장소 설정 오류" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." -msgstr "경고: \"smbclient\"가 설치되지 않았습니다. CIFS/SMB 공유 자원에 연결할 수 없습니다. 시스템 관리자에게 설치를 요청하십시오." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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 "경고: PHP FTP 지원이 비활성화되어 있거나 설치되지 않았습니다. FTP 공유를 마운트할 수 없습니다. 시스템 관리자에게 설치를 요청하십시오." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." -msgstr "경고: PHP Curl 지원이 비활성화되어 있거나 설치되지 않았습니다. 다른 ownCloud, WebDAV, Google 드라이브 공유를 마운트할 수 없습니다. 시스템 관리자에게 설치를 요청하십시오." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." +msgstr "" #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index c1cc5c23314..baba62b8b73 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -70,23 +70,23 @@ msgstr "잘못된 그림" msgid "web services under your control" msgstr "내가 관리하는 웹 서비스" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "ZIP 다운로드가 비활성화 되었습니다." -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "파일을 개별적으로 다운로드해야 합니다." -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "파일로 돌아가기" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "선택한 파일들은 ZIP 파일을 생성하기에 너무 큽니다." -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -197,8 +197,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL 사용자 이름이나 암호가 잘못되었습니다: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "기존 계정이나 administrator(관리자)를 입력해야 합니다." @@ -211,9 +211,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "DB 오류: \"%s\"" @@ -222,9 +222,9 @@ msgstr "DB 오류: \"%s\"" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "잘못된 명령: \"%s\"" @@ -260,7 +260,7 @@ msgstr "Oracle 사용자 이름이나 암호가 잘못되었습니다." msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "잘못된 명령: \"%s\", 이름: %s, 암호: %s" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL의 사용자 이름 또는 암호가 잘못되었습니다" @@ -272,19 +272,19 @@ msgstr "관리자의 사용자 이름을 설정합니다." msgid "Set an admin password." msgstr "관리자의 암호를 설정합니다." -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "WebDAV 인터페이스가 제대로 작동하지 않습니다. 웹 서버에서 파일 동기화를 사용할 수 있도록 설정이 제대로 되지 않은 것 같습니다." -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "설치 가이드를 다시 한 번 확인하십시오." -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "%s 님이 %s을(를) 공유하였습니다" @@ -337,3 +337,21 @@ msgstr "작년" #: private/template/functions.php:145 msgid "years ago" msgstr "년 전" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/ku_IQ/files_external.po b/l10n/ku_IQ/files_external.po index a82954cda7b..a7bfce656ab 100644 --- a/l10n/ku_IQ/files_external.po +++ b/l10n/ku_IQ/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index 898c8550158..eab0771ad84 100644 --- a/l10n/ku_IQ/lib.po +++ b/l10n/ku_IQ/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "ڕاژه‌ی وێب له‌ژێر چاودێریت دایه" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -336,3 +336,21 @@ msgstr "" #: private/template/functions.php:145 msgid "years ago" msgstr "" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/lb/files_external.po b/l10n/lb/files_external.po index c0982f45a98..36504b273fd 100644 --- a/l10n/lb/files_external.po +++ b/l10n/lb/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index 1bec6207b74..403353e5beb 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -66,23 +66,23 @@ msgstr "Ongülteg d'Bild" msgid "web services under your control" msgstr "Web-Servicer ënnert denger Kontroll" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -193,8 +193,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -207,9 +207,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -218,9 +218,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -256,7 +256,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -268,19 +268,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "Den/D' %s huet »%s« mat dir gedeelt" @@ -337,3 +337,21 @@ msgstr "Läscht Joer" #: private/template/functions.php:145 msgid "years ago" msgstr "Joren hier" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/lt_LT/files_external.po b/l10n/lt_LT/files_external.po index d3494e5e92d..32c73989f77 100644 --- a/l10n/lt_LT/files_external.po +++ b/l10n/lt_LT/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -42,25 +42,34 @@ msgstr "Klaida nustatinėjant Google Drive talpyklą" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." -msgstr "Įspėjimas: \"smbclient\" nėra įdiegtas. CIFS/SMB dalinimasis nėra galimas. Prašome susisiekti su sistemos administratoriumi kad būtų įdiegtas \"smbclient\"" +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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 "Įspėjimas: FTP palaikymas PHP sistemoje nėra įjungtas arba nėra įdiegtas. FTP dalinimosi įjungimas nėra galimas. Prašome susisiekti su sistemos administratoriumi kad būtų įdiegtas FTP palaikymas. " +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." -msgstr "Įspėjimas: \"Curl\" palaikymas PHP terpėje nėra įjungtas arba įdiegtas. ownCloud/WebDAV ar GoogleDrive įjungimas nebus įmanomas. Prašome susisiekti su sistemos administratoriumi kad būtų įdiegtas arba įjungtas \"Curl\" palaikymas." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." +msgstr "" #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index a3d06e1c28f..94c3515831b 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -69,23 +69,23 @@ msgstr "Netinkamas paveikslėlis" msgid "web services under your control" msgstr "jūsų valdomos web paslaugos" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "ZIP atsisiuntimo galimybė yra išjungta." -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "Failai turi būti parsiunčiami vienas po kito." -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "Atgal į Failus" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "Pasirinkti failai per dideli archyvavimui į ZIP." -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -196,8 +196,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL naudotojo vardas ir/arba slaptažodis netinka: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Turite prisijungti su egzistuojančia paskyra arba su administratoriumi." @@ -210,9 +210,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "DB klaida: \"%s\"" @@ -221,9 +221,9 @@ msgstr "DB klaida: \"%s\"" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "Vykdyta komanda buvo: \"%s\"" @@ -259,7 +259,7 @@ msgstr "Neteisingas Oracle naudotojo vardas ir/arba slaptažodis" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Vykdyta komanda buvo: \"%s\", name: %s, password: %s" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "Neteisingas PostgreSQL naudotojo vardas ir/arba slaptažodis" @@ -271,19 +271,19 @@ msgstr "Nustatyti administratoriaus naudotojo vardą." msgid "Set an admin password." msgstr "Nustatyti administratoriaus slaptažodį." -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Jūsų serveris nėra tvarkingai nustatytas leisti failų sinchronizaciją, nes WebDAV sąsaja panašu, kad yra sugadinta." -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "Prašome pažiūrėkite dar kartą diegimo instrukcijas." -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "%s pasidalino »%s« su tavimi" @@ -344,3 +344,21 @@ msgstr "praeitais metais" #: private/template/functions.php:145 msgid "years ago" msgstr "prieš metus" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index a2dfeb1d55b..89c1ba7879c 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 06:10+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" @@ -236,7 +236,7 @@ msgstr "" #: js/oc-dialogs.js:367 msgid "New Files" -msgstr "" +msgstr "Jaunās datnes" #: js/oc-dialogs.js:368 msgid "Already existing files" diff --git a/l10n/lv/files_external.po b/l10n/lv/files_external.po index ce94ed49e8a..46000f211fe 100644 --- a/l10n/lv/files_external.po +++ b/l10n/lv/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -42,25 +42,34 @@ msgstr "Kļūda, konfigurējot Google Drive krātuvi" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." -msgstr "Brīdinājums: nav uzinstalēts “smbclient”. Nevar montēt CIFS/SMB koplietojumus. Lūdzu, vaicājiet savam sistēmas administratoram, lai to uzinstalē." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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 "Brīdinājums: uz PHP nav aktivēts vai instalēts FTP atbalsts. Nevar montēt FTP koplietojumus. Lūdzu, vaicājiet savam sistēmas administratoram, lai to uzinstalē." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." -msgstr "Brīdinājums: PHP Curl atbalsts nav instalēts. OwnCloud / WebDAV vai GoogleDrive montēšana nav iespējama. Lūdziet sistēmas administratoram lai tas tiek uzstādīts." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." +msgstr "" #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 6e2a1e8b9cb..455b5fbf796 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -66,23 +66,23 @@ msgstr "" msgid "web services under your control" msgstr "tīmekļa servisi tavā varā" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "ZIP lejupielādēšana ir izslēgta." -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "Datnes var lejupielādēt tikai katru atsevišķi." -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "Atpakaļ pie datnēm" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "Izvēlētās datnes ir pārāk lielas, lai izveidotu zip datni." -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -193,8 +193,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Nav derīga MySQL parole un/vai lietotājvārds — %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Jums jāievada vai nu esošs vai administratora konts." @@ -207,9 +207,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "DB kļūda — “%s”" @@ -218,9 +218,9 @@ msgstr "DB kļūda — “%s”" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "Vainīgā komanda bija “%s”" @@ -256,7 +256,7 @@ msgstr "Nav derīga Oracle parole un/vai lietotājvārds" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Vainīgā komanda bija \"%s\", vārds: %s, parole: %s" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "Nav derīga PostgreSQL parole un/vai lietotājvārds" @@ -268,19 +268,19 @@ msgstr "Iestatiet administratora lietotājvārdu." msgid "Set an admin password." msgstr "Iestatiet administratora paroli." -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Jūsu serveris vēl nav pareizi iestatīts, lai ļautu sinhronizēt datnes, jo izskatās, ka WebDAV saskarne ir salauzta." -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "Lūdzu, vēlreiz pārbaudiet instalēšanas palīdzību." -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "%s kopīgots »%s« ar jums" @@ -341,3 +341,21 @@ msgstr "gājušajā gadā" #: private/template/functions.php:145 msgid "years ago" msgstr "gadus atpakaļ" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/mk/files_external.po b/l10n/mk/files_external.po index 9355e9e35f7..c8506cdd949 100644 --- a/l10n/mk/files_external.po +++ b/l10n/mk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -41,24 +41,33 @@ msgstr "Грешка при конфигурација на Google Drive" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." -msgstr "Внимание: \"smbclient\" не е инсталиран. Не е можно монтирање на CIFS/SMB дискови. Замолете го Вашиот систем администратор да го инсталира." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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 "Внимание: Не е овозможена или инсталирани FTP подршка во PHP. Не е можно монтирање на FTP дискови. Замолете го Вашиот систем администратор да го инсталира." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index fca0fe3c0d6..28ea982580e 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -65,23 +65,23 @@ msgstr "Невалидна фотографија" msgid "web services under your control" msgstr "веб сервиси под Ваша контрола" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "Преземање во ZIP е исклучено" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "Датотеките треба да се симнат една по една." -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "Назад кон датотеки" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "Избраните датотеки се преголеми за да се генерира zip." -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -336,3 +336,21 @@ msgstr "минатата година" #: private/template/functions.php:145 msgid "years ago" msgstr "пред години" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/ml/files_external.po b/l10n/ml/files_external.po index e3b6b4cf733..30d269647a4 100644 --- a/l10n/ml/files_external.po +++ b/l10n/ml/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" "MIME-Version: 1.0\n" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/ml/lib.po b/l10n/ml/lib.po index 47b765276d0..7d8386a4852 100644 --- a/l10n/ml/lib.po +++ b/l10n/ml/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" "MIME-Version: 1.0\n" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -336,3 +336,21 @@ msgstr "" #: private/template/functions.php:145 msgid "years ago" msgstr "" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/ml_IN/files_external.po b/l10n/ml_IN/files_external.po index fe274c2a103..e8334604a6d 100644 --- a/l10n/ml_IN/files_external.po +++ b/l10n/ml_IN/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/ml_IN/lib.po b/l10n/ml_IN/lib.po index 21021fc7200..ad9148fab33 100644 --- a/l10n/ml_IN/lib.po +++ b/l10n/ml_IN/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -336,3 +336,21 @@ msgstr "" #: private/template/functions.php:145 msgid "years ago" msgstr "" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/mn/files_external.po b/l10n/mn/files_external.po index 28018292320..7547f3512d7 100644 --- a/l10n/mn/files_external.po +++ b/l10n/mn/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" "MIME-Version: 1.0\n" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/mn/lib.po b/l10n/mn/lib.po index 46cbf163ac3..24f3d3b50df 100644 --- a/l10n/mn/lib.po +++ b/l10n/mn/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" "MIME-Version: 1.0\n" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -336,3 +336,21 @@ msgstr "" #: private/template/functions.php:145 msgid "years ago" msgstr "" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/ms_MY/files_external.po b/l10n/ms_MY/files_external.po index 1d63e16526e..0495b5d172e 100644 --- a/l10n/ms_MY/files_external.po +++ b/l10n/ms_MY/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index 3987ff503ef..0d63f98d966 100644 --- a/l10n/ms_MY/lib.po +++ b/l10n/ms_MY/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "Perkhidmatan web di bawah kawalan anda" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -332,3 +332,21 @@ msgstr "" #: private/template/functions.php:145 msgid "years ago" msgstr "" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/my_MM/files_external.po b/l10n/my_MM/files_external.po index 57af747f8bb..ba5148a5743 100644 --- a/l10n/my_MM/files_external.po +++ b/l10n/my_MM/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/my_MM/lib.po b/l10n/my_MM/lib.po index 93cefaec22a..69bc9a0a977 100644 --- a/l10n/my_MM/lib.po +++ b/l10n/my_MM/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "သင်၏ထိန်းချုပ်မှု့အောက်တွင်ရှိသော Web services" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "ZIP ဒေါင်းလုတ်ကိုပိတ်ထားသည်" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "ဖိုင်များသည် တစ်ခုပြီး တစ်ခုဒေါင်းလုတ်ချရန်လိုအပ်သည်" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "ဖိုင်သို့ပြန်သွားမည်" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "zip ဖိုင်အဖြစ်ပြုလုပ်ရန် ရွေးချယ်ထားသောဖိုင်များသည် အရမ်းကြီးလွန်းသည်" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -332,3 +332,21 @@ msgstr "မနှစ်က" #: private/template/functions.php:145 msgid "years ago" msgstr "နှစ် အရင်က" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/nb_NO/files_external.po b/l10n/nb_NO/files_external.po index 67c39a3b2ff..7e1d6afab9b 100644 --- a/l10n/nb_NO/files_external.po +++ b/l10n/nb_NO/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-07 01:55-0400\n" -"PO-Revision-Date: 2014-04-06 16:40+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -42,25 +42,34 @@ msgstr "Feil med konfigurering av Google Drive" msgid "Saved" msgstr "Lagret" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." -msgstr "Advarsel: \"smbclient\" er ikke installert. Kan ikke montere CIFS/SMB mapper. Ta kontakt med din systemadministrator for å installere det." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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 "Advarsel: FTP støtte i PHP er ikke slått på eller innstallert. Kan ikke montere FTP mapper. Ta kontakt med din systemadministrator for å innstallere det." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." -msgstr "Advarsel: Curl støtte i PHP er ikke aktivert eller innstallert. Kan ikke montere owncloud/WebDAV eller Googledrive. Ta kontakt med din systemadministrator for å innstallerer det." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." +msgstr "" #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index cddd41ceeac..d4f40165bc1 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -67,23 +67,23 @@ msgstr "Ugyldig bilde" msgid "web services under your control" msgstr "web tjenester du kontrollerer" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "ZIP-nedlasting av avslått" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "Filene må lastes ned en om gangen" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "Tilbake til filer" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "De valgte filene er for store til å kunne generere ZIP-fil" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -194,8 +194,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL-brukernavn og/eller passord ikke gyldig: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Du må legge inn enten en eksisterende konto eller administratoren." @@ -208,9 +208,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Databasefeil: \"%s\"" @@ -219,9 +219,9 @@ msgstr "Databasefeil: \"%s\"" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "Kommandoen som feilet: \"%s\"" @@ -257,7 +257,7 @@ msgstr "Oracle-brukernavn og/eller passord er ikke gyldig" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Kommando som feilet: \"%s\", navn: %s, passord: %s" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL-brukernavn og/eller passord er ikke gyldig" @@ -269,19 +269,19 @@ msgstr "Sett et admin-brukernavn." msgid "Set an admin password." msgstr "Sett et admin-passord." -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Din nettservev er ikke konfigurert korrekt for filsynkronisering. WebDAV ser ut til å ikke funkere." -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "Vennligst dobbelsjekk installasjonsguiden." -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "%s delte »%s« med deg" @@ -338,3 +338,21 @@ msgstr "forrige år" #: private/template/functions.php:145 msgid "years ago" msgstr "år siden" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/nds/files_external.po b/l10n/nds/files_external.po index 1317beb3701..05dd53ee1cb 100644 --- a/l10n/nds/files_external.po +++ b/l10n/nds/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Low German (http://www.transifex.com/projects/p/owncloud/language/nds/)\n" "MIME-Version: 1.0\n" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/nds/lib.po b/l10n/nds/lib.po index f44dacaa1ca..7f0a19e84b6 100644 --- a/l10n/nds/lib.po +++ b/l10n/nds/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Low German (http://www.transifex.com/projects/p/owncloud/language/nds/)\n" "MIME-Version: 1.0\n" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -336,3 +336,21 @@ msgstr "" #: private/template/functions.php:145 msgid "years ago" msgstr "" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/ne/files_external.po b/l10n/ne/files_external.po index 5003db3d1be..7e38ed50b9b 100644 --- a/l10n/ne/files_external.po +++ b/l10n/ne/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/ne/lib.po b/l10n/ne/lib.po index 92e6df5e03a..e310cb1d413 100644 --- a/l10n/ne/lib.po +++ b/l10n/ne/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -336,3 +336,21 @@ msgstr "" #: private/template/functions.php:145 msgid "years ago" msgstr "" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 24cfbb7f963..04323503230 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 08:00+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -233,11 +233,11 @@ msgstr "Een bestandsconflict" #: js/oc-dialogs.js:367 msgid "New Files" -msgstr "" +msgstr "Nieuwe bestanden" #: js/oc-dialogs.js:368 msgid "Already existing files" -msgstr "" +msgstr "Al aanwezige bestanden" #: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index 890ec557209..8d2871bf582 100644 --- a/l10n/nl/files_external.po +++ b/l10n/nl/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -42,25 +42,34 @@ msgstr "Fout tijdens het configureren van Google Drive opslag" msgid "Saved" msgstr "Bewaard" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." -msgstr "Waarschuwing: \"smbclient\" is niet geïnstalleerd. Mounten van CIFS/SMB shares is niet mogelijk. Vraag uw beheerder om smbclient te installeren." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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 "Waarschuwing: FTP ondersteuning in PHP is niet geactiveerd of geïnstalleerd. Mounten van FTP shares is niet mogelijk. Vraag uw beheerder FTP ondersteuning te installeren." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." -msgstr "Waarschuwing: Curl ondersteuning in PHP is niet geactiveerd of geïnstalleerd. Mounten van ownCloud / WebDAV of GoogleDrive is niet mogelijk. Vraag uw systeembeheerder dit te installeren." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." +msgstr "" #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index ac43d30ef84..117e252b26b 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 18:21+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -68,23 +68,23 @@ msgstr "Ongeldige afbeelding" msgid "web services under your control" msgstr "Webdiensten in eigen beheer" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "ZIP download is uitgeschakeld." -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "Bestanden moeten één voor één worden gedownload." -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "Terug naar bestanden" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "De geselecteerde bestanden zijn te groot om een zip bestand te maken." -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -195,8 +195,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL gebruikersnaam en/of wachtwoord niet geldig: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Geef of een bestaand account op of het beheerdersaccount." @@ -209,9 +209,9 @@ msgstr "MySQL/MariaDB gebruikersnaam en/of wachtwoord ongeldig" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "DB Fout: \"%s\"" @@ -220,9 +220,9 @@ msgstr "DB Fout: \"%s\"" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "Onjuiste commande was: \"%s\"" @@ -258,7 +258,7 @@ msgstr "Oracle gebruikersnaam en/of wachtwoord ongeldig" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Onjuiste commando was: \"%s\", naam: %s, wachtwoord: %s" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL gebruikersnaam en/of wachtwoord ongeldig" @@ -270,19 +270,19 @@ msgstr "Stel de gebruikersnaam van de beheerder in." msgid "Set an admin password." msgstr "Stel een beheerderswachtwoord in." -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Uw webserver is nog niet goed ingesteld voor bestandssynchronisatie omdat de WebDAV interface verbroken lijkt." -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "Controleer de installatiehandleiding goed." -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "%s deelde »%s« met jou" @@ -339,3 +339,21 @@ msgstr "vorig jaar" #: private/template/functions.php:145 msgid "years ago" msgstr "jaar geleden" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index cc0208d7cd0..9a66b674e93 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 08:10+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -424,14 +424,14 @@ msgstr "Wanneer ingeschakeld worden groepen binnen groepen ondersteund. (Werkt a #: templates/settings.php:40 msgid "Paging chunksize" -msgstr "" +msgstr "Paging chunkgrootte" #: templates/settings.php:40 msgid "" "Chunksize used for paged LDAP searches that may return bulky results like " "user or group enumeration. (Setting it 0 disables paged LDAP searches in " "those situations.)" -msgstr "" +msgstr "De chunkgrootte die wordt gebruikt voor LDAP opvragingen die in grote aantallen resulteren, zoals gebruiker- of groepsverzamelingen. (Instellen op 0 deactiveert gepagede LDAP opvragingen in dergelijke situaties.)" #: templates/settings.php:42 msgid "Special Attributes" diff --git a/l10n/nn_NO/files_external.po b/l10n/nn_NO/files_external.po index 7c36123981a..b759063902e 100644 --- a/l10n/nn_NO/files_external.po +++ b/l10n/nn_NO/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index c38e2360ed2..bc43bde4c02 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -67,23 +67,23 @@ msgstr "Ugyldig bilete" msgid "web services under your control" msgstr "Vev tjenester under din kontroll" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -194,8 +194,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -208,9 +208,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -219,9 +219,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -257,7 +257,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -269,19 +269,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Tenaren din er ikkje enno rett innstilt til å tilby filsynkronisering sidan WebDAV-grensesnittet ser ut til å vera øydelagt." -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "Ver venleg og dobbeltsjekk installasjonsrettleiinga." -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "%s delte «%s» med deg" @@ -338,3 +338,21 @@ msgstr "i fjor" #: private/template/functions.php:145 msgid "years ago" msgstr "år sidan" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/nqo/files_external.po b/l10n/nqo/files_external.po index 28fd3bb27f3..12b0618ce14 100644 --- a/l10n/nqo/files_external.po +++ b/l10n/nqo/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/nqo/lib.po b/l10n/nqo/lib.po index 27ffc71bf38..0571ed36a4e 100644 --- a/l10n/nqo/lib.po +++ b/l10n/nqo/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -332,3 +332,21 @@ msgstr "" #: private/template/functions.php:145 msgid "years ago" msgstr "" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/oc/files_external.po b/l10n/oc/files_external.po index 4c2245b8870..3814886f94d 100644 --- a/l10n/oc/files_external.po +++ b/l10n/oc/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index a753c847934..7883c2348cd 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "Services web jos ton contraròtle" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "Avalcargar los ZIP es inactiu." -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "Los fichièrs devan èsser avalcargats un per un." -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "Torna cap als fichièrs" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -336,3 +336,21 @@ msgstr "an passat" #: private/template/functions.php:145 msgid "years ago" msgstr "ans a" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/pa/files_external.po b/l10n/pa/files_external.po index 2e597bdc990..48a189abb1e 100644 --- a/l10n/pa/files_external.po +++ b/l10n/pa/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/pa/lib.po b/l10n/pa/lib.po index 3977deb38b0..cc8806e357e 100644 --- a/l10n/pa/lib.po +++ b/l10n/pa/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -336,3 +336,21 @@ msgstr "ਪਿਛਲੇ ਸਾਲ" #: private/template/functions.php:145 msgid "years ago" msgstr "ਸਾਲਾਂ ਪਹਿਲਾਂ" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index b0f9ae1e7f4..b59c87df678 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 06:02+0000\n" +"Last-Translator: bobie \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -239,11 +239,11 @@ msgstr "Konflikt pliku" #: js/oc-dialogs.js:367 msgid "New Files" -msgstr "" +msgstr "Nowe pliki" #: js/oc-dialogs.js:368 msgid "Already existing files" -msgstr "" +msgstr "Już istniejące pliki" #: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" diff --git a/l10n/pl/files_external.po b/l10n/pl/files_external.po index b7e402d12aa..75ad91e0828 100644 --- a/l10n/pl/files_external.po +++ b/l10n/pl/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" -"Last-Translator: bobie \n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,25 +43,34 @@ msgstr "Wystąpił błąd podczas konfigurowania zasobu Google Drive" msgid "Saved" msgstr "Zapisano" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." -msgstr "Ostrzeżenie: \"smbclient\" nie jest zainstalowany. Zamontowanie katalogów CIFS/SMB nie jest możliwe. Skontaktuj sie z administratorem w celu zainstalowania." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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 "Ostrzeżenie: Wsparcie dla FTP w PHP nie jest zainstalowane lub włączone. Skontaktuj sie z administratorem w celu zainstalowania lub włączenia go." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." -msgstr "Ostrzeżenie: Wsparcie dla Curl w PHP nie jest zainstalowane lub włączone. Montowanie WebDAV lub GoogleDrive nie będzie możliwe. Skontaktuj się z administratorem w celu zainstalowania lub włączenia tej opcji." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." +msgstr "" #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index 801c5b51c9c..9ae2481a2d8 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-16 03:12-0400\n" -"PO-Revision-Date: 2014-03-15 15:10+0000\n" -"Last-Translator: bobie \n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -67,23 +67,23 @@ msgstr "Błędne zdjęcie" msgid "web services under your control" msgstr "Kontrolowane serwisy" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "Pobieranie ZIP jest wyłączone." -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "Pliki muszą zostać pobrane pojedynczo." -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "Wróć do plików" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "Wybrane pliki są zbyt duże, aby wygenerować plik zip." -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -269,19 +269,19 @@ msgstr "Ustaw nazwę administratora." msgid "Set an admin password." msgstr "Ustaw hasło administratora." -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Serwer internetowy nie jest jeszcze poprawnie skonfigurowany, aby umożliwić synchronizację plików, ponieważ interfejs WebDAV wydaje się być uszkodzony." -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "Sprawdź ponownie przewodniki instalacji." -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "%s Współdzielone »%s« z tobą" @@ -342,3 +342,21 @@ msgstr "w zeszłym roku" #: private/template/functions.php:145 msgid "years ago" msgstr "lat temu" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index 1ef7dec262c..498a323e540 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 06:02+0000\n" +"Last-Translator: bobie \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -428,14 +428,14 @@ msgstr "Kiedy włączone, grupy, które zawierają grupy, są wspierane. (Dział #: templates/settings.php:40 msgid "Paging chunksize" -msgstr "" +msgstr "Wielkość stronicowania" #: templates/settings.php:40 msgid "" "Chunksize used for paged LDAP searches that may return bulky results like " "user or group enumeration. (Setting it 0 disables paged LDAP searches in " "those situations.)" -msgstr "" +msgstr "Długość łańcucha jest używana do stronicowanych wyszukiwań LDAP, które mogą zwracać duże zbiory jak lista grup, czy użytkowników. (Ustawienie na 0 wyłącza stronicowane wyszukiwania w takich sytuacjach.)" #: templates/settings.php:42 msgid "Special Attributes" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index fef8f059623..a48b9dd777a 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 10:40+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" @@ -232,11 +232,11 @@ msgstr "Conflito em um arquivo" #: js/oc-dialogs.js:367 msgid "New Files" -msgstr "" +msgstr "Novos Arquivos" #: js/oc-dialogs.js:368 msgid "Already existing files" -msgstr "" +msgstr "Arquivos já existentes" #: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index 2c968ce5987..ef0179cf115 100644 --- a/l10n/pt_BR/files_external.po +++ b/l10n/pt_BR/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -42,25 +42,34 @@ msgstr "Erro ao configurar armazenamento do Google Drive" msgid "Saved" msgstr "Salvo" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." -msgstr "Aviso: \"smbclient\" não está instalado. Impossível montar compartilhamentos de CIFS/SMB. Por favor, peça ao seu administrador do sistema para instalá-lo." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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 "Aviso: O suporte para FTP do PHP não está ativado ou instalado. Impossível montar compartilhamentos FTP. Por favor, peça ao seu administrador do sistema para instalá-lo." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." -msgstr " Aviso: O suport a Curl em PHP não está habilitado ou instalado. A montagem do ownCloud / WebDAV ou GoogleDrive não é possível. Por favor, solicite ao seu administrador do sistema instalá-lo." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." +msgstr "" #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index 933f86576a2..6dc1cf3a5b2 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 13:20+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -66,23 +66,23 @@ msgstr "Imagem inválida" msgid "web services under your control" msgstr "serviços web sob seu controle" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "Download ZIP está desligado." -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "Arquivos precisam ser baixados um de cada vez." -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "Voltar para Arquivos" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "Arquivos selecionados são muito grandes para gerar arquivo zip." -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -193,8 +193,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Nome de usuário e/ou senha MS SQL inválido(s): %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Você precisa inserir uma conta existente ou o administrador." @@ -207,9 +207,9 @@ msgstr "MySQL/MariaDB nome de usuário e/ou senha não é válida" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Erro no BD: \"%s\"" @@ -218,9 +218,9 @@ msgstr "Erro no BD: \"%s\"" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "Comando ofensivo era: \"%s\"" @@ -256,7 +256,7 @@ msgstr "Nome de usuário e/ou senha Oracle inválido(s)" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Comando ofensivo era: \"%s\", nome: %s, senha: %s" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "Nome de usuário e/ou senha PostgreSQL inválido(s)" @@ -268,19 +268,19 @@ msgstr "Defina um nome de usuário de administrador." msgid "Set an admin password." msgstr "Defina uma senha de administrador." -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Seu servidor web não está configurado corretamente para permitir sincronização de arquivos porque a interface WebDAV parece estar quebrada." -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "Por favor, confira os guias de instalação." -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "%s compartilhou »%s« com você" @@ -337,3 +337,21 @@ msgstr "último ano" #: private/template/functions.php:145 msgid "years ago" msgstr "anos atrás" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index f61634c1304..a50f34a3474 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 10:51+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" @@ -423,14 +423,14 @@ msgstr "Quando habilitado, os grupos que contêm os grupos são suportados. (Só #: templates/settings.php:40 msgid "Paging chunksize" -msgstr "" +msgstr "Bloco de paginação" #: templates/settings.php:40 msgid "" "Chunksize used for paged LDAP searches that may return bulky results like " "user or group enumeration. (Setting it 0 disables paged LDAP searches in " "those situations.)" -msgstr "" +msgstr "Tamanho do bloco usado para pesquisas LDAP paginados que podem retornar resultados volumosos como usuário ou grupo de enumeração. (Defini-lo 0 desativa paginada pesquisas LDAP nessas situações.)" #: templates/settings.php:42 msgid "Special Attributes" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index f4403d00eb6..1d50e0c83c6 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 06:10+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" @@ -237,7 +237,7 @@ msgstr "Um conflito no ficheiro" #: js/oc-dialogs.js:367 msgid "New Files" -msgstr "" +msgstr "Ficheiros Novos" #: js/oc-dialogs.js:368 msgid "Already existing files" diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index d465a9a2992..d46f758eefe 100644 --- a/l10n/pt_PT/files_external.po +++ b/l10n/pt_PT/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -44,25 +44,34 @@ msgstr "Erro ao configurar o armazenamento do Google Drive" msgid "Saved" msgstr "Guardado" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." -msgstr "Atenção: O cliente \"smbclient\" não está instalado. Não é possível montar as partilhas CIFS/SMB . Peça ao seu administrador para instalar." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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 "Aviso: O suporte FTP no PHP não está activate ou instalado. Não é possível montar as partilhas FTP. Peça ao seu administrador para instalar." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." -msgstr "Atenção:
      O suporte PHP para o Curl não está activado ou instalado. A montagem do ownCloud/WebDav ou GoolgeDriver não é possível. Por favor contacte o administrador para o instalar." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." +msgstr "" #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index d042b9424cf..e62af4ccc4e 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-16 03:12-0400\n" -"PO-Revision-Date: 2014-03-15 16:30+0000\n" -"Last-Translator: jmruas \n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -68,23 +68,23 @@ msgstr "Imagem inválida" msgid "web services under your control" msgstr "serviços web sob o seu controlo" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "Descarregamento em ZIP está desligado." -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "Os ficheiros precisam de ser descarregados um por um." -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "Voltar a Ficheiros" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "Os ficheiros seleccionados são grandes demais para gerar um ficheiro zip." -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -270,19 +270,19 @@ msgstr "Definir um nome de utilizador de administrador" msgid "Set an admin password." msgstr "Definiar uma password de administrador" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "O seu servidor web não está configurado correctamente para autorizar sincronização de ficheiros, pois o interface WebDAV parece estar com problemas." -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "Por favor verifique installation guides." -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "%s partilhado »%s« contigo" @@ -339,3 +339,21 @@ msgstr "ano passado" #: private/template/functions.php:145 msgid "years ago" msgstr "anos atrás" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/ro/files_external.po b/l10n/ro/files_external.po index 295b3572c49..137e05d9291 100644 --- a/l10n/ro/files_external.po +++ b/l10n/ro/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -42,25 +42,34 @@ msgstr "Eroare la configurarea mediului de stocare Google Drive" msgid "Saved" msgstr "Salvat" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." -msgstr "Atenție: \"smbclient\" nu este instalat. Montarea mediilor CIFS/SMB partajate nu este posibilă. Solicită administratorului sistemului tău să îl instaleaze." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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 "Atenție: suportul pentru FTP în PHP nu este activat sau instalat. Montarea mediilor FPT partajate nu este posibilă. Solicită administratorului sistemului tău să îl instaleze." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." -msgstr "Atentie: Suportul Curl nu este pornit / instalat in configuratia PHP! Montarea ownCloud / WebDAV / GoogleDrive nu este posibila! Intrebati administratorul sistemului despre aceasta problema!" +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." +msgstr "" #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index f53e445c723..442afc592da 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -66,23 +66,23 @@ msgstr "Imagine invalidă" msgid "web services under your control" msgstr "servicii web controlate de tine" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "Descărcarea ZIP este dezactivată." -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "Fișierele trebuie descărcate unul câte unul." -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "Înapoi la fișiere" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "Fișierele selectate sunt prea mari pentru a genera un fișier zip." -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -193,8 +193,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -207,9 +207,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -218,9 +218,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -256,7 +256,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -268,19 +268,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Serverul de web nu este încă setat corespunzător pentru a permite sincronizarea fișierelor deoarece interfața WebDAV pare a fi întreruptă." -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "Vă rugăm să verificați ghiduri de instalare." -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "%s Partajat »%s« cu tine de" @@ -341,3 +341,21 @@ msgstr "ultimul an" #: private/template/functions.php:145 msgid "years ago" msgstr "ani în urmă" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index de631e3a6e4..b201c601b06 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -24,8 +24,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 06:10+0000\n" "Last-Translator: I Robot\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -252,7 +252,7 @@ msgstr "Один конфликт в файлах" #: js/oc-dialogs.js:367 msgid "New Files" -msgstr "" +msgstr "Новые файлы" #: js/oc-dialogs.js:368 msgid "Already existing files" diff --git a/l10n/ru/files_external.po b/l10n/ru/files_external.po index 2779b06cd5a..d3611c51ccc 100644 --- a/l10n/ru/files_external.po +++ b/l10n/ru/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -42,25 +42,34 @@ msgstr "Ошибка при настройке хранилища Google Drive" msgid "Saved" msgstr "Сохранено" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." -msgstr "Внимание: \"smbclient\" не установлен. Подключение по CIFS/SMB невозможно. Пожалуйста, обратитесь к системному администратору, чтобы установить его." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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 "Внимание: Поддержка FTP не включена в PHP. Подключение по FTP невозможно. Пожалуйста, обратитесь к системному администратору, чтобы включить." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." -msgstr "Внимание: Поддержка Curl в PHP не включена или не установлена. Подключение ownCloud / WebDAV или GoogleDrive невозможно. Попросите вашего системного администратора установить его." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." +msgstr "" #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index f2f68e4ca15..f9f03c5f434 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -72,23 +72,23 @@ msgstr "Изображение повреждено" msgid "web services under your control" msgstr "веб-сервисы под вашим управлением" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "ZIP-скачивание отключено." -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "Файлы должны быть загружены по одному." -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "Назад к файлам" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "Выбранные файлы слишком велики, чтобы создать zip файл." -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -199,8 +199,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Имя пользователя и/или пароль MS SQL не подходит: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Вы должны войти или в существующий аккаунт или под администратором." @@ -213,9 +213,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Ошибка БД: \"%s\"" @@ -224,9 +224,9 @@ msgstr "Ошибка БД: \"%s\"" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "Вызываемая команда была: \"%s\"" @@ -262,7 +262,7 @@ msgstr "Неверное имя пользователя и/или пароль msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Вызываемая команда была: \"%s\", имя: %s, пароль: %s" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "Неверное имя пользователя и/или пароль PostgreSQL" @@ -274,19 +274,19 @@ msgstr "Установить имя пользователя для admin." msgid "Set an admin password." msgstr "становит пароль для admin." -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ваш веб сервер до сих пор не настроен правильно для возможности синхронизации файлов, похоже что проблема в неисправности интерфейса WebDAV." -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "Пожалуйста, дважды просмотрите инструкции по установке." -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "%s поделился »%s« с вами" @@ -347,3 +347,21 @@ msgstr "в прошлом году" #: private/template/functions.php:145 msgid "years ago" msgstr "несколько лет назад" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/si_LK/files_external.po b/l10n/si_LK/files_external.po index 6f76a09b3f9..471f8579648 100644 --- a/l10n/si_LK/files_external.po +++ b/l10n/si_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -41,24 +41,33 @@ msgstr "Google Drive ගබඩාව වින්‍යාස කිරීමේ msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index 8699aa3e99d..5307a86f2fb 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "ඔබට පාලනය කළ හැකි වෙබ් සේවාවන්" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "ZIP භාගත කිරීම් අක්‍රියයි" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "ගොනු එකින් එක භාගත යුතුයි" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "ගොනු වෙතට නැවත යන්න" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "තෝරාගත් ගොනු ZIP ගොනුවක් තැනීමට විශාල වැඩිය." -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -336,3 +336,21 @@ msgstr "පෙර අවුරුද්දේ" #: private/template/functions.php:145 msgid "years ago" msgstr "අවුරුදු කීපයකට පෙර" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/sk/files_external.po b/l10n/sk/files_external.po index 6030e4f8a04..55edeaf3586 100644 --- a/l10n/sk/files_external.po +++ b/l10n/sk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/sk/lib.po b/l10n/sk/lib.po index 0e98417ded1..56224c08da5 100644 --- a/l10n/sk/lib.po +++ b/l10n/sk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -340,3 +340,21 @@ msgstr "" #: private/template/functions.php:145 msgid "years ago" msgstr "" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index fecc3ec62bb..87b17aa9d8a 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 06:10+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" @@ -237,7 +237,7 @@ msgstr "Jeden konflikt súboru" #: js/oc-dialogs.js:367 msgid "New Files" -msgstr "" +msgstr "Nové súbory" #: js/oc-dialogs.js:368 msgid "Already existing files" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index b281580a65c..0a04a512b63 100644 --- a/l10n/sk_SK/files_external.po +++ b/l10n/sk_SK/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -42,25 +42,34 @@ msgstr "Chyba pri konfigurácii úložiska Google drive" msgid "Saved" msgstr "Uložené" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." -msgstr "Upozornenie: \"smbclient\" nie je nainštalovaný. Nie je možné pripojenie oddielov CIFS/SMB. Požiadajte administrátora systému, nech ho nainštaluje." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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 "Upozornenie: Podpora FTP v PHP nie je povolená alebo nainštalovaná. Nie je možné pripojenie oddielov FTP. Požiadajte administrátora systému, nech ho nainštaluje." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." -msgstr "Varovanie: nie je nainštalovaná, alebo povolená, podpora Curl v PHP. Nie je možné pripojenie oddielov ownCloud, WebDAV, či GoogleDrive. Prosím požiadajte svojho administrátora systému, nech ju nainštaluje." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." +msgstr "" #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index a7df661ab0c..434ad7c1f4f 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-01 01:55-0400\n" -"PO-Revision-Date: 2014-03-31 10:40+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -280,8 +280,8 @@ msgstr "Váš webový server nie je správne nastavený na synchronizáciu, pret msgid "Please double check the installation guides." msgstr "Prosím skontrolujte inštalačnú príručku." -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "%s s vami zdieľa »%s«" @@ -342,3 +342,21 @@ msgstr "minulý rok" #: private/template/functions.php:145 msgid "years ago" msgstr "pred rokmi" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index b1a00a41e46..d021ae13773 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:52+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 07:10+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" @@ -51,7 +51,7 @@ msgstr "" #: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" -msgstr "" +msgstr "Mód odosielania" #: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" @@ -59,7 +59,7 @@ msgstr "Šifrovanie" #: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" -msgstr "" +msgstr "Autentifikačná metóda" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" @@ -167,7 +167,7 @@ msgstr "Príručka používateľa" #: js/apps.js:50 msgid "Admin Documentation" -msgstr "" +msgstr "Príručka správcu" #: js/apps.js:67 msgid "Update to {appversion}" @@ -324,7 +324,7 @@ msgstr "" #: templates/admin.php:19 msgid "NT LAN Manager" -msgstr "" +msgstr "NT LAN Manager" #: templates/admin.php:24 msgid "SSL" @@ -541,7 +541,7 @@ msgstr "" #: templates/admin.php:327 msgid "From address" -msgstr "" +msgstr "Z adresy" #: templates/admin.php:349 msgid "Authentication required" @@ -619,7 +619,7 @@ msgstr "Vyberte aplikáciu" #: templates/apps.php:43 msgid "Documentation:" -msgstr "" +msgstr "Dokumentácia:" #: templates/apps.php:49 msgid "See application page at apps.owncloud.com" @@ -627,7 +627,7 @@ msgstr "Pozrite si stránku aplikácií na apps.owncloud.com" #: templates/apps.php:51 msgid "See application website" -msgstr "" +msgstr "Pozrite si webstránku aplikácie" #: templates/apps.php:53 msgid "-licensed by " diff --git a/l10n/sl/core.po b/l10n/sl/core.po index ed2f640c387..c0887239b2e 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 06:10+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" @@ -242,7 +242,7 @@ msgstr "En spor datotek" #: js/oc-dialogs.js:367 msgid "New Files" -msgstr "" +msgstr "Nove datoteke" #: js/oc-dialogs.js:368 msgid "Already existing files" diff --git a/l10n/sl/files_external.po b/l10n/sl/files_external.po index e9332610e13..46ee2ccbc17 100644 --- a/l10n/sl/files_external.po +++ b/l10n/sl/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -42,25 +42,34 @@ msgstr "Napaka nastavljanja shrambe Google Drive" msgid "Saved" msgstr "Shranjeno" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." -msgstr "Opozorilo: paket \"smbclient\" ni nameščen. Priklapljanje pogonov CIFS/SMB ne bo mogoče." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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 "Opozorilo: podpora FTP v PHP ni omogočena ali pa ni nameščena. Priklapljanje pogonov FTP zato ne bo mogoče." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." -msgstr "Opozorilo: podpora za Curl v PHP ni omogočena ali pa ni nameščena. Priklapljanje točke ownCloud / WebDAV ali GoogleDrive zato ne bo mogoče. Zahtevane pakete je treba pred uporabo namestiti." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." +msgstr "" #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index b5a1d0e092d..5a7ab52c3f5 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-14 19:30+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -67,23 +67,23 @@ msgstr "Neveljavna slika" msgid "web services under your control" msgstr "spletne storitve pod vašim nadzorom" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "Prejemanje datotek v paketu ZIP je onemogočeno." -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "Datoteke je mogoče prejeti le posamično." -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "Nazaj na datoteke" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "Izbrane datoteke so prevelike za ustvarjanje datoteke arhiva zip." -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -269,19 +269,19 @@ msgstr "Nastavi uporabniško ime skrbnika." msgid "Set an admin password." msgstr "Nastavi geslo skrbnika." -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Spletni stražnik še ni ustrezno nastavljen in ne omogoča usklajevanja, saj je nastavitev WebDAV okvarjena." -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "Preverite navodila namestitve." -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "%s je omogočil souporabo »%s«" @@ -346,3 +346,21 @@ msgstr "lansko leto" #: private/template/functions.php:145 msgid "years ago" msgstr "let nazaj" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/sq/files_external.po b/l10n/sq/files_external.po index b379c20c94e..27f4c28f011 100644 --- a/l10n/sq/files_external.po +++ b/l10n/sq/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index 9588cd47857..a52513d2496 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "shërbime web nën kontrollin tënd" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "Shkarimi i skedarëve ZIP është i çaktivizuar." -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "Skedarët duhet të shkarkohen një nga një." -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "Kthehu tek skedarët" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "Skedarët e selektuar janë shumë të mëdhenj për të krijuar një skedar ZIP." -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Përdoruesi dhe/apo kodi i MS SQL i pavlefshëm: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Duhet të përdorni një llogari ekzistuese ose llogarinë e administratorit." @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Veprim i gabuar i DB-it: \"%s\"" @@ -217,9 +217,9 @@ msgstr "Veprim i gabuar i DB-it: \"%s\"" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "Komanda e gabuar ishte: \"%s\"" @@ -255,7 +255,7 @@ msgstr "Përdoruesi dhe/apo kodi i Oracle-it i pavlefshëm" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Komanda e gabuar ishte: \"%s\", përdoruesi: %s, kodi: %s" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "Përdoruesi dhe/apo kodi i PostgreSQL i pavlefshëm" @@ -267,19 +267,19 @@ msgstr "Cakto emrin e administratorit." msgid "Set an admin password." msgstr "Cakto kodin e administratorit." -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Serveri web i juaji nuk është konfiguruar akoma për të lejuar sinkronizimin e skedarëve sepse ndërfaqja WebDAV mund të jetë e dëmtuar." -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "Ju lutemi kontrolloni mirë shoqëruesin e instalimit." -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "%s ndau »%s« me ju" @@ -336,3 +336,21 @@ msgstr "vitin e shkuar" #: private/template/functions.php:145 msgid "years ago" msgstr "vite më parë" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/sr/files_external.po b/l10n/sr/files_external.po index 6b6480105d3..ac5a5f2331c 100644 --- a/l10n/sr/files_external.po +++ b/l10n/sr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index d2832922e6d..1f49ce77b3c 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "веб сервиси под контролом" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "Преузимање ZIP-а је искључено." -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "Датотеке морате преузимати једну по једну." -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "Назад на датотеке" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "Изабране датотеке су превелике да бисте направили ZIP датотеку." -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ваш веб сервер тренутно не подржава синхронизацију датотека јер се чини да је WebDAV сучеље неисправно." -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "Погледајте водиче за инсталацију." -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -340,3 +340,21 @@ msgstr "прошле године" #: private/template/functions.php:145 msgid "years ago" msgstr "година раније" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/sr@latin/files_external.po b/l10n/sr@latin/files_external.po index a227f057282..036e65f4a2c 100644 --- a/l10n/sr@latin/files_external.po +++ b/l10n/sr@latin/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index 9e437d4e7fe..0f3d0d7a092 100644 --- a/l10n/sr@latin/lib.po +++ b/l10n/sr@latin/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 23:21+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -340,3 +340,21 @@ msgstr "prošle godine" #: private/template/functions.php:145 msgid "years ago" msgstr "pre nekoliko godina" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/su/files_external.po b/l10n/su/files_external.po index d370964f341..206f00c67ea 100644 --- a/l10n/su/files_external.po +++ b/l10n/su/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" "MIME-Version: 1.0\n" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/su/lib.po b/l10n/su/lib.po index 15649f4f65d..9d0019b5f50 100644 --- a/l10n/su/lib.po +++ b/l10n/su/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" "MIME-Version: 1.0\n" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -332,3 +332,21 @@ msgstr "" #: private/template/functions.php:145 msgid "years ago" msgstr "" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 02ab3d0821f..affc664f21b 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 18:10+0000\n" +"Last-Translator: AsavarTzeth \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -238,11 +238,11 @@ msgstr "En filkonflikt" #: js/oc-dialogs.js:367 msgid "New Files" -msgstr "" +msgstr "Nya filer" #: js/oc-dialogs.js:368 msgid "Already existing files" -msgstr "" +msgstr "Filer som redan existerar" #: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index 9b16af04313..a39d6384c3d 100644 --- a/l10n/sv/files_external.po +++ b/l10n/sv/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-07 01:55-0400\n" -"PO-Revision-Date: 2014-04-06 11:00+0000\n" -"Last-Translator: AsavarTzeth \n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,25 +43,34 @@ msgstr "Fel vid konfigurering av Google Drive" msgid "Saved" msgstr "Sparad" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." -msgstr "Varning: \"smb-klienten\" är inte installerad. Montering av CIFS/SMB delningar är inte möjligt. Kontakta din systemadministratör för att få den installerad." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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 "Varning: Stöd för FTP i PHP är inte aktiverat eller installerat. Montering av FTP-delningar är inte möjligt. Kontakta din systemadministratör för att få det installerat." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." -msgstr "Varning: Curl-stöd i PHP är inte aktiverat eller installerat. Montering av ownCloud / WebDAV eller GoogleDrive är inte möjligt. Vänligen be din administratör att installera det." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." +msgstr "" #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index 6ce09feeb1b..2934570091a 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-07 01:55-0400\n" -"PO-Revision-Date: 2014-04-06 10:10+0000\n" -"Last-Translator: AsavarTzeth \n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -342,3 +342,21 @@ msgstr "förra året" #: private/template/functions.php:145 msgid "years ago" msgstr "år sedan" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index 09ceeb1a4bf..dc65893d02e 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 17:30+0000\n" +"Last-Translator: AsavarTzeth \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -430,14 +430,14 @@ msgstr "När den är påslagen, stöds grupper som innehåller grupper. (Fungera #: templates/settings.php:40 msgid "Paging chunksize" -msgstr "" +msgstr "Paging klusterstorlek" #: templates/settings.php:40 msgid "" "Chunksize used for paged LDAP searches that may return bulky results like " "user or group enumeration. (Setting it 0 disables paged LDAP searches in " "those situations.)" -msgstr "" +msgstr "Klusterstorlek som används för paged LDAP sökningar som kan komma att returnera skrymmande resultat som uppräknande av användare eller grupper. (Inställning av denna till 0 inaktiverar paged LDAP sökningar i de situationerna)" #: templates/settings.php:42 msgid "Special Attributes" diff --git a/l10n/sw_KE/files_external.po b/l10n/sw_KE/files_external.po index f9f8a9fd4f6..aa643c7a408 100644 --- a/l10n/sw_KE/files_external.po +++ b/l10n/sw_KE/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/sw_KE/lib.po b/l10n/sw_KE/lib.po index 09812f7f63a..b607d2dedb0 100644 --- a/l10n/sw_KE/lib.po +++ b/l10n/sw_KE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -336,3 +336,21 @@ msgstr "" #: private/template/functions.php:145 msgid "years ago" msgstr "" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/ta_LK/files_external.po b/l10n/ta_LK/files_external.po index ef329183d19..d0f415fd5c5 100644 --- a/l10n/ta_LK/files_external.po +++ b/l10n/ta_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -41,24 +41,33 @@ msgstr "Google இயக்க சேமிப்பகத்தை தகமை msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index fbe3d5f915b..96e0bc2c2a1 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "வலைய சேவைகள் உங்களுடைய கட்டுப்பாட்டின் கீழ் உள்ளது" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "வீசொலிப் பூட்டு பதிவிறக்கம் நிறுத்தப்பட்டுள்ளது." -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "கோப்புகள்ஒன்றன் பின் ஒன்றாக பதிவிறக்கப்படவேண்டும்." -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "கோப்புகளுக்கு செல்க" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "வீ சொலிக் கோப்புகளை உருவாக்குவதற்கு தெரிவுசெய்யப்பட்ட கோப்புகள் மிகப்பெரியவை" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -336,3 +336,21 @@ msgstr "கடந்த வருடம்" #: private/template/functions.php:145 msgid "years ago" msgstr "வருடங்களுக்கு முன்" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/te/files_external.po b/l10n/te/files_external.po index 9be6a7bbaec..90e1578bd18 100644 --- a/l10n/te/files_external.po +++ b/l10n/te/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/te/lib.po b/l10n/te/lib.po index f1cbfbcfc20..9428875f4e6 100644 --- a/l10n/te/lib.po +++ b/l10n/te/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -336,3 +336,21 @@ msgstr "పోయిన సంవత్సరం" #: private/template/functions.php:145 msgid "years ago" msgstr "సంవత్సరాల క్రితం" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index e20208b113b..b365936e9e0 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: 2014-04-08 01:56-0400\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\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.pot b/l10n/templates/files.pot index a74152007ab..97b53b761c4 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: 2014-04-08 01:56-0400\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\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 49f422a52b5..5420e3eeda4 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: 2014-04-08 01:56-0400\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\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 18a1c4f9470..9d84c3a33b2 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: 2014-04-08 01:56-0400\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of " +"%s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please " +"ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 1921e80d189..c21dcd23046 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: 2014-04-08 01:56-0400\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\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 2c3b8e0b23a..011aa053031 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: 2014-04-08 01:56-0400\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -47,18 +47,18 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:18 +#: templates/index.php:19 msgid "Name" msgstr "" -#: templates/index.php:21 templates/index.php:23 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "" -#: templates/index.php:29 +#: templates/index.php:30 msgid "Deleted" msgstr "" -#: templates/index.php:32 templates/index.php:33 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index b4091594867..26903a761f7 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: 2014-04-08 01:56-0400\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\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 1b8acf89a6c..fb1b7a7289c 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: 2014-04-08 01:56-0400\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -337,3 +337,21 @@ msgstr "" #: private/template/functions.php:145 msgid "years ago" msgstr "" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index 1f1e3b0d7af..a405235f323 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: 2014-04-08 01:56-0400\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -329,3 +329,21 @@ msgstr "" #: template/functions.php:145 msgid "years ago" msgstr "" + +#: user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index d2de043e5c8..6ecfbc8c504 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: 2014-04-08 01:56-0400\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\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 8f3d9e5a09e..1204e2bb4c9 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: 2014-04-08 01:56-0400\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\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 58dd8f57b34..c1012033296 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: 2014-04-08 01:56-0400\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\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/core.po b/l10n/th_TH/core.po index fbdd17bf421..3ff654362be 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 06:10+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" @@ -225,7 +225,7 @@ msgstr "" #: js/oc-dialogs.js:367 msgid "New Files" -msgstr "" +msgstr "ไฟล์ใหม่" #: js/oc-dialogs.js:368 msgid "Already existing files" diff --git a/l10n/th_TH/files_external.po b/l10n/th_TH/files_external.po index ac2c87850a3..5a4178fb5c8 100644 --- a/l10n/th_TH/files_external.po +++ b/l10n/th_TH/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -41,24 +41,33 @@ msgstr "เกิดข้อผิดพลาดในการกำหนด msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." -msgstr "คำเตือน: \"smbclient\" ยังไม่ได้ถูกติดตั้ง. การชี้ CIFS/SMB เพื่อแชร์ข้อมูลไม่สามารถกระทำได้ กรุณาสอบถามข้อมูลเพิ่มเติมจากผู้ดูแลระบบเพื่อติดตั้ง." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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 "คำเตือน: การสนับสนุนการใช้งาน FTP ในภาษา PHP ยังไม่ได้ถูกเปิดใช้งานหรือถูกติดตั้ง. การชี้ FTP เพื่อแชร์ข้อมูลไม่สามารถดำเนินการได้ กรุณาสอบถามข้อมูลเพิ่มเติมจากผู้ดูแลระบบเพื่อติดตั้ง" +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index 2257d7e995f..fcd4bbd24b9 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "เว็บเซอร์วิสที่คุณควบคุมการใช้งานได้" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "คุณสมบัติการดาวน์โหลด zip ถูกปิดการใช้งานไว้" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "ไฟล์สามารถดาวน์โหลดได้ทีละครั้งเท่านั้น" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "กลับไปที่ไฟล์" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "ไฟล์ที่เลือกมีขนาดใหญ่เกินกว่าที่จะสร้างเป็นไฟล์ zip" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -332,3 +332,21 @@ msgstr "ปีที่แล้ว" #: private/template/functions.php:145 msgid "years ago" msgstr "ปี ที่ผ่านมา" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 583c77a58df..4a6ae0d299f 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 16:21+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" @@ -234,11 +234,11 @@ msgstr "Bir dosya çakışması" #: js/oc-dialogs.js:367 msgid "New Files" -msgstr "" +msgstr "Yeni Dosyalar" #: js/oc-dialogs.js:368 msgid "Already existing files" -msgstr "" +msgstr "Zaten mevcut olan dosyalar" #: js/oc-dialogs.js:370 msgid "Which files do you want to keep?" diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index c7bb36b8d81..8a805f876d8 100644 --- a/l10n/tr/files_external.po +++ b/l10n/tr/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-06 01:55-0400\n" -"PO-Revision-Date: 2014-04-05 14:30+0000\n" -"Last-Translator: volkangezer \n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -42,25 +42,34 @@ msgstr "Google Drive depo yapılandırma hatası" msgid "Saved" msgstr "Kaydedildi" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." -msgstr "Uyarı: \"smbclient\" kurulu değil. CIFS/SMB paylaşımlarını bağlama işlemi mümkün olmadı. Lütfen kurulumu için sistem yöneticinize danışın." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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 "Uyarı: PHP içerisinde FTP desteği etkin veya yüklü değil. FTP paylaşımlarını bağlama işlemi mümkün olmadı. Lütfen kurulumu için sistem yöneticinize danışın." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." -msgstr "Uyarı: PHP içerisinde Curl desteği etkin veya yüklü değil. ownCloud / WebDAV veya GoogleDrive bağlama işlemi mümkün olmadı. Lütfen kurulumu için sistem yöneticinizde danışın." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." +msgstr "" #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index 95bb4b68b5b..470d8a70cb3 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-06 01:55-0400\n" -"PO-Revision-Date: 2014-04-06 00:10+0000\n" -"Last-Translator: volkangezer \n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -340,3 +340,21 @@ msgstr "geçen yıl" #: private/template/functions.php:145 msgid "years ago" msgstr "yıl önce" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 7da2dc151b3..f4015df4899 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-01 19:31+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 23: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" @@ -215,31 +215,31 @@ msgstr "Güncelleme" msgid "Updated" msgstr "Güncellendi" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "Bir profil fotoğrafı seçin" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "Çok güçsüz parola" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "Güçsüz parola" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "Normal parola" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "İyi parola" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "Güçlü parola" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "Dosyaların şifresi çözülüyor... Lütfen bekleyin, bu biraz zaman alabilir." diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 90ef7866c03..612e836a609 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 23: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -424,14 +424,14 @@ msgstr "Etkinleştirildiğinde, grup içeren gruplar desteklenir (Sadece grup ü #: templates/settings.php:40 msgid "Paging chunksize" -msgstr "" +msgstr "Sayfalama yığın boyutu" #: templates/settings.php:40 msgid "" "Chunksize used for paged LDAP searches that may return bulky results like " "user or group enumeration. (Setting it 0 disables paged LDAP searches in " "those situations.)" -msgstr "" +msgstr "Yığın boyutu, kullanıcı veya grup numaralandırması benzeri hantal sonuçlar döndürebilen sayfalandırılmış LDAP aramaları için kullanılır. (0 yapmak bu durumlarda sayfalandırılmış LDAP aramalarını devre dışı bırakır.)" #: templates/settings.php:42 msgid "Special Attributes" diff --git a/l10n/tzm/files_external.po b/l10n/tzm/files_external.po index f65ade3c2cc..1720136d3fc 100644 --- a/l10n/tzm/files_external.po +++ b/l10n/tzm/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Central Atlas Tamazight (http://www.transifex.com/projects/p/owncloud/language/tzm/)\n" "MIME-Version: 1.0\n" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/tzm/lib.po b/l10n/tzm/lib.po index 365568ea673..70663f6f817 100644 --- a/l10n/tzm/lib.po +++ b/l10n/tzm/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Central Atlas Tamazight (http://www.transifex.com/projects/p/owncloud/language/tzm/)\n" "MIME-Version: 1.0\n" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -336,3 +336,21 @@ msgstr "" #: private/template/functions.php:145 msgid "years ago" msgstr "" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/ug/files_external.po b/l10n/ug/files_external.po index dc93cbadcf0..c200c63e02f 100644 --- a/l10n/ug/files_external.po +++ b/l10n/ug/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index d3d58129f5c..ba3733d9f32 100644 --- a/l10n/ug/lib.po +++ b/l10n/ug/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "سىزنىڭ تور مۇلازىمېتىرىڭىز ھۆججەت قەدەمداشلاشقا يول قويىدىغان قىلىپ توغرا تەڭشەلمەپتۇ، چۈنكى WebDAV نىڭ ئېغىزى بۇزۇلغاندەك تۇرىدۇ." -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -332,3 +332,21 @@ msgstr "" #: private/template/functions.php:145 msgid "years ago" msgstr "" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 8f273371747..874216523c5 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 06:10+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" @@ -236,7 +236,7 @@ msgstr "Один файловий конфлікт" #: js/oc-dialogs.js:367 msgid "New Files" -msgstr "" +msgstr "Нових Файлів" #: js/oc-dialogs.js:368 msgid "Already existing files" diff --git a/l10n/uk/files_external.po b/l10n/uk/files_external.po index ac1a791472a..e176fae6bc9 100644 --- a/l10n/uk/files_external.po +++ b/l10n/uk/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -42,25 +42,34 @@ msgstr "Помилка при налаштуванні сховища Google Dri msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." -msgstr "Попередження: Клієнт \"smbclient\" не встановлено. Під'єднанатися до CIFS/SMB тек неможливо. Попрохайте системного адміністратора встановити його." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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 "Попередження: Підтримка FTP в PHP не увімкнута чи не встановлена. Під'єднанатися до FTP тек неможливо. Попрохайте системного адміністратора встановити її." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." -msgstr "Попередження: Підтримка CURL в PHP не увімкнута чи не встановлена. Під'єднанатися OwnCloud / WebDav або Google Drive неможливе. Попрохайте системного адміністратора встановити її." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." +msgstr "" #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index bba27052817..4fd8fcdbe48 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -65,23 +65,23 @@ msgstr "Невірне зображення" msgid "web services under your control" msgstr "підконтрольні Вам веб-сервіси" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "ZIP завантаження вимкнено." -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "Файли повинні бути завантаженні послідовно." -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "Повернутися до файлів" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "Вибрані фали завеликі для генерування zip файлу." -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL ім'я користувача та/або пароль не дійсні: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Вам потрібно ввести або існуючий обліковий запис або administrator." @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Помилка БД: \"%s\"" @@ -217,9 +217,9 @@ msgstr "Помилка БД: \"%s\"" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "Команда, що викликала проблему: \"%s\"" @@ -255,7 +255,7 @@ msgstr "Oracle ім'я користувача та/або пароль не ді msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Команда, що викликала проблему: \"%s\", ім'я: %s, пароль: %s" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL ім'я користувача та/або пароль не дійсні" @@ -267,19 +267,19 @@ msgstr "Встановіть ім'я адміністратора." msgid "Set an admin password." msgstr "Встановіть пароль адміністратора." -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ваш Web-сервер ще не налаштований належним чином для того, щоб дозволити синхронізацію файлів, через те що інтерфейс WebDAV, здається, зламаний." -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "Будь ласка, перевірте інструкції по встановленню." -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "%s розподілено »%s« з тобою" @@ -340,3 +340,21 @@ msgstr "минулого року" #: private/template/functions.php:145 msgid "years ago" msgstr "роки тому" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/ur/files_external.po b/l10n/ur/files_external.po index 8a32295d51f..bf904c2d8f3 100644 --- a/l10n/ur/files_external.po +++ b/l10n/ur/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/ur/lib.po b/l10n/ur/lib.po index eff2c9afe66..b21775ce5a5 100644 --- a/l10n/ur/lib.po +++ b/l10n/ur/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -336,3 +336,21 @@ msgstr "" #: private/template/functions.php:145 msgid "years ago" msgstr "" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/ur_PK/files_external.po b/l10n/ur_PK/files_external.po index 00c603d3cbc..aa912e8f652 100644 --- a/l10n/ur_PK/files_external.po +++ b/l10n/ur_PK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/ur_PK/lib.po b/l10n/ur_PK/lib.po index 91edc05d6a6..f06ab498fb2 100644 --- a/l10n/ur_PK/lib.po +++ b/l10n/ur_PK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "آپ کے اختیار میں ویب سروسیز" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -336,3 +336,21 @@ msgstr "" #: private/template/functions.php:145 msgid "years ago" msgstr "" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/uz/files_external.po b/l10n/uz/files_external.po index 8e32bce5c30..0a2cfee99a9 100644 --- a/l10n/uz/files_external.po +++ b/l10n/uz/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uzbek (http://www.transifex.com/projects/p/owncloud/language/uz/)\n" "MIME-Version: 1.0\n" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/uz/lib.po b/l10n/uz/lib.po index 1c2263d3a04..cb9c4b53ca4 100644 --- a/l10n/uz/lib.po +++ b/l10n/uz/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uzbek (http://www.transifex.com/projects/p/owncloud/language/uz/)\n" "MIME-Version: 1.0\n" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -332,3 +332,21 @@ msgstr "" #: private/template/functions.php:145 msgid "years ago" msgstr "" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index e2374b58219..ed1b8f6dd8e 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 06:10+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" @@ -229,7 +229,7 @@ msgstr "Một tập tin xung đột" #: js/oc-dialogs.js:367 msgid "New Files" -msgstr "" +msgstr "File mới" #: js/oc-dialogs.js:368 msgid "Already existing files" diff --git a/l10n/vi/files_external.po b/l10n/vi/files_external.po index b9a6fd2e3ec..ccd66738997 100644 --- a/l10n/vi/files_external.po +++ b/l10n/vi/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -42,25 +42,34 @@ msgstr "Lỗi cấu hình lưu trữ Google Drive" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." -msgstr "Cảnh báo: \"smbclient\" chưa được cài đặt. Mount CIFS/SMB shares là không thể thực hiện được. Hãy hỏi người quản trị hệ thống để cài đặt nó." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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 "Cảnh báo: FTP trong PHP chưa được cài đặt hoặc chưa được mở. Mount FTP shares là không thể. Xin hãy yêu cầu quản trị hệ thống của bạn cài đặt nó." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." -msgstr "Cảnh báo: Tính năng Curl trong PHP chưa được kích hoạt hoặc cài đặt. Việc gắn kết ownCloud / WebDAV hay GoogleDrive không thực hiện được. Vui lòng liên hệ người quản trị để cài đặt nó." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." +msgstr "" #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index 256526134a5..e1f9cb7d4c8 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -65,23 +65,23 @@ msgstr "Hình ảnh không hợp lệ" msgid "web services under your control" msgstr "dịch vụ web dưới sự kiểm soát của bạn" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "Tải về ZIP đã bị tắt." -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "Tập tin cần phải được tải về từng người một." -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "Trở lại tập tin" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "Tập tin được chọn quá lớn để tạo tập tin ZIP." -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "%s đã chia sẻ »%s« với bạn" @@ -332,3 +332,21 @@ msgstr "năm trước" #: private/template/functions.php:145 msgid "years ago" msgstr "năm trước" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 7f2eab3c3ed..01f7441f45e 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 06:10+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" @@ -230,7 +230,7 @@ msgstr "1个文件冲突" #: js/oc-dialogs.js:367 msgid "New Files" -msgstr "" +msgstr "新文件" #: js/oc-dialogs.js:368 msgid "Already existing files" diff --git a/l10n/zh_CN/files_external.po b/l10n/zh_CN/files_external.po index 83bdb930480..bb2b1684eee 100644 --- a/l10n/zh_CN/files_external.po +++ b/l10n/zh_CN/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -41,25 +41,34 @@ msgstr "配置Google Drive存储时出错" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." -msgstr "警告:“smbclient” 尚未安装。CIFS/SMB 分享挂载无法实现。请咨询系统管理员进行安装。" +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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 "警告:PHP中尚未启用或安装FTP。FTP 分享挂载无法实现。请咨询系统管理员进行安装。" +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." -msgstr "警告: PHP中未启用或未安装Curl支持。ownCloud / WebDAV 或 GoogleDrive 不能挂载。请请求您的系统管理员安装该它。" +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." +msgstr "" #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index 63983129668..df5922a64b7 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -70,23 +70,23 @@ msgstr "无效的图像" msgid "web services under your control" msgstr "您控制的web服务" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "ZIP 下载已经关闭" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "需要逐一下载文件" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "回到文件" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "选择的文件太大,无法生成 zip 文件。" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -197,8 +197,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL 用户名和/或密码无效:%s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "你需要输入一个数据库中已有的账户或管理员账户。" @@ -211,9 +211,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "数据库错误:\"%s\"" @@ -222,9 +222,9 @@ msgstr "数据库错误:\"%s\"" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "冲突命令为:\"%s\"" @@ -260,7 +260,7 @@ msgstr "Oracle 数据库用户名和/或密码无效" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "冲突命令为:\"%s\",名称:%s,密码:%s" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL 数据库用户名和/或密码无效" @@ -272,19 +272,19 @@ msgstr "请设置一个管理员用户名。" msgid "Set an admin password." msgstr "请设置一个管理员密码。" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "您的Web服务器尚未正确设置以允许文件同步, 因为WebDAV的接口似乎已损坏." -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "请认真检查安装指南." -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "%s 向您分享了 »%s«" @@ -337,3 +337,21 @@ msgstr "去年" #: private/template/functions.php:145 msgid "years ago" msgstr "年前" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/zh_HK/files_external.po b/l10n/zh_HK/files_external.po index 15269dad34f..3336ef9e4cf 100644 --- a/l10n/zh_HK/files_external.po +++ b/l10n/zh_HK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-02 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -41,24 +41,33 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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." +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." msgstr "" #: templates/settings.php:2 diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index 6219708a091..5af2222d381 100644 --- a/l10n/zh_HK/lib.po +++ b/l10n/zh_HK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -65,23 +65,23 @@ msgstr "" msgid "web services under your control" msgstr "" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -192,8 +192,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -206,9 +206,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -217,9 +217,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" @@ -267,19 +267,19 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "" @@ -332,3 +332,21 @@ msgstr "" #: private/template/functions.php:145 msgid "years ago" msgstr "" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index c1493949695..6922de1a288 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-08 06:10+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" @@ -227,7 +227,7 @@ msgstr "一個檔案衝突" #: js/oc-dialogs.js:367 msgid "New Files" -msgstr "" +msgstr "新檔案" #: js/oc-dialogs.js:368 msgid "Already existing files" diff --git a/l10n/zh_TW/files_external.po b/l10n/zh_TW/files_external.po index 62c6dc87c98..10fa76b3d61 100644 --- a/l10n/zh_TW/files_external.po +++ b/l10n/zh_TW/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:30+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -42,25 +42,34 @@ msgstr "設定 Google Drive 儲存時發生錯誤" msgid "Saved" msgstr "" -#: lib/config.php:654 +#: lib/config.php:592 +msgid "Note: " +msgstr "" + +#: lib/config.php:602 +msgid " and " +msgstr "" + +#: lib/config.php:624 +#, php-format msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." -msgstr "警告:未安裝 \"smbclient\" ,因此無法掛載 CIFS/SMB 分享,請洽您的系統管理員將其安裝。" +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:658 +#: lib/config.php:626 +#, php-format 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 "警告:PHP 並未啓用 FTP 的支援,因此無法掛載 FTP 分享,請洽您的系統管理員將其安裝並啓用。" +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" -#: lib/config.php:661 +#: lib/config.php:628 +#, php-format msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." -msgstr "警告:PHP 並未啓用 Curl 的支援,因此無法掛載 ownCloud/WebDAV 或 Google Drive 分享,請洽您的系統管理員將其安裝並啓用。" +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." +msgstr "" #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index 003cb69e59a..c10955598bf 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-04-09 01:55-0400\n" +"PO-Revision-Date: 2014-04-09 05:55+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" @@ -67,23 +67,23 @@ msgstr "無效的圖片" msgid "web services under your control" msgstr "由您控制的網路服務" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "ZIP 下載已關閉。" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "檔案需要逐一下載。" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "回到檔案列表" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "選擇的檔案太大以致於無法產生壓縮檔。" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -194,8 +194,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL 使用者和/或密碼無效:%s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "您必須輸入一個現有的帳號或管理員帳號。" @@ -208,9 +208,9 @@ msgstr "" #: 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 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "資料庫錯誤:\"%s\"" @@ -219,9 +219,9 @@ msgstr "資料庫錯誤:\"%s\"" #: 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 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "有問題的指令是:\"%s\"" @@ -257,7 +257,7 @@ msgstr "Oracle 用戶名和/或密碼無效" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "有問題的指令是:\"%s\" ,使用者:\"%s\",密碼:\"%s\"" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL 用戶名和/或密碼無效" @@ -269,19 +269,19 @@ msgstr "設定管理員帳號。" msgid "Set an admin password." msgstr "設定管理員密碼。" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "您的網頁伺服器尚未被正確設定來進行檔案同步,因為您的 WebDAV 界面似乎無法使用。" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "請參考安裝指南。" -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 #, php-format msgid "%s shared »%s« with you" msgstr "%s 與您分享了 %s" @@ -334,3 +334,21 @@ msgstr "去年" #: private/template/functions.php:145 msgid "years ago" msgstr "幾年前" + +#: private/user/manager.php:246 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:251 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:255 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:260 +msgid "The username is already being used" +msgstr "" diff --git a/lib/l10n/ast.php b/lib/l10n/ast.php index 1e4f406b85a..6b76d8126ee 100644 --- a/lib/l10n/ast.php +++ b/lib/l10n/ast.php @@ -1,9 +1,18 @@ "Personal", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day go_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("","") +"Settings" => "Axustes", +"Files" => "Ficheros", +"Text" => "Testu", +"seconds ago" => "fai segundos", +"_%n minute ago_::_%n minutes ago_" => array("","fai %n minutos"), +"_%n hour ago_::_%n hours ago_" => array("","fai %n hores"), +"today" => "güei", +"yesterday" => "ayeri", +"_%n day go_::_%n days ago_" => array("","fai %n díes"), +"last month" => "mes caberu", +"_%n month ago_::_%n months ago_" => array("","fai %n meses"), +"last year" => "añu caberu", +"years ago" => "fai años" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/az.php b/lib/l10n/az.php index e7b09649a24..15f78e0bce6 100644 --- a/lib/l10n/az.php +++ b/lib/l10n/az.php @@ -1,8 +1,8 @@ array(""), -"_%n hour ago_::_%n hours ago_" => array(""), -"_%n day go_::_%n days ago_" => array(""), -"_%n month ago_::_%n months ago_" => array("") +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day go_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","") ); -$PLURAL_FORMS = "nplurals=1; plural=0;"; +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/ast.php b/settings/l10n/ast.php index 6b01085c49f..df4ed92b1f2 100644 --- a/settings/l10n/ast.php +++ b/settings/l10n/ast.php @@ -1,7 +1,17 @@ "Corréu unviáu", +"Encryption" => "Cifráu", "Invalid request" => "Solicitú non válida", +"Groups" => "Grupos", "Delete" => "Desaniciar", -"Other" => "Otru" +"More" => "Más", +"Less" => "Menos", +"Password" => "Contraseña", +"Email" => "Corréu-e", +"Cancel" => "Encaboxar", +"Create" => "Crear", +"Other" => "Otru", +"Username" => "Nome d'usuariu" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/sk_SK.php b/settings/l10n/sk_SK.php index af49e8e95d0..afe548a1e0d 100644 --- a/settings/l10n/sk_SK.php +++ b/settings/l10n/sk_SK.php @@ -2,7 +2,9 @@ $TRANSLATIONS = array( "Saved" => "Uložené", "Email sent" => "Email odoslaný", +"Send mode" => "Mód odosielania", "Encryption" => "Šifrovanie", +"Authentication method" => "Autentifikačná metóda", "Unable to load list from App Store" => "Nie je možné nahrať zoznam z App Store", "Authentication error" => "Chyba autentifikácie", "Your full name has been changed." => "Vaše meno a priezvisko bolo zmenené.", @@ -27,6 +29,7 @@ $TRANSLATIONS = array( "Unable to change password" => "Zmena hesla sa nepodarila", "Sending..." => "Odosielam...", "User Documentation" => "Príručka používateľa", +"Admin Documentation" => "Príručka správcu", "Update to {appversion}" => "Aktualizovať na {appversion}", "Disable" => "Zakázať", "Enable" => "Zapnúť", @@ -64,6 +67,7 @@ $TRANSLATIONS = array( "Fatal issues only" => "Len fatálne problémy", "None" => "Žiadny", "Login" => "Prihlásenie", +"NT LAN Manager" => "NT LAN Manager", "SSL" => "SSL", "TLS" => "TLS", "Security Warning" => "Bezpečnostné upozornenie", @@ -104,6 +108,7 @@ $TRANSLATIONS = array( "Forces the clients to connect to %s via an encrypted connection." => "Vynúti pripájanie klientov k %s šifrovaným pripojením.", "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Pripojte sa k %s cez HTTPS pre povolenie alebo zakázanie vynútenia SSL.", "Email Server" => "Email server", +"From address" => "Z adresy", "Server address" => "Adresa servera", "Port" => "Port", "Credentials" => "Prihlasovanie údaje", @@ -119,7 +124,9 @@ $TRANSLATIONS = array( "Add your App" => "Pridať vašu aplikáciu", "More Apps" => "Viac aplikácií", "Select an App" => "Vyberte aplikáciu", +"Documentation:" => "Dokumentácia:", "See application page at apps.owncloud.com" => "Pozrite si stránku aplikácií na apps.owncloud.com", +"See application website" => "Pozrite si webstránku aplikácie", "-licensed by " => "-licencované ", "Administrator Documentation" => "Príručka administrátora", "Online Documentation" => "Online príručka", -- GitLab From e79a027e7775bba652339232764bd95e817217b7 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Wed, 9 Apr 2014 10:18:46 +0200 Subject: [PATCH 262/296] Always define sendmail_is_available Fix #8048 --- settings/admin.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/settings/admin.php b/settings/admin.php index ea8aa7af5d0..e75ca940ae6 100755 --- a/settings/admin.php +++ b/settings/admin.php @@ -20,9 +20,7 @@ $entries=OC_Log_Owncloud::getEntries(3); $entriesremain = count(OC_Log_Owncloud::getEntries(4)) > 3; // Should we display sendmail as an option? -if (findBinaryPath('sendmailsendmail')) { - $tmpl->assign('sendmail_is_available', true); -} +$tmpl->assign('sendmail_is_available', (bool) findBinaryPath('sendmailsendmail')); $tmpl->assign('loglevel', OC_Config::getValue( "loglevel", 2 )); $tmpl->assign('mail_domain', OC_Config::getValue( "mail_domain", '' )); -- GitLab From 9b0f28914341857d2de7b2aee8d2a00036b4c34e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Wed, 9 Apr 2014 12:09:28 +0200 Subject: [PATCH 263/296] remove obsolete code --- apps/files_sharing/js/share.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/apps/files_sharing/js/share.js b/apps/files_sharing/js/share.js index ea518f3b70e..3c7c9239a6c 100644 --- a/apps/files_sharing/js/share.js +++ b/apps/files_sharing/js/share.js @@ -45,11 +45,6 @@ $(document).ready(function() { }); FileActions.register('all', 'Share', OC.PERMISSION_READ, OC.imagePath('core', 'actions/share'), function(filename) { - var dir = $('#dir').val(); - var item = dir + '/' + filename; - if (dir == '/') { - item = dir + filename; - } var tr = FileList.findFileEl(filename); var itemType = 'file'; if ($(tr).data('type') == 'dir') { -- GitLab From dbebf6bb5e94615ef8986b812e2ea6ac14862a3f Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Wed, 9 Apr 2014 12:25:48 +0200 Subject: [PATCH 264/296] add comment to clearify when a skip in the foreach happens --- apps/user_ldap/lib/wizard.php | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/user_ldap/lib/wizard.php b/apps/user_ldap/lib/wizard.php index 54454d2ad22..3854af617c1 100644 --- a/apps/user_ldap/lib/wizard.php +++ b/apps/user_ldap/lib/wizard.php @@ -895,6 +895,7 @@ class Wizard extends LDAPUtility { } foreach($filters as $filter) { if($lfw && $lastFilter === $filter && count($foundItems) > 0) { + //skip when the filter is a wildcard and results were found continue; } $rr = $this->ldap->search($cr, $base, $filter, array($attr)); -- GitLab From 352063cf0ad33b1e36b5706b661e1218512fab36 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Wed, 9 Apr 2014 15:14:44 +0200 Subject: [PATCH 265/296] Fix Undefined index: storage in share.php There parameter was removed when the code was cleaned up: {"app":"PHP","message":"Undefined index: storage at E:\\ownCloud\\owncloud\\lib\\private\\share\\share.php#1160", "level":0,"time":"2014-04-09T12:56:23+00:00"} --- lib/private/share/share.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/share/share.php b/lib/private/share/share.php index 7bab98b00bf..3bc07b43b4c 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -1523,7 +1523,7 @@ class Share extends \OC\Share\Constants { $select = '*'; if ($format == self::FORMAT_STATUSES) { if ($fileDependent) { - $select = '`*PREFIX*share`.`id`, `*PREFIX*share`.`parent`, `share_type`, `path`, `share_with`, `uid_owner` , `file_source`'; + $select = '`*PREFIX*share`.`id`, `*PREFIX*share`.`parent`, `share_type`, `path`, `storage`, `share_with`, `uid_owner` , `file_source`'; } else { $select = '`id`, `parent`, `share_type`, `share_with`, `uid_owner`, `item_source`'; } -- GitLab From f84d66a24ffbdba66d8b1d8bc034431e31d8fe8d Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Wed, 9 Apr 2014 15:23:09 +0200 Subject: [PATCH 266/296] Moved SVGSupport call to use OC.Util.SVGSupport() --- core/js/js.js | 6 +++--- core/js/tests/specs/coreSpec.js | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/core/js/js.js b/core/js/js.js index 1cbb9636dbe..f10c7163092 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -295,7 +295,7 @@ var OC={ */ imagePath:function(app,file){ if(file.indexOf('.')==-1){//if no extension is given, use png or svg depending on browser support - file+=(SVGSupport())?'.svg':'.png'; + file+=(OC.Util.hasSVGSupport())?'.svg':'.png'; } return OC.filePath(app,'img',file); }, @@ -497,7 +497,7 @@ var OC={ throw e; }); } - if(!SVGSupport()) { + if(!OC.Util.hasSVGSupport()) { OC.Util.replaceSVG(); } }).show(); @@ -874,7 +874,7 @@ function initCore() { initSessionHeartBeat(); } - if(!SVGSupport()){ //replace all svg images with png images for browser that dont support svg + if(!OC.Util.hasSVGSupport()){ //replace all svg images with png images for browser that dont support svg OC.Util.replaceSVG(); }else{ SVGSupport.checkMimeType(); diff --git a/core/js/tests/specs/coreSpec.js b/core/js/tests/specs/coreSpec.js index 89056807788..ccd9f7a1288 100644 --- a/core/js/tests/specs/coreSpec.js +++ b/core/js/tests/specs/coreSpec.js @@ -147,19 +147,19 @@ describe('Core base tests', function() { }); describe('Images', function() { it('Generates image path with given extension', function() { - var svgSupportStub = sinon.stub(window, 'SVGSupport', function() { return true; }); + var svgSupportStub = sinon.stub(OC.Util, 'hasSVGSupport', function() { return true; }); expect(OC.imagePath('core', 'somefile.jpg')).toEqual(OC.webroot + '/core/img/somefile.jpg'); expect(OC.imagePath(TESTAPP, 'somefile.jpg')).toEqual(TESTAPP_ROOT + '/img/somefile.jpg'); svgSupportStub.restore(); }); it('Generates image path with svg extension when svg support exists', function() { - var svgSupportStub = sinon.stub(window, 'SVGSupport', function() { return true; }); + var svgSupportStub = sinon.stub(OC.Util, 'hasSVGSupport', function() { return true; }); expect(OC.imagePath('core', 'somefile')).toEqual(OC.webroot + '/core/img/somefile.svg'); expect(OC.imagePath(TESTAPP, 'somefile')).toEqual(TESTAPP_ROOT + '/img/somefile.svg'); svgSupportStub.restore(); }); it('Generates image path with png ext when svg support is not available', function() { - var svgSupportStub = sinon.stub(window, 'SVGSupport', function() { return false; }); + var svgSupportStub = sinon.stub(OC.Util, 'hasSVGSupport', function() { return false; }); expect(OC.imagePath('core', 'somefile')).toEqual(OC.webroot + '/core/img/somefile.png'); expect(OC.imagePath(TESTAPP, 'somefile')).toEqual(TESTAPP_ROOT + '/img/somefile.png'); svgSupportStub.restore(); -- GitLab From 4f11786a3d0d88a3bf43ae56cc9bb7a3023c83fb Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Tue, 8 Apr 2014 11:57:33 +0200 Subject: [PATCH 267/296] Fixed Sabre Node implementation to correctly return timestamps as int Negative timestamps were returned as string and were confusing other Sabre API like Sabre_DAV_Property_GetLastModified. This fix makes sure the timestamp is returned as int when defined. --- lib/private/connector/sabre/node.php | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/lib/private/connector/sabre/node.php b/lib/private/connector/sabre/node.php index 5807c5c7f71..7ff9f50ca68 100644 --- a/lib/private/connector/sabre/node.php +++ b/lib/private/connector/sabre/node.php @@ -139,12 +139,15 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr /** * @brief Returns the last modification time, as a unix timestamp - * @return int + * @return int timestamp as integer */ public function getLastModified() { $this->getFileinfoCache(); - return $this->fileinfo_cache['mtime']; - + $timestamp = $this->fileinfo_cache['mtime']; + if (!empty($timestamp)) { + return (int)$timestamp; + } + return $timestamp; } /** -- GitLab From 70c88027db5c5d586d689d310572f8f34d10b285 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Wed, 9 Apr 2014 21:57:32 +0200 Subject: [PATCH 268/296] add requirements to routing --- .../appframework/routing/routeconfig.php | 10 ++++++- .../lib/appframework/routing/RoutingTest.php | 26 ++++++++++++++++--- 2 files changed, 31 insertions(+), 5 deletions(-) diff --git a/lib/private/appframework/routing/routeconfig.php b/lib/private/appframework/routing/routeconfig.php index 35bee75cc4d..a3bbde6af53 100644 --- a/lib/private/appframework/routing/routeconfig.php +++ b/lib/private/appframework/routing/routeconfig.php @@ -84,7 +84,15 @@ class RouteConfig { // register the route $handler = new RouteActionHandler($this->container, $controllerName, $actionName); - $this->router->create($this->appName.'.'.$controller.'.'.$action, $url)->method($verb)->action($handler); + $router = $this->router->create($this->appName.'.'.$controller.'.'.$action, $url) + ->method($verb) + ->action($handler); + + // optionally register requirements for route. This is used to + // tell the route parser how url parameters should be matched + if(array_key_exists('requirements', $simpleRoute)) { + $router->requirements($simpleRoute['requirements']); + } } } diff --git a/tests/lib/appframework/routing/RoutingTest.php b/tests/lib/appframework/routing/RoutingTest.php index 735dd7cef41..261ab0b26af 100644 --- a/tests/lib/appframework/routing/RoutingTest.php +++ b/tests/lib/appframework/routing/RoutingTest.php @@ -36,6 +36,16 @@ class RouteConfigTest extends \PHPUnit_Framework_TestCase $this->assertSimpleRoute($routes, 'folders.open', 'DELETE', '/folders/{folderId}/open', 'FoldersController', 'open'); } + public function testSimpleRouteWithRequirements() + { + $routes = array('routes' => array( + array('name' => 'folders#open', 'url' => '/folders/{folderId}/open', 'verb' => 'delete', 'requirements' => array('something')) + )); + + $this->assertSimpleRoute($routes, 'folders.open', 'DELETE', '/folders/{folderId}/open', 'FoldersController', 'open', array('something')); + } + + /** * @expectedException \UnexpectedValueException */ @@ -85,10 +95,10 @@ class RouteConfigTest extends \PHPUnit_Framework_TestCase * @param string $controllerName * @param string $actionName */ - private function assertSimpleRoute($routes, $name, $verb, $url, $controllerName, $actionName) + private function assertSimpleRoute($routes, $name, $verb, $url, $controllerName, $actionName, array $requirements=array()) { // route mocks - $route = $this->mockRoute($verb, $controllerName, $actionName); + $route = $this->mockRoute($verb, $controllerName, $actionName, $requirements); // router mock $router = $this->getMock("\OC\Route\Router", array('create')); @@ -171,10 +181,10 @@ class RouteConfigTest extends \PHPUnit_Framework_TestCase * @param string $actionName * @return \PHPUnit_Framework_MockObject_MockObject */ - private function mockRoute($verb, $controllerName, $actionName) + private function mockRoute($verb, $controllerName, $actionName, array $requirements=array()) { $container = new DIContainer('app1'); - $route = $this->getMock("\OC\Route\Route", array('method', 'action'), array(), '', false); + $route = $this->getMock("\OC\Route\Route", array('method', 'action', 'requirements'), array(), '', false); $route ->expects($this->exactly(1)) ->method('method') @@ -186,6 +196,14 @@ class RouteConfigTest extends \PHPUnit_Framework_TestCase ->method('action') ->with($this->equalTo(new RouteActionHandler($container, $controllerName, $actionName))) ->will($this->returnValue($route)); + + if(count($requirements) > 0) { + $route + ->expects($this->exactly(1)) + ->method('requirements') + ->with($this->equalTo($requirements)) + ->will($this->returnValue($route)); + } return $route; } -- GitLab From 98a5f121fddf9b41aa68937d6f8da700a34f9744 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Wed, 9 Apr 2014 22:45:34 +0200 Subject: [PATCH 269/296] To isolate the variable scope used inside the $file it is required in it's own method --- lib/private/route/router.php | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/lib/private/route/router.php b/lib/private/route/router.php index 1f0a23ee124..0431855707e 100644 --- a/lib/private/route/router.php +++ b/lib/private/route/router.php @@ -117,7 +117,7 @@ class Router implements IRouter { if (!isset($this->loadedApps[$app])) { $this->loadedApps[$app] = true; $this->useCollection($app); - require_once $file; + $this->requireRouteFile($file); $collection = $this->getCollection($app); $collection->addPrefix('/apps/' . $app); $this->root->addCollection($collection); @@ -230,4 +230,12 @@ class Router implements IRouter { return $this->getGenerator()->generate($name, $parameters, $absolute); } + /** + * To isolate the variable scope used inside the $file it is required in it's own method + * @param $file + */ + private function requireRouteFile($file) { + require_once $file; + } + } -- GitLab From f06ef8aa4b02be0b43ab8cf2f83cf3a044ad9759 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Wed, 9 Apr 2014 23:59:57 +0200 Subject: [PATCH 270/296] register middleware as string to not force request to be instantiated too early and thus not having url parameters --- .../appframework/dependencyinjection/dicontainer.php | 6 +++--- lib/public/appframework/iappcontainer.php | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/private/appframework/dependencyinjection/dicontainer.php b/lib/private/appframework/dependencyinjection/dicontainer.php index 4821ecaf67b..78224ea54c0 100644 --- a/lib/private/appframework/dependencyinjection/dicontainer.php +++ b/lib/private/appframework/dependencyinjection/dicontainer.php @@ -98,7 +98,7 @@ class DIContainer extends SimpleContainer implements IAppContainer{ $dispatcher->registerMiddleware($c['SecurityMiddleware']); foreach($middleWares as $middleWare) { - $dispatcher->registerMiddleware($middleWare); + $dispatcher->registerMiddleware($c[$middleWare]); } return $dispatcher; @@ -133,10 +133,10 @@ class DIContainer extends SimpleContainer implements IAppContainer{ } /** - * @param Middleware $middleWare + * @param string $middleWare * @return boolean|null */ - function registerMiddleWare(Middleware $middleWare) { + function registerMiddleWare($middleWare) { array_push($this->middleWares, $middleWare); } diff --git a/lib/public/appframework/iappcontainer.php b/lib/public/appframework/iappcontainer.php index e4f5f37cad2..a0b0c06881a 100644 --- a/lib/public/appframework/iappcontainer.php +++ b/lib/public/appframework/iappcontainer.php @@ -50,10 +50,10 @@ interface IAppContainer extends IContainer{ function getServer(); /** - * @param Middleware $middleWare + * @param string $middleWare * @return boolean */ - function registerMiddleWare(Middleware $middleWare); + function registerMiddleWare($middleWare); /** * @return boolean -- GitLab From 7c072510d30b30b3d2a6d9c8b055fb816e5f0967 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Thu, 10 Apr 2014 01:55:39 -0400 Subject: [PATCH 271/296] [tx-robot] updated from transifex --- apps/files/l10n/ast.php | 2 + apps/files_external/l10n/ast.php | 2 + apps/files_external/l10n/en_GB.php | 5 ++ apps/files_external/l10n/es.php | 6 ++ apps/files_external/l10n/fi_FI.php | 5 ++ apps/files_external/l10n/fr.php | 1 + apps/files_external/l10n/gl.php | 5 ++ apps/files_external/l10n/it.php | 5 ++ apps/files_external/l10n/pl.php | 5 ++ apps/files_external/l10n/pt_BR.php | 5 ++ apps/files_external/l10n/tr.php | 5 ++ apps/files_trashbin/l10n/ast.php | 1 + apps/user_ldap/l10n/ast.php | 1 + apps/user_ldap/l10n/it.php | 1 + core/l10n/ast.php | 3 + core/l10n/de.php | 1 + core/l10n/de_DE.php | 1 + core/l10n/it.php | 1 + l10n/ar/lib.po | 8 +-- l10n/ar/settings.po | 102 ++++++++++++++-------------- l10n/ast/core.po | 66 +++++++++--------- l10n/ast/files.po | 24 +++---- l10n/ast/files_external.po | 8 +-- l10n/ast/files_trashbin.po | 6 +- l10n/ast/lib.po | 23 ++++--- l10n/ast/settings.po | 6 +- l10n/ast/user_ldap.po | 8 +-- l10n/ca/lib.po | 10 +-- l10n/ca/settings.po | 102 ++++++++++++++-------------- l10n/cs_CZ/lib.po | 10 +-- l10n/cs_CZ/settings.po | 102 ++++++++++++++-------------- l10n/da/lib.po | 8 +-- l10n/da/settings.po | 102 ++++++++++++++-------------- l10n/de/core.po | 63 ++++++++--------- l10n/de/lib.po | 13 ++-- l10n/de/settings.po | 18 ++--- l10n/de_CH/lib.po | 8 +-- l10n/de_CH/settings.po | 102 ++++++++++++++-------------- l10n/de_DE/core.po | 62 ++++++++--------- l10n/de_DE/lib.po | 13 ++-- l10n/de_DE/settings.po | 18 ++--- l10n/el/lib.po | 8 +-- l10n/el/settings.po | 86 +++++++++++------------ l10n/en_GB/files_external.po | 16 ++--- l10n/en_GB/lib.po | 14 ++-- l10n/en_GB/settings.po | 102 ++++++++++++++-------------- l10n/es/files_external.po | 18 ++--- l10n/es/lib.po | 14 ++-- l10n/es/settings.po | 18 ++--- l10n/es_AR/lib.po | 8 +-- l10n/es_AR/settings.po | 102 ++++++++++++++-------------- l10n/es_MX/lib.po | 8 +-- l10n/es_MX/settings.po | 102 ++++++++++++++-------------- l10n/et_EE/lib.po | 10 +-- l10n/et_EE/settings.po | 18 ++--- l10n/eu/lib.po | 10 +-- l10n/eu/settings.po | 102 ++++++++++++++-------------- l10n/fa/lib.po | 8 +-- l10n/fa/settings.po | 102 ++++++++++++++-------------- l10n/fi_FI/files_external.po | 16 ++--- l10n/fi_FI/lib.po | 14 ++-- l10n/fi_FI/settings.po | 102 ++++++++++++++-------------- l10n/fr/files_external.po | 9 +-- l10n/fr/lib.po | 10 +-- l10n/fr/settings.po | 18 ++--- l10n/gl/files_external.po | 16 ++--- l10n/gl/lib.po | 14 ++-- l10n/gl/settings.po | 86 +++++++++++------------ l10n/he/lib.po | 8 +-- l10n/he/settings.po | 102 ++++++++++++++-------------- l10n/hu_HU/lib.po | 10 +-- l10n/hu_HU/settings.po | 102 ++++++++++++++-------------- l10n/id/lib.po | 8 +-- l10n/id/settings.po | 102 ++++++++++++++-------------- l10n/it/core.po | 66 +++++++++--------- l10n/it/files_external.po | 17 ++--- l10n/it/lib.po | 15 ++-- l10n/it/settings.po | 18 ++--- l10n/it/user_ldap.po | 11 +-- l10n/ja/lib.po | 10 +-- l10n/ja/settings.po | 102 ++++++++++++++-------------- l10n/ka_GE/lib.po | 8 +-- l10n/ka_GE/settings.po | 102 ++++++++++++++-------------- l10n/km/lib.po | 8 +-- l10n/km/settings.po | 102 ++++++++++++++-------------- l10n/ko/lib.po | 8 +-- l10n/ko/settings.po | 102 ++++++++++++++-------------- l10n/lt_LT/lib.po | 8 +-- l10n/lt_LT/settings.po | 102 ++++++++++++++-------------- l10n/lv/lib.po | 10 +-- l10n/lv/settings.po | 102 ++++++++++++++-------------- l10n/mk/lib.po | 8 +-- l10n/mk/settings.po | 102 ++++++++++++++-------------- l10n/nb_NO/lib.po | 8 +-- l10n/nb_NO/settings.po | 18 ++--- l10n/nl/lib.po | 8 +-- l10n/nl/settings.po | 102 ++++++++++++++-------------- l10n/nn_NO/lib.po | 8 +-- l10n/nn_NO/settings.po | 102 ++++++++++++++-------------- l10n/pl/files_external.po | 16 ++--- l10n/pl/lib.po | 14 ++-- l10n/pl/settings.po | 102 ++++++++++++++-------------- l10n/pt_BR/files_external.po | 16 ++--- l10n/pt_BR/lib.po | 14 ++-- l10n/pt_BR/settings.po | 18 ++--- l10n/pt_PT/lib.po | 8 +-- l10n/pt_PT/settings.po | 102 ++++++++++++++-------------- l10n/ro/lib.po | 8 +-- l10n/ro/settings.po | 102 ++++++++++++++-------------- l10n/ru/lib.po | 8 +-- l10n/ru/settings.po | 102 ++++++++++++++-------------- l10n/sk_SK/lib.po | 8 +-- l10n/sk_SK/settings.po | 4 +- l10n/sl/lib.po | 8 +-- l10n/sl/settings.po | 18 ++--- l10n/sq/lib.po | 8 +-- l10n/sq/settings.po | 102 ++++++++++++++-------------- l10n/sr/lib.po | 8 +-- l10n/sr/settings.po | 102 ++++++++++++++-------------- l10n/sv/lib.po | 8 +-- l10n/sv/settings.po | 18 ++--- l10n/templates/core.pot | 58 ++++++++-------- l10n/templates/files.pot | 18 ++--- 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 | 4 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/tr/files_external.po | 16 ++--- l10n/tr/lib.po | 14 ++-- l10n/tr/settings.po | 4 +- l10n/ug/lib.po | 8 +-- l10n/ug/settings.po | 102 ++++++++++++++-------------- l10n/uk/lib.po | 8 +-- l10n/uk/settings.po | 102 ++++++++++++++-------------- l10n/zh_CN/lib.po | 8 +-- l10n/zh_CN/settings.po | 102 ++++++++++++++-------------- l10n/zh_TW/lib.po | 8 +-- l10n/zh_TW/settings.po | 102 ++++++++++++++-------------- lib/l10n/ar.php | 4 +- lib/l10n/ast.php | 8 +++ lib/l10n/ca.php | 5 +- lib/l10n/cs_CZ.php | 5 +- lib/l10n/da.php | 4 +- lib/l10n/de.php | 6 +- lib/l10n/de_CH.php | 4 +- lib/l10n/de_DE.php | 6 +- lib/l10n/el.php | 4 +- lib/l10n/en_GB.php | 6 +- lib/l10n/es.php | 6 +- lib/l10n/es_AR.php | 4 +- lib/l10n/es_MX.php | 4 +- lib/l10n/et_EE.php | 5 +- lib/l10n/eu.php | 5 +- lib/l10n/fa.php | 4 +- lib/l10n/fi_FI.php | 6 +- lib/l10n/fr.php | 5 +- lib/l10n/gl.php | 6 +- lib/l10n/he.php | 4 +- lib/l10n/hu_HU.php | 5 +- lib/l10n/id.php | 4 +- lib/l10n/it.php | 6 +- lib/l10n/ja.php | 5 +- lib/l10n/ka_GE.php | 4 +- lib/l10n/km.php | 4 +- lib/l10n/ko.php | 4 +- lib/l10n/lt_LT.php | 4 +- lib/l10n/lv.php | 5 +- lib/l10n/mk.php | 4 +- lib/l10n/nb_NO.php | 4 +- lib/l10n/nl.php | 4 +- lib/l10n/nn_NO.php | 4 +- lib/l10n/pl.php | 6 +- lib/l10n/pt_BR.php | 6 +- lib/l10n/pt_PT.php | 4 +- lib/l10n/ro.php | 4 +- lib/l10n/ru.php | 4 +- lib/l10n/sk_SK.php | 4 +- lib/l10n/sl.php | 4 +- lib/l10n/sq.php | 4 +- lib/l10n/sr.php | 4 +- lib/l10n/sv.php | 4 +- lib/l10n/tr.php | 6 +- lib/l10n/ug.php | 4 +- lib/l10n/uk.php | 4 +- lib/l10n/zh_CN.php | 4 +- lib/l10n/zh_TW.php | 4 +- settings/l10n/ast.php | 1 + 193 files changed, 2616 insertions(+), 2422 deletions(-) diff --git a/apps/files/l10n/ast.php b/apps/files/l10n/ast.php index 3e1eb722655..93ae47b25c5 100644 --- a/apps/files/l10n/ast.php +++ b/apps/files/l10n/ast.php @@ -13,6 +13,7 @@ $TRANSLATIONS = array( "Files" => "Ficheros", "Share" => "Compartir", "Rename" => "Renomar", +"Error" => "Fallu", "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), @@ -20,6 +21,7 @@ $TRANSLATIONS = array( "Size" => "Tamañu", "Upload" => "Xubir", "Save" => "Guardar", +"New folder" => "Nueva carpeta", "Cancel upload" => "Encaboxar xuba", "Download" => "Descargar", "Delete" => "Desaniciar" diff --git a/apps/files_external/l10n/ast.php b/apps/files_external/l10n/ast.php index 9d4d891dda3..7061cffaa8e 100644 --- a/apps/files_external/l10n/ast.php +++ b/apps/files_external/l10n/ast.php @@ -1,7 +1,9 @@ "Nome de la carpeta", "Options" => "Opciones", "Groups" => "Grupos", +"Users" => "Usuarios", "Delete" => "Desaniciar" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/en_GB.php b/apps/files_external/l10n/en_GB.php index 3160d514621..4bd3f9daf2a 100644 --- a/apps/files_external/l10n/en_GB.php +++ b/apps/files_external/l10n/en_GB.php @@ -6,6 +6,11 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Please provide a valid Dropbox app key and secret.", "Error configuring Google Drive storage" => "Error configuring Google Drive storage", "Saved" => "Saved", +"Note: " => "Note: ", +" and " => " and ", +"Note: The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Note: The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it.", +"Note: The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Note: The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it.", +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Note: \"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it.", "External Storage" => "External Storage", "Folder name" => "Folder name", "External storage" => "External storage", diff --git a/apps/files_external/l10n/es.php b/apps/files_external/l10n/es.php index 0af20d939b2..bfe542c6e71 100644 --- a/apps/files_external/l10n/es.php +++ b/apps/files_external/l10n/es.php @@ -6,11 +6,17 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Por favor, proporcione un una clave válida de la app Dropbox y una clave secreta.", "Error configuring Google Drive storage" => "Error configurando el almacenamiento de Google Drive", "Saved" => "Guardado", +"Note: " => "Nota: ", +" and " => "y", +"Note: The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Nota: El soporte de cURL en PHP no está activado o instalado. No se puede montar %s. Pídale al administrador de sistema que lo instale.", +"Note: The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Nota: El soporte de FTP en PHP no está activado o instalado. No se puede montar %s. Pídale al administrador de sistema que lo instale.", +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Nota: \"%s\" no está instalado. No se puede montar %s. Pídale al administrador de sistema que lo instale.", "External Storage" => "Almacenamiento externo", "Folder name" => "Nombre de la carpeta", "External storage" => "Almacenamiento externo", "Configuration" => "Configuración", "Options" => "Opciones", +"Available for" => "Disponible para", "Add storage" => "Añadir almacenamiento", "No user or group" => "Ningún usuario o grupo", "All Users" => "Todos los usuarios", diff --git a/apps/files_external/l10n/fi_FI.php b/apps/files_external/l10n/fi_FI.php index 1924478ad23..677425d8a6a 100644 --- a/apps/files_external/l10n/fi_FI.php +++ b/apps/files_external/l10n/fi_FI.php @@ -6,6 +6,11 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Anna kelvollinen Dropbox-sovellusavain ja salainen vastaus.", "Error configuring Google Drive storage" => "Virhe Google Drive levyn asetuksia tehtäessä", "Saved" => "Tallennettu", +"Note: " => "Huomio: ", +" and " => "ja", +"Note: The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Huomio: PHP:n cURL-tuki ei ole käytössä tai sitä ei ole asennettu. Kohteen %s liittäminen ei ole mahdollista. Pyydä järjestelmän ylläpitäjää ottamaan cURL-tuki käyttöön.", +"Note: The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Huomio: PHP:n FTP-tuki ei ole käytössä tai sitä ei ole asennettu. Kohteen %s liittäminen ei ole mahdollista. Pyydä järjestelmän ylläpitäjää ottamaan FTP-tuki käyttöön.", +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Huomio: \"%s\" ei ole asennettu. Kohteen %s liittäminen ei ole mahdollista. Pyydä järjestelmän ylläpitäjää asentamaan puuttuva kohde.", "External Storage" => "Erillinen tallennusväline", "Folder name" => "Kansion nimi", "External storage" => "Ulkoinen tallennustila", diff --git a/apps/files_external/l10n/fr.php b/apps/files_external/l10n/fr.php index 80c18940096..dc4c62522c9 100644 --- a/apps/files_external/l10n/fr.php +++ b/apps/files_external/l10n/fr.php @@ -6,6 +6,7 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Veuillez fournir une clé d'application (app key) ainsi qu'un mot de passe valides.", "Error configuring Google Drive storage" => "Erreur lors de la configuration du support de stockage Google Drive", "Saved" => "Sauvegarder", +" and " => "et", "External Storage" => "Stockage externe", "Folder name" => "Nom du dossier", "External storage" => "Stockage externe", diff --git a/apps/files_external/l10n/gl.php b/apps/files_external/l10n/gl.php index 1117e8590cf..5efa6ce6028 100644 --- a/apps/files_external/l10n/gl.php +++ b/apps/files_external/l10n/gl.php @@ -6,6 +6,11 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Forneza unha chave correcta e segreda do Dropbox.", "Error configuring Google Drive storage" => "Produciuse un erro ao configurar o almacenamento en Google Drive", "Saved" => "Gardado", +"Note: " => "Nota: ", +" and " => "e", +"Note: The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Nota: A compatibilidade de cURL en PHP non está activada, ou non está instalado. Non é posíbel a montaxe de %s. Consulte co administrador do sistema como instalalo.", +"Note: The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Nota: A compatibilidade de FTP en PHP non está activada, ou non está instalado. Non é posíbel a montaxe de %s. Consulte co administrador do sistema como instalalo.", +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Nota: «%s» non está instalado. Non é posíbel a montaxe de %s. Consulte co administrador do sistema como instalalo.", "External Storage" => "Almacenamento externo", "Folder name" => "Nome do cartafol", "External storage" => "Almacenamento externo", diff --git a/apps/files_external/l10n/it.php b/apps/files_external/l10n/it.php index b68bff2474e..0c4109ae567 100644 --- a/apps/files_external/l10n/it.php +++ b/apps/files_external/l10n/it.php @@ -6,6 +6,11 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Fornisci chiave di applicazione e segreto di Dropbox validi.", "Error configuring Google Drive storage" => "Errore durante la configurazione dell'archivio Google Drive", "Saved" => "Salvato", +"Note: " => "Nota:", +" and " => "e", +"Note: The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Nota:Il support a cURL non è abilitato o installato in PHP. Impossibile montare %s. Chiedi al tuo amministratore di sistema di installarlo.", +"Note: The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Nota:Il support a FTP non è abilitato o installato in PHP. Impossibile montare %s. Chiedi al tuo amministratore di sistema di installarlo.", +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Nota:\"%s\" non è installato. Impossibile montare %s. Chiedi al tuo amministratore di sistema di installarlo.", "External Storage" => "Archiviazione esterna", "Folder name" => "Nome della cartella", "External storage" => "Archiviazione esterna", diff --git a/apps/files_external/l10n/pl.php b/apps/files_external/l10n/pl.php index 801a72c9bf9..246e12b6ac8 100644 --- a/apps/files_external/l10n/pl.php +++ b/apps/files_external/l10n/pl.php @@ -6,6 +6,11 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Proszę podać prawidłowy klucz aplikacji Dropbox i klucz sekretny.", "Error configuring Google Drive storage" => "Wystąpił błąd podczas konfigurowania zasobu Google Drive", "Saved" => "Zapisano", +"Note: " => "Uwaga: ", +" and " => "oraz", +"Note: The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Uwaga: Wsparcie dla cURL w PHP nie zostało włączone lub zainstalowane. Zamontowanie %s nie jest możliwe. Proszę poproś Twojego administratora o zainstalowanie go.", +"Note: The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Uwaga: Wsparcie dla FTP w PHP nie zostało włączone lub zainstalowane. Zamontowanie %s nie jest możliwe. Proszę poproś Twojego administratora o zainstalowanie go.", +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Uwaga: \"%s\" nie jest zainstalowane. Zamontowanie %s nie jest możliwe. Proszę poproś Twojego administratora o zainstalowanie go.", "External Storage" => "Zewnętrzna zasoby dyskowe", "Folder name" => "Nazwa folderu", "External storage" => "Zewnętrzne zasoby dyskowe", diff --git a/apps/files_external/l10n/pt_BR.php b/apps/files_external/l10n/pt_BR.php index 121c45f45d6..9a5a39f2358 100644 --- a/apps/files_external/l10n/pt_BR.php +++ b/apps/files_external/l10n/pt_BR.php @@ -6,6 +6,11 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Por favor forneça um app key e secret válido do Dropbox", "Error configuring Google Drive storage" => "Erro ao configurar armazenamento do Google Drive", "Saved" => "Salvo", +"Note: " => "Nota:", +" and " => "e", +"Note: The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Nota: O suporte cURL do PHP não está habilitado ou instalado. Montagem de %s não é possível. Por favor, solicite ao seu administrador do sistema para instalá-lo.", +"Note: The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Nota: O suporte FTP no PHP não está habilitado ou instalado. Montagem de %s não é possível. Por favor, solicite ao seu administrador do sistema para instalá-lo.", +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Nota: \"%s\" não está instalado. Montagem de %s não é possível. Por favor, solicite ao seu administrador do sistema para instalá-lo.", "External Storage" => "Armazenamento Externo", "Folder name" => "Nome da pasta", "External storage" => "Armazenamento Externo", diff --git a/apps/files_external/l10n/tr.php b/apps/files_external/l10n/tr.php index 07bf1a2354c..3646a47605d 100644 --- a/apps/files_external/l10n/tr.php +++ b/apps/files_external/l10n/tr.php @@ -6,6 +6,11 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Lütfen Dropbox app key ve secret temin ediniz", "Error configuring Google Drive storage" => "Google Drive depo yapılandırma hatası", "Saved" => "Kaydedildi", +"Note: " => "Not: ", +" and " => "ve", +"Note: The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Not: PHP'de cURL desteği etkin veya kurulu değil. %s bağlaması mümkün olmayacak. Lütfen kurulumu için sistem yöneticilerinizle iletişime geçin.", +"Note: The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Not: PHP'de FTP desteği etkin veya kurulu değil. %s bağlaması mümkün olmayacak. Lütfen kurulumu için sistem yöneticilerinizle iletişime geçin.", +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Not: \"%s\" kurulu değil. %s bağlaması mümkün olmayacak. Lütfen kurulumu için sistem yöneticilerinizle iletişime geçin.", "External Storage" => "Harici Depolama", "Folder name" => "Klasör ismi", "External storage" => "Harici depolama", diff --git a/apps/files_trashbin/l10n/ast.php b/apps/files_trashbin/l10n/ast.php index d2cfafd679c..91c122bd4d3 100644 --- a/apps/files_trashbin/l10n/ast.php +++ b/apps/files_trashbin/l10n/ast.php @@ -1,5 +1,6 @@ "Fallu", "Name" => "Nome", "Restore" => "Restaurar", "Delete" => "Desaniciar" diff --git a/apps/user_ldap/l10n/ast.php b/apps/user_ldap/l10n/ast.php index e8e2d779d19..2c022880019 100644 --- a/apps/user_ldap/l10n/ast.php +++ b/apps/user_ldap/l10n/ast.php @@ -1,6 +1,7 @@ "Falló'l borráu", +"Error" => "Fallu", "_%s group found_::_%s groups found_" => array("",""), "_%s user found_::_%s users found_" => array("",""), "Save" => "Guardar", diff --git a/apps/user_ldap/l10n/it.php b/apps/user_ldap/l10n/it.php index 4436127747f..ceb29590627 100644 --- a/apps/user_ldap/l10n/it.php +++ b/apps/user_ldap/l10n/it.php @@ -90,6 +90,7 @@ $TRANSLATIONS = array( "Group-Member association" => "Associazione gruppo-utente ", "Nested Groups" => "Gruppi nidificati", "When switched on, groups that contain groups are supported. (Only works if the group member attribute contains DNs.)" => "Quando è attivato, i gruppi che contengono altri gruppi sono supportati. (Funziona solo se l'attributo del gruppo membro contiene DN.)", +"Paging chunksize" => "Dimensione del blocco di paginazione", "Special Attributes" => "Attributi speciali", "Quota Field" => "Campo Quota", "Quota Default" => "Quota predefinita", diff --git a/core/l10n/ast.php b/core/l10n/ast.php index 9ae1685347c..0fcda328dc0 100644 --- a/core/l10n/ast.php +++ b/core/l10n/ast.php @@ -1,6 +1,7 @@ "Base de datos anovada", +"Invalid image" => "Imaxe inválida", "Sunday" => "Domingu", "Monday" => "Llunes", "Tuesday" => "Martes", @@ -41,6 +42,7 @@ $TRANSLATIONS = array( "Continue" => "Continuar", "Shared" => "Compartíu", "Share" => "Compartir", +"Error" => "Fallu", "Share link" => "Compartir enllaz", "Password" => "Contraseña", "Send" => "Unviar", @@ -62,6 +64,7 @@ $TRANSLATIONS = array( "Reset" => "Reaniciar", "For the best results, please consider using a GNU/Linux server instead." => "Pa los meyores resultaos, por favor considera l'usu d'un sirvidor GNU/Linux nel so llugar.", "Personal" => "Personal", +"Users" => "Usuarios", "Cheers!" => "¡Salú!", "will be used" => "usaráse", "Finishing …" => "Finando ...", diff --git a/core/l10n/de.php b/core/l10n/de.php index 4d8c583e164..fabf35440cb 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -51,6 +51,7 @@ $TRANSLATIONS = array( "_{count} file conflict_::_{count} file conflicts_" => array("{count} Dateikonflikt","{count} Dateikonflikte"), "One file conflict" => "Ein Dateikonflikt", "New Files" => "Neue Dateien", +"Already existing files" => "Die Dateien existieren bereits", "Which files do you want to keep?" => "Welche Dateien möchtest Du behalten?", "If you select both versions, the copied file will have a number added to its name." => "Wenn Du beide Versionen auswählst, erhält die kopierte Datei eine Zahl am Ende des Dateinamens.", "Cancel" => "Abbrechen", diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index 900d3c03172..a65714f26f6 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -51,6 +51,7 @@ $TRANSLATIONS = array( "_{count} file conflict_::_{count} file conflicts_" => array("{count} Dateikonflikt","{count} Dateikonflikte"), "One file conflict" => "Ein Dateikonflikt", "New Files" => "Neue Dateien", +"Already existing files" => "Die Dateien existieren bereits", "Which files do you want to keep?" => "Welche Dateien möchten Sie behalten?", "If you select both versions, the copied file will have a number added to its name." => "Wenn Sie beide Versionen auswählen, erhält die kopierte Datei eine Zahl am Ende des Dateinamens.", "Cancel" => "Abbrechen", diff --git a/core/l10n/it.php b/core/l10n/it.php index 43e9752f5e0..98d0d5e3b0e 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -51,6 +51,7 @@ $TRANSLATIONS = array( "_{count} file conflict_::_{count} file conflicts_" => array("{count} file in conflitto","{count} file in conflitto"), "One file conflict" => "Un file in conflitto", "New Files" => "File nuovi", +"Already existing files" => "File già esistenti", "Which files do you want to keep?" => "Quali file vuoi mantenere?", "If you select both versions, the copied file will have a number added to its name." => "Se selezioni entrambe le versioni, sarà aggiunto un numero al nome del file copiato.", "Cancel" => "Annulla", diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index f5419aee959..1ac427fb619 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -363,11 +363,11 @@ msgstr "" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "يجب ادخال اسم مستخدم صحيح" #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "يجب ادخال كلمة مرور صحيحة" #: private/user/manager.php:260 msgid "The username is already being used" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 6e6dd969c68..9a4af6d1886 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -54,7 +54,7 @@ msgstr "" msgid "Send mode" msgstr "وضعية الإرسال" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "التشفير" @@ -67,7 +67,7 @@ msgid "Unable to load list from App Store" msgstr "فشل تحميل القائمة من الآب ستور" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "لم يتم التأكد من الشخصية بنجاح" @@ -129,32 +129,32 @@ msgstr "فشل إزالة المستخدم من المجموعة %s" msgid "Couldn't update app." msgstr "تعذر تحديث التطبيق." -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "كلمة مرور خاطئة" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "لم يتم توفير مستخدم " -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "يرجى توفير كلمة مرور المسؤول المستردة, وإلا سيتم فقد جميع بيانات المستخدم " -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "خطا في كلمة مرور المسؤول المستردة, يرجى التاكد من كلمة المرور والمحاولة مرة اخرى." -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "Back-end لا يدعم تغيير كلمة المرور, لاكن مفتاح تشفير المستخدمين تم تحديثة بنجاح." -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "لا يمكن تغيير كلمة المرور" @@ -206,7 +206,7 @@ msgstr "حصل خطأ أثناء تحديث التطبيق" msgid "Error" msgstr "خطأ" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "حدث" @@ -214,31 +214,31 @@ msgstr "حدث" msgid "Updated" msgstr "تم التحديث بنجاح" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "اختر صورة الملف الشخصي " -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "كلمة السر ضعيفة جدا" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "كلمة السر ضعيفة" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "كلمة السر جيدة" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "كلمة السر قوية" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "فك تشفير الملفات... يرجى الانتظار, من الممكن ان ياخذ بعض الوقت." @@ -287,7 +287,7 @@ msgstr "يجب ادخال كلمة مرور صحيحة" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "تحذير: المجلد الرئيسي لـ المستخدم \"{user}\" موجود مسبقا" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "__language_name__" @@ -592,11 +592,11 @@ msgstr "المزيد" msgid "Less" msgstr "أقل" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "إصدار" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "-ترخيص من قبل " @@ -667,108 +667,108 @@ msgstr "ابدأ خطوات بداية التشغيل من جديد" msgid "You have used %s of the available %s" msgstr "تم إستهلاك %s من المتوفر %s" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "كلمة المرور" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "لقد تم تغيير كلمة السر" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "لم يتم تعديل كلمة السر بنجاح" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "كلمات السر الحالية" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "كلمات سر جديدة" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "عدل كلمة السر" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "اسمك الكامل" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "البريد الإلكترونى" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "عنوانك البريدي" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "صورة الملف الشخصي" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "رفع الان" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "اختر جديد من الملفات " -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "احذف الصورة " -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "سواء png او jpg. بامكانك قص الصورة " -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "صورتك الرمزية يتم توفيرها عن طريق حسابك الاصلي." -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "الغاء" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "اختر صورة الملف الشخصي" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "اللغة" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "ساعد في الترجمه" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "استخدم هذا العنوان لـ الدخول الى ملفاتك عن طريق WebDAV" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "البرنامج المشفر لم يعد مفعل, يرجى فك التشفير عن كل ملفاتك" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "كلمه سر الدخول" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "فك تشفير جميع الملفات " diff --git a/l10n/ast/core.po b/l10n/ast/core.po index 96ac7799a29..145a76968a8 100644 --- a/l10n/ast/core.po +++ b/l10n/ast/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 22:40+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 21:20+0000\n" "Last-Translator: Tornes Llume \n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -49,7 +49,7 @@ msgstr "" #: avatar/controller.php:85 msgid "Invalid image" -msgstr "" +msgstr "Imaxe inválida" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" @@ -143,127 +143,127 @@ msgstr "Axustes" msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "fai segundos" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "fai %n minutu" msgstr[1] "fai %n minutos" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "fai %n hora" msgstr[1] "fai %n hores" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "güei" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "ayeri" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "fai %n día" msgstr[1] "fai %n díes" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "mes caberu" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "fai %n mes" msgstr[1] "fai %n meses" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "fai meses" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "añu caberu" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "fai años" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Esbillar" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Sí" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "Non" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "¿Qué ficheros quies caltener?" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Encaboxar" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "Continuar" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:457 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:465 msgid "Error loading file exists template" msgstr "" @@ -298,7 +298,7 @@ msgstr "Compartir" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 #: templates/installation.php:10 msgid "Error" -msgstr "" +msgstr "Fallu" #: js/share.js:160 js/share.js:767 msgid "Error while sharing" @@ -560,7 +560,7 @@ msgstr "Personal" #: strings.php:6 msgid "Users" -msgstr "" +msgstr "Usuarios" #: strings.php:7 templates/layout.user.php:116 msgid "Apps" diff --git a/l10n/ast/files.po b/l10n/ast/files.po index f3d8d88b2df..03e4145bb31 100644 --- a/l10n/ast/files.po +++ b/l10n/ast/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 22:20+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 21:20+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -177,7 +177,7 @@ msgstr "" msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:548 js/filelist.js:587 msgid "{new_name} already exists" msgstr "" @@ -211,37 +211,37 @@ msgstr "" #: js/filelist.js:102 js/files.js:552 msgid "Error" -msgstr "" +msgstr "Fallu" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1101 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:614 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:777 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:802 js/filelist.js:879 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:803 js/filelist.js:880 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:810 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1040 js/filelist.js:1078 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -355,7 +355,7 @@ msgstr "" #: templates/index.php:12 msgid "New folder" -msgstr "" +msgstr "Nueva carpeta" #: templates/index.php:13 msgid "Folder" diff --git a/l10n/ast/files_external.po b/l10n/ast/files_external.po index d330ac83e5b..ac5c5b82314 100644 --- a/l10n/ast/files_external.po +++ b/l10n/ast/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 21:20+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -76,7 +76,7 @@ msgstr "" #: templates/settings.php:8 templates/settings.php:27 msgid "Folder name" -msgstr "" +msgstr "Nome de la carpeta" #: templates/settings.php:9 msgid "External storage" @@ -112,7 +112,7 @@ msgstr "Grupos" #: templates/settings.php:105 msgid "Users" -msgstr "" +msgstr "Usuarios" #: templates/settings.php:118 templates/settings.php:119 #: templates/settings.php:158 templates/settings.php:159 diff --git a/l10n/ast/files_trashbin.po b/l10n/ast/files_trashbin.po index bab374d0cd0..180064b93cb 100644 --- a/l10n/ast/files_trashbin.po +++ b/l10n/ast/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 21:40+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 21:20+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "" #: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" -msgstr "" +msgstr "Fallu" #: js/trash.js:264 msgid "Deleted Files" diff --git a/l10n/ast/lib.po b/l10n/ast/lib.po index fe01f80318e..7608549ac6d 100644 --- a/l10n/ast/lib.po +++ b/l10n/ast/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Tornes Llume , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 09:20+0000\n" +"Last-Translator: Tornes Llume \n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -42,7 +43,7 @@ msgstr "Axustes" #: private/app.php:389 msgid "Users" -msgstr "" +msgstr "Usuarios" #: private/app.php:402 msgid "Admin" @@ -51,7 +52,7 @@ msgstr "" #: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." -msgstr "" +msgstr "Fallu al anovar \"%s\"." #: private/avatar.php:66 msgid "Unknown filetype" @@ -59,7 +60,7 @@ msgstr "" #: private/avatar.php:71 msgid "Invalid image" -msgstr "" +msgstr "Imaxe inválida" #: private/defaults.php:35 msgid "web services under your control" @@ -145,7 +146,7 @@ msgstr "" #: private/json.php:29 msgid "Application is not enabled" -msgstr "" +msgstr "L'aplicación nun ta habilitada" #: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" @@ -169,7 +170,7 @@ msgstr "Testu" #: private/search/provider/file.php:30 msgid "Images" -msgstr "" +msgstr "Imaxes" #: private/setup/abstractdatabase.php:26 #, php-format @@ -261,11 +262,11 @@ msgstr "" #: private/setup.php:28 msgid "Set an admin username." -msgstr "" +msgstr "Afitar nome d'usuariu p'almin" #: private/setup.php:31 msgid "Set an admin password." -msgstr "" +msgstr "Afitar contraseña p'almin" #: private/setup.php:202 msgid "" @@ -287,7 +288,7 @@ msgstr "" #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" -msgstr "" +msgstr "Nun pudo alcontrase la estaya \"%s.\"" #: private/template/functions.php:133 msgid "seconds ago" diff --git a/l10n/ast/settings.po b/l10n/ast/settings.po index adb96b40df3..0c2cf566e17 100644 --- a/l10n/ast/settings.po +++ b/l10n/ast/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 22:40+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 21:20+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -201,7 +201,7 @@ msgstr "" #: js/apps.js:152 msgid "Error" -msgstr "" +msgstr "Fallu" #: js/apps.js:153 templates/apps.php:55 msgid "Update" diff --git a/l10n/ast/user_ldap.po b/l10n/ast/user_ldap.po index 93779a6b297..2ee3b4bb024 100644 --- a/l10n/ast/user_ldap.po +++ b/l10n/ast/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 22:40+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 21:20+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -84,7 +84,7 @@ msgstr "" #: js/settings.js:133 msgid "Error" -msgstr "" +msgstr "Fallu" #: js/settings.js:838 msgid "Configuration OK" @@ -144,7 +144,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 348b20d7afe..7b5a5cd549f 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+0000\n" "Last-Translator: I Robot\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -346,12 +346,12 @@ msgstr "" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "Heu de facilitar un nom d'usuari vàlid" #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "Heu de facilitar una contrasenya vàlida" #: private/user/manager.php:260 msgid "The username is already being used" -msgstr "" +msgstr "El nom d'usuari ja està en ús" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 9368907aeb2..ec8cf451845 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 13:43+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+0000\n" "Last-Translator: Josep Torné \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -54,7 +54,7 @@ msgstr "Heu d'establir un nom d'usuari abans de poder enviar correus de prova." msgid "Send mode" msgstr "Mode d'enviament" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "Xifrat" @@ -67,7 +67,7 @@ msgid "Unable to load list from App Store" msgstr "No s'ha pogut carregar la llista des de l'App Store" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Error d'autenticació" @@ -129,32 +129,32 @@ msgstr "No es pot eliminar l'usuari del grup %s" msgid "Couldn't update app." msgstr "No s'ha pogut actualitzar l'aplicació." -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "Contrasenya incorrecta" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "No heu proporcionat cap usuari" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "Sisplau, proporcioneu una contrasenya de recuperació d'administrador, altrament totes les dades d'usuari es perdran" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "La contrasenya de recuperació d'administrador és incorrecta. Comproveu-la i torneu-ho a intentar." -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "El dorsal no permet canviar la contrasenya, però la clau d'encripació d'usuaris s'ha actualitzat correctament." -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "No es pot canviar la contrasenya" @@ -206,7 +206,7 @@ msgstr "Error en actualitzar l'aplicació" msgid "Error" msgstr "Error" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "Actualitza" @@ -214,31 +214,31 @@ msgstr "Actualitza" msgid "Updated" msgstr "Actualitzada" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "Seleccioneu una imatge de perfil" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "Contrasenya massa feble" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "Contrasenya feble" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "Contrasenya passable" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "Contrasenya bona" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "Contrasenya forta" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "Desencriptant fitxers... Espereu, això pot trigar una estona." @@ -287,7 +287,7 @@ msgstr "Heu de facilitar una contrasenya vàlida" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Avís: la carpeta Home per l'usuari \"{user}\" ja existeix" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "Català" @@ -592,11 +592,11 @@ msgstr "Més" msgid "Less" msgstr "Menys" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "Versió" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "-propietat de " @@ -667,108 +667,108 @@ msgstr "Torna a mostrar l'assistent de primera execució" msgid "You have used %s of the available %s" msgstr "Heu utilitzat %s d'un total disponible de %s" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Contrasenya" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "La seva contrasenya s'ha canviat" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "No s'ha pogut canviar la contrasenya" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "Contrasenya actual" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "Contrasenya nova" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "Canvia la contrasenya" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "Nom complet" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "Correu electrònic" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "Correu electrònic" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Ompliu una adreça de correu per poder recuperar la contrasenya i rebre notificacions" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "Foto de perfil" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "Puja'n una de nova" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "Selecciona'n una de nova dels fitxers" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "Elimina imatge" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Pot ser png o jpg. Idealment quadrada, però podreu retallar-la." -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "El vostre compte original proporciona l'avatar." -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Cancel·la" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "Selecciona com a imatge de perfil" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "Idioma" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "Ajudeu-nos amb la traducció" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Useu aquesta adreça per accedir als fitxers via WebDAV" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "L'aplicació d'encriptació ja no està activada, desencripteu tots els vostres fitxers" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "Contrasenya d'accés" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "Desencripta tots els fitxers" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index f613429e0bd..92e8e85cb40 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -354,12 +354,12 @@ msgstr "" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "Musíte zadat platné uživatelské jméno" #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "Musíte zadat platné heslo" #: private/user/manager.php:260 msgid "The username is already being used" -msgstr "" +msgstr "Uživatelské jméno je již využíváno" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 3a2d8b6029b..b9a259d6d43 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-28 01:55-0400\n" -"PO-Revision-Date: 2014-03-27 21:10+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+0000\n" "Last-Translator: m23 \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -58,7 +58,7 @@ msgstr "Pro možnost odeslání zkušebních e-mailů musíte nejprve nastavit s msgid "Send mode" msgstr "Mód odesílání" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "Šifrování" @@ -71,7 +71,7 @@ msgid "Unable to load list from App Store" msgstr "Nelze načíst seznam z App Store" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Chyba přihlášení" @@ -133,32 +133,32 @@ msgstr "Nelze odebrat uživatele ze skupiny %s" msgid "Couldn't update app." msgstr "Nelze aktualizovat aplikaci." -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "Nesprávné heslo" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "Nebyl uveden uživatel" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "Zadejte prosím administrátorské heslo pro obnovu, jinak budou všechna data ztracena" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "Chybné administrátorské heslo pro obnovu. Překontrolujte správnost hesla a zkuste to znovu." -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "Úložiště nepodporuje změnu hesla, ale šifrovací klíč uživatelů byl úspěšně změněn." -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "Změna hesla se nezdařila" @@ -210,7 +210,7 @@ msgstr "Chyba při aktualizaci aplikace" msgid "Error" msgstr "Chyba" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "Aktualizovat" @@ -218,31 +218,31 @@ msgstr "Aktualizovat" msgid "Updated" msgstr "Aktualizováno" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "Vyberte profilový obrázek" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "Velmi slabé heslo" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "Slabé heslo" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "Středně silné heslo" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "Dobré heslo" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "Silné heslo" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "Probíhá dešifrování souborů... Čekejte prosím, tato operace může trvat nějakou dobu." @@ -291,7 +291,7 @@ msgstr "Musíte zadat platné heslo" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Varování: Osobní složka uživatele \"{user}\" již existuje." -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "Česky" @@ -596,11 +596,11 @@ msgstr "Více" msgid "Less" msgstr "Méně" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "Verze" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "-licencováno " @@ -671,108 +671,108 @@ msgstr "Znovu zobrazit průvodce prvním spuštěním" msgid "You have used %s of the available %s" msgstr "Používáte %s z %s dostupných" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Heslo" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "Vaše heslo bylo změněno" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "Změna vašeho hesla se nezdařila" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "Současné heslo" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "Nové heslo" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "Změnit heslo" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "Celé jméno" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "E-mail" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "Vaše e-mailová adresa" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Zadejte e-mailovou adresu pro umožnění obnovy zapomenutého hesla a pro přijímání upozornění." -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "Profilový obrázek" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "Nahrát nový" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "Vyberte nový ze souborů" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "Odebrat obrázek" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "png nebo jpg, nejlépe čtvercový, ale budete mít možnost jej oříznout." -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "Váš avatar je poskytován Vaším původním účtem." -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Zrušit" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "Vybrat jako profilový obrázek" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "Jazyk" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "Pomoci s překladem" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Použijte tuto adresu pro přístup k vašim souborům přes WebDAV" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Šifrovací aplikace již není spuštěna, dešifrujte prosím všechny své soubory" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "Přihlašovací heslo" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "Odšifrovat všechny soubory" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index 94ac0b43f36..6bef7060df0 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -349,11 +349,11 @@ msgstr "" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "Et gyldigt brugernavn skal angives" #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "En gyldig adgangskode skal angives" #: private/user/manager.php:260 msgid "The username is already being used" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index ecc1285414a..2841b8d5188 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 09:30+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+0000\n" "Last-Translator: Sappe\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -55,7 +55,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "Kryptering" @@ -68,7 +68,7 @@ msgid "Unable to load list from App Store" msgstr "Kunne ikke indlæse listen fra App Store" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Adgangsfejl" @@ -130,32 +130,32 @@ msgstr "Brugeren kan ikke fjernes fra gruppen %s" msgid "Couldn't update app." msgstr "Kunne ikke opdatere app'en." -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "Forkert kodeord" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "Intet brugernavn givet" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "Angiv venligst en admininstrator gendannelseskode, ellers vil alt brugerdata gå tabt" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "Forkert admin gendannelseskode. Se venligst koden efter og prøv igen." -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "Serveren understøtter ikke kodeordsskifte, men brugernes krypteringsnøgle blev opdateret." -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "Kunne ikke ændre kodeord" @@ -207,7 +207,7 @@ msgstr "Der opstod en fejl under app opgraderingen" msgid "Error" msgstr "Fejl" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "Opdater" @@ -215,31 +215,31 @@ msgstr "Opdater" msgid "Updated" msgstr "Opdateret" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "Vælg et profilbillede" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "Meget svagt kodeord" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "Svagt kodeord" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "Jævnt kodeord" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "Godt kodeord" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "Stærkt kodeord" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "Dekryptere filer... Vent venligst, dette kan tage lang tid. " @@ -288,7 +288,7 @@ msgstr "En gyldig adgangskode skal angives" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Advarsel: Hjemmemappen for bruger \"{user}\" findes allerede" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "Dansk" @@ -593,11 +593,11 @@ msgstr "Mere" msgid "Less" msgstr "Mindre" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "Version" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "-licenseret af " @@ -668,108 +668,108 @@ msgstr "Vis Første Kørsels Guiden igen." msgid "You have used %s of the available %s" msgstr "Du har brugt %s af den tilgængelige %s" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Kodeord" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "Din adgangskode blev ændret" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "Ude af stand til at ændre dit kodeord" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "Nuværende adgangskode" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "Nyt kodeord" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "Skift kodeord" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "Fulde navn" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "E-mail" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "Din emailadresse" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "Profilbillede" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "Upload nyt" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "Vælg nyt fra Filer" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "Fjern billede" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Enten png eller jpg. Ideelt firkantet men du har mulighed for at beskære det. " -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "Din avatar kommer fra din oprindelige konto." -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Annuller" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "Vælg som profilbillede" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "Sprog" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "Hjælp med oversættelsen" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Brug denne adresse for at tilgå dine filer via WebDAV" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Krypteringsprogrammet er ikke længere aktiveret. Dekrypter venligst alle dine filer" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "Log-in kodeord" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "Dekrypter alle Filer " diff --git a/l10n/de/core.po b/l10n/de/core.po index ba8d5f905b9..31ff35c916b 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -5,6 +5,7 @@ # Translators: # arkascha , 2013 # I Robot, 2013 +# I Robot, 2014 # Marcel Kühlhorn , 2013 # Mario Siegmann , 2013-2014 # JamFX , 2013 @@ -17,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 06:10+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 08:50+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" @@ -152,127 +153,127 @@ msgstr "Einstellungen" msgid "Saving..." msgstr "Speichern..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Vor %n Minute" msgstr[1] "Vor %n Minuten" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Vor %n Stunde" msgstr[1] "Vor %n Stunden" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "Heute" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "Gestern" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Vor %n Tag" msgstr[1] "Vor %n Tagen" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Vor %n Monat" msgstr[1] "Vor %n Monaten" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "Vor Jahren" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Auswählen" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "Fehler beim Laden der Dateiauswahlvorlage: {error}" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Ja" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "Nein" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "OK" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "Fehler beim Laden der Nachrichtenvorlage: {error}" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "{count} Dateikonflikt" msgstr[1] "{count} Dateikonflikte" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "Ein Dateikonflikt" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "Neue Dateien" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" -msgstr "" +msgstr "Die Dateien existieren bereits" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "Welche Dateien möchtest Du behalten?" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Wenn Du beide Versionen auswählst, erhält die kopierte Datei eine Zahl am Ende des Dateinamens." -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Abbrechen" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "Fortsetzen" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "(Alle ausgewählt)" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:457 msgid "({count} selected)" msgstr "({count} ausgewählt)" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:465 msgid "Error loading file exists template" msgstr "Fehler beim Laden der vorhanden Dateivorlage" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index 811013a102a..1c19e3ca284 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# I Robot, 2014 # Mario Siegmann , 2013 # ninov , 2013 # stefanniedermann , 2014 @@ -12,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 08:50+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" @@ -346,16 +347,16 @@ msgstr "Vor Jahren" msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" -msgstr "" +msgstr "Folgende Zeichen sind im Benutzernamen erlaubt: \"a-z\", \"A-Z\", \"0-9\" und \"_.@-\"" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "Es muss ein gültiger Benutzername angegeben werden" #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "Es muss ein gültiges Passwort angegeben werden" #: private/user/manager.php:260 msgid "The username is already being used" -msgstr "" +msgstr "Dieser Benutzername existiert bereits" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index dfea3e12a2d..bee681657b5 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-03 20:10+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+0000\n" "Last-Translator: kabum \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -220,31 +220,31 @@ msgstr "Aktualisierung durchführen" msgid "Updated" msgstr "Aktualisiert" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "Wähle ein Profilbild" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "Sehr schwaches Passwort" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "Schwaches Passwort" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "Durchschnittliches Passwort" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "Gutes Passwort" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "Starkes Passwort" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "Entschlüssle Dateien ... Bitte warten, denn dieser Vorgang kann einige Zeit beanspruchen." diff --git a/l10n/de_CH/lib.po b/l10n/de_CH/lib.po index ec7ff99968b..b39979b3657 100644 --- a/l10n/de_CH/lib.po +++ b/l10n/de_CH/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -349,11 +349,11 @@ msgstr "" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "Es muss ein gültiger Benutzername angegeben werden" #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "Es muss ein gültiges Passwort angegeben werden" #: private/user/manager.php:260 msgid "The username is already being used" diff --git a/l10n/de_CH/settings.po b/l10n/de_CH/settings.po index a57d5b69ac2..adc54611f07 100644 --- a/l10n/de_CH/settings.po +++ b/l10n/de_CH/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -60,7 +60,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "Verschlüsselung" @@ -73,7 +73,7 @@ msgid "Unable to load list from App Store" msgstr "Die Liste der Anwendungen im Store konnte nicht geladen werden." #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Authentifizierungs-Fehler" @@ -135,32 +135,32 @@ msgstr "Der Benutzer konnte nicht aus der Gruppe %s entfernt werden" msgid "Couldn't update app." msgstr "Die App konnte nicht aktualisiert werden." -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -212,7 +212,7 @@ msgstr "Es ist ein Fehler während des Updates aufgetreten" msgid "Error" msgstr "Fehler" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "Update durchführen" @@ -220,31 +220,31 @@ msgstr "Update durchführen" msgid "Updated" msgstr "Aktualisiert" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "Entschlüssel Dateien ... Bitte warten Sie, denn dieser Vorgang kann einige Zeit beanspruchen." @@ -293,7 +293,7 @@ msgstr "Es muss ein gültiges Passwort angegeben werden" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "Deutsch (Schweiz)" @@ -598,11 +598,11 @@ msgstr "Mehr" msgid "Less" msgstr "Weniger" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "Version" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "-lizenziert von " @@ -673,108 +673,108 @@ msgstr "Den Einrichtungsassistenten erneut anzeigen" msgid "You have used %s of the available %s" msgstr "Sie verwenden %s der verfügbaren %s" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Passwort" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "Ihr Passwort wurde geändert." -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "Das Passwort konnte nicht geändert werden" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "Aktuelles Passwort" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "Neues Passwort" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "Passwort ändern" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "E-Mail" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "Ihre E-Mail-Adresse" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Abbrechen" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "Sprache" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "Helfen Sie bei der Übersetzung" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "Login-Passwort" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "Alle Dateien entschlüsseln" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index dc0425ed00f..75bdf01c6a2 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 06:10+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 08:50+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" @@ -153,127 +153,127 @@ msgstr "Einstellungen" msgid "Saving..." msgstr "Speichern..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Vor %n Minute" msgstr[1] "Vor %n Minuten" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Vor %n Stunde" msgstr[1] "Vor %n Stunden" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "Heute" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "Gestern" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Vor %n Tag" msgstr[1] "Vor %n Tagen" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Vor %n Monat" msgstr[1] "Vor %n Monaten" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "Vor Jahren" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Auswählen" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "Fehler beim Laden der Dateiauswahlvorlage: {error}" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Ja" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "Nein" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "OK" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "Fehler beim Laden der Nachrichtenvorlage: {error}" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "{count} Dateikonflikt" msgstr[1] "{count} Dateikonflikte" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "Ein Dateikonflikt" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "Neue Dateien" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" -msgstr "" +msgstr "Die Dateien existieren bereits" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "Welche Dateien möchten Sie behalten?" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Wenn Sie beide Versionen auswählen, erhält die kopierte Datei eine Zahl am Ende des Dateinamens." -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Abbrechen" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "Fortsetzen" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "(Alle ausgewählt)" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:457 msgid "({count} selected)" msgstr "({count} ausgewählt)" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:465 msgid "Error loading file exists template" msgstr "Fehler beim Laden der vorhanden Dateivorlage" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index a6321e11a88..94fe0bdbef2 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# I Robot, 2014 # Mario Siegmann , 2013 # stefanniedermann , 2014 # traductor, 2013 @@ -12,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 08:50+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" @@ -346,16 +347,16 @@ msgstr "Vor Jahren" msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" -msgstr "" +msgstr "Folgende Zeichen sind im Benutzernamen erlaubt: \"a-z\", \"A-Z\", \"0-9\" und \"_.@-\"" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "Es muss ein gültiger Benutzername angegeben werden" #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "Es muss ein gültiges Passwort angegeben werden" #: private/user/manager.php:260 msgid "The username is already being used" -msgstr "" +msgstr "Der Benutzername existiert bereits" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 1c6c92fdde1..6dfc08877fd 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-03 20:10+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+0000\n" "Last-Translator: kabum \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -220,31 +220,31 @@ msgstr "Update durchführen" msgid "Updated" msgstr "Aktualisiert" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "Wählen Sie ein Profilbild" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "Sehr schwaches Passwort" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "Schwaches Passwort" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "Passables Passwort" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "Gutes Passwort" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "Starkes Passwort" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "Entschlüssle Dateien ... Bitte warten Sie, denn dieser Vorgang kann einige Zeit beanspruchen." diff --git a/l10n/el/lib.po b/l10n/el/lib.po index 80a7f0699a7..49613a13f1c 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -349,11 +349,11 @@ msgstr "" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "Πρέπει να δοθεί έγκυρο όνομα χρήστη" #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "Πρέπει να δοθεί έγκυρο συνθηματικό" #: private/user/manager.php:260 msgid "The username is already being used" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index adda7be21db..e59b95e37c3 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-01 01:55-0400\n" -"PO-Revision-Date: 2014-03-31 17:11+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+0000\n" "Last-Translator: pe_ppe \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -60,7 +60,7 @@ msgstr "Πρέπει να ορίσετε το email του χρήστη πριν msgid "Send mode" msgstr "Κατάσταση αποστολής" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "Κρυπτογράφηση" @@ -212,7 +212,7 @@ msgstr "Σφάλμα κατά την ενημέρωση της εφαρμογή msgid "Error" msgstr "Σφάλμα" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "Ενημέρωση" @@ -220,31 +220,31 @@ msgstr "Ενημέρωση" msgid "Updated" msgstr "Ενημερώθηκε" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "Επιλογή εικόνας προφίλ" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "Πολύ αδύναμο συνθηματικό" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "Αδύναμο συνθηματικό" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "Μέτριο συνθηματικό" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "Καλό συνθηματικό" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "Δυνατό συνθηματικό" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "Αποκρυπτογράφηση αρχείων... Παρακαλώ περιμένετε, αυτό μπορεί να πάρει κάποιο χρόνο." @@ -598,11 +598,11 @@ msgstr "Περισσότερα" msgid "Less" msgstr "Λιγότερα" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "Έκδοση" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "Άδεια χρήσης από " @@ -673,108 +673,108 @@ msgstr "Προβολή Οδηγού Πρώτης Εκτέλεσης ξανά" msgid "You have used %s of the available %s" msgstr "Χρησιμοποιήσατε %s από τα %s διαθέσιμα" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Συνθηματικό" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "Το συνθηματικό σας έχει αλλάξει" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "Δεν ήταν δυνατή η αλλαγή του κωδικού πρόσβασης" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "Τρέχων συνθηματικό" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "Νέο συνθηματικό" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "Αλλαγή συνθηματικού" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "Πλήρες όνομα" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "Ηλεκτρονικό ταχυδρομείο" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "Η διεύθυνση ηλ. ταχυδρομείου σας" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Συμπληρώστε μια διεύθυνση email για να ενεργοποιήσετε την επαναφορά συνθηματικού και να λαμβάνετε ειδοποιήσεις" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "Φωτογραφία προφίλ" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "Μεταφόρτωση νέου" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "Επιλογή νέου από τα Αρχεία" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "Αφαίρεση εικόνας" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Είτε png ή jpg. Ιδανικά τετράγωνη αλλά θα είστε σε θέση να την περικόψετε." -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "Το άβατάρ σας παρέχεται από τον αρχικό σας λογαριασμό." -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Άκυρο" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "Επιλογή εικόνας προφίλ" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "Γλώσσα" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "Βοηθήστε στη μετάφραση" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Χρησιμοποιήστε αυτήν την διεύθυνση για να αποκτήσετε πρόσβαση στα αρχεία σας μέσω WebDAV" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Η εφαρμογή κρυπτογράφησης δεν είναι πλέον ενεργοποιημένη, παρακαλώ αποκρυπτογραφήστε όλα τα αρχεία σας" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "Συνθηματικό εισόδου" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "Αποκρυπτογράφηση όλων των Αρχείων" diff --git a/l10n/en_GB/files_external.po b/l10n/en_GB/files_external.po index 83c6537a620..03485fd10eb 100644 --- a/l10n/en_GB/files_external.po +++ b/l10n/en_GB/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 14:20+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" @@ -44,32 +44,32 @@ msgstr "Saved" #: lib/config.php:592 msgid "Note: " -msgstr "" +msgstr "Note: " #: lib/config.php:602 msgid " and " -msgstr "" +msgstr " and " #: lib/config.php:624 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Note: The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." #: lib/config.php:626 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Note: The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." #: lib/config.php:628 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" " ask your system administrator to install it." -msgstr "" +msgstr "Note: \"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/en_GB/lib.po b/l10n/en_GB/lib.po index d65f8d73bd1..bb29a772bc7 100644 --- a/l10n/en_GB/lib.po +++ b/l10n/en_GB/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 14:20+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" @@ -342,16 +342,16 @@ msgstr "years ago" msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" -msgstr "" +msgstr "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-\"" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "A valid username must be provided" #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "A valid password must be provided" #: private/user/manager.php:260 msgid "The username is already being used" -msgstr "" +msgstr "The username is already being used" diff --git a/l10n/en_GB/settings.po b/l10n/en_GB/settings.po index f04a916b0cf..5d7ff3543fd 100644 --- a/l10n/en_GB/settings.po +++ b/l10n/en_GB/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 12:20+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -52,7 +52,7 @@ msgstr "You need to set your user email before being able to send test emails." msgid "Send mode" msgstr "Send mode" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "Encryption" @@ -65,7 +65,7 @@ msgid "Unable to load list from App Store" msgstr "Unable to load list from App Store" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Authentication error" @@ -127,32 +127,32 @@ msgstr "Unable to remove user from group %s" msgid "Couldn't update app." msgstr "Couldn't update app." -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "Incorrect password" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "No user supplied" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "Please provide an admin recovery password, otherwise all user data will be lost" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "Incorrect admin recovery password. Please check the password and try again." -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "Back-end doesn't support password change, but the user's encryption key was successfully updated." -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "Unable to change password" @@ -204,7 +204,7 @@ msgstr "Error whilst updating app" msgid "Error" msgstr "Error" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "Update" @@ -212,31 +212,31 @@ msgstr "Update" msgid "Updated" msgstr "Updated" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "Select a profile picture" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "Very weak password" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "Weak password" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "So-so password" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "Good password" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "Strong password" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "Decrypting files... Please wait, this can take some time." @@ -285,7 +285,7 @@ msgstr "A valid password must be provided" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Warning: Home directory for user \"{user}\" already exists" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "__language_name__" @@ -590,11 +590,11 @@ msgstr "More" msgid "Less" msgstr "Less" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "Version" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "-licensed by " @@ -665,108 +665,108 @@ msgstr "Show First Run Wizard again" msgid "You have used %s of the available %s" msgstr "You have used %s of the available %s" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Password" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "Your password was changed" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "Unable to change your password" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "Current password" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "New password" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "Change password" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "Full Name" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "Email" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "Your email address" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Fill in an email address to enable password recovery and receive notifications" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "Profile picture" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "Upload new" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "Select new from Files" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "Remove image" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Either png or jpg. Ideally square but you will be able to crop it." -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "Your avatar is provided by your original account." -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Cancel" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "Choose as profile image" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "Language" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "Help translate" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Use this address to access your Files via WebDAV" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "The encryption app is no longer enabled, please decrypt all your files" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "Log-in password" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "Decrypt all Files" diff --git a/l10n/es/files_external.po b/l10n/es/files_external.po index 097fda073bc..af6aa0b29ed 100644 --- a/l10n/es/files_external.po +++ b/l10n/es/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 18:50+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" @@ -45,32 +45,32 @@ msgstr "Guardado" #: lib/config.php:592 msgid "Note: " -msgstr "" +msgstr "Nota: " #: lib/config.php:602 msgid " and " -msgstr "" +msgstr "y" #: lib/config.php:624 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Nota: El soporte de cURL en PHP no está activado o instalado. No se puede montar %s. Pídale al administrador de sistema que lo instale." #: lib/config.php:626 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Nota: El soporte de FTP en PHP no está activado o instalado. No se puede montar %s. Pídale al administrador de sistema que lo instale." #: lib/config.php:628 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" " ask your system administrator to install it." -msgstr "" +msgstr "Nota: \"%s\" no está instalado. No se puede montar %s. Pídale al administrador de sistema que lo instale." #: templates/settings.php:2 msgid "External Storage" @@ -94,7 +94,7 @@ msgstr "Opciones" #: templates/settings.php:12 msgid "Available for" -msgstr "" +msgstr "Disponible para" #: templates/settings.php:32 msgid "Add storage" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index b5958c392d1..91209fc57d5 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 15:50+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" @@ -348,16 +348,16 @@ msgstr "hace años" msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" -msgstr "" +msgstr "Solo los siguientes caracteres están permitidos en un nombre de usuario: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-\"" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "Se debe proporcionar un nombre de usuario válido" #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "Se debe proporcionar una contraseña válida" #: private/user/manager.php:260 msgid "The username is already being used" -msgstr "" +msgstr "El nombre de usuario ya está en uso" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 9b0c0bf17ce..058eac2fa3c 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 01:10+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+0000\n" "Last-Translator: juanman \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -225,31 +225,31 @@ msgstr "Actualizar" msgid "Updated" msgstr "Actualizado" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "Seleccionar una imagen de perfil" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "Contraseña muy débil" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "Contraseña débil" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "Contraseña pasable" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "Contraseña buena" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "Contraseña muy buena" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "Descifrando archivos... Espere por favor, esto puede llevar algo de tiempo." diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index af7dd38bda3..fc41e7c9c94 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -347,11 +347,11 @@ msgstr "" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "Debe ingresar un nombre de usuario válido" #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "Debe ingresar una contraseña válida" #: private/user/manager.php:260 msgid "The username is already being used" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index 206cfbe5cf2..3b2f8487931 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -54,7 +54,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "Encriptación" @@ -67,7 +67,7 @@ msgid "Unable to load list from App Store" msgstr "Imposible cargar la lista desde el App Store" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Error al autenticar" @@ -129,32 +129,32 @@ msgstr "No es posible borrar al usuario del grupo %s" msgid "Couldn't update app." msgstr "No se pudo actualizar la App." -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "Clave incorrecta" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "No se ha indicado el usuario" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "Por favor provea de una contraseña de recuperación administrativa, sino se perderá todos los datos del usuario" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "Contraseña de recuperación administrativa incorrecta. Por favor, chequee la clave e intente de nuevo" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "El back-end no soporta cambios de contraseña, pero las claves de encriptación fueron subidas exitosamente." -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "Imposible cambiar la contraseña" @@ -206,7 +206,7 @@ msgstr "Error al actualizar App" msgid "Error" msgstr "Error" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "Actualizar" @@ -214,31 +214,31 @@ msgstr "Actualizar" msgid "Updated" msgstr "Actualizado" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "Seleccionar una imágen de perfil" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "Desencriptando archivos... Por favor espere, esto puede tardar." @@ -287,7 +287,7 @@ msgstr "Debe ingresar una contraseña válida" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Advertencia: El directorio Home del usuario \"{user}\" ya existe" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "Castellano (Argentina)" @@ -592,11 +592,11 @@ msgstr "Más" msgid "Less" msgstr "Menos" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "Versión" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "-licenciado por " @@ -667,108 +667,108 @@ msgstr "Mostrar de nuevo el asistente de primera ejecución" msgid "You have used %s of the available %s" msgstr "Usás %s de los %s disponibles" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Contraseña" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "Tu contraseña fue cambiada" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "No fue posible cambiar tu contraseña" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "Contraseña actual" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "Nueva contraseña:" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "Cambiar contraseña" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "Nombre completo" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "e-mail" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "Tu dirección de e-mail" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "Imágen de perfil" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "Subir nuevo" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "Seleccionar nuevo desde archivos" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "Remover imagen" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Sólo png o jpg. Lo ideal que sea cuadrada sino luego podrás recortarlo." -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "Su avatar es proveído por su cuenta original." -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Cancelar" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "Elegir como imagen de perfil" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "Idioma" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "Ayudanos a traducir" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Usar esta dirección para acceder a tus archivos vía WebDAV" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "La aplicación de encriptación ya no está habilidata, por favor desencripte todos sus archivos." -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "Clave de acceso" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "Desencriptar todos los archivos" diff --git a/l10n/es_MX/lib.po b/l10n/es_MX/lib.po index 30dd734868e..3e6f085cf41 100644 --- a/l10n/es_MX/lib.po +++ b/l10n/es_MX/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -345,11 +345,11 @@ msgstr "" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "Se debe proporcionar un nombre de usuario válido" #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "Se debe proporcionar una contraseña válida" #: private/user/manager.php:260 msgid "The username is already being used" diff --git a/l10n/es_MX/settings.po b/l10n/es_MX/settings.po index 29badc9fef1..a2f997aea52 100644 --- a/l10n/es_MX/settings.po +++ b/l10n/es_MX/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "Cifrado" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "No se pudo cargar la lista desde el App Store" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Error de autenticación" @@ -126,32 +126,32 @@ msgstr "No se pudo eliminar al usuario del grupo %s" msgid "Couldn't update app." msgstr "No se pudo actualizar la aplicación." -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "Contraseña incorrecta" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "No se especificó un usuario" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "Por favor facilite una contraseña de recuperación de administrador, sino podrían perderse todos los datos de usuario" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "Contraseña de recuperación de administrador incorrecta. Por favor compruebe la contraseña e inténtelo de nuevo." -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "El back-end no soporta cambios de contraseña, pero la clave de cifrado del usuario ha sido actualizada satisfactoriamente." -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "No se ha podido cambiar la contraseña" @@ -203,7 +203,7 @@ msgstr "Error mientras se actualizaba la aplicación" msgid "Error" msgstr "Error" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "Actualizar" @@ -211,31 +211,31 @@ msgstr "Actualizar" msgid "Updated" msgstr "Actualizado" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "Seleccionar una imagen de perfil" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "Descifrando archivos... Espere por favor, esto puede llevar algo de tiempo." @@ -284,7 +284,7 @@ msgstr "Se debe proporcionar una contraseña válida" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Atención: el directorio de inicio para el usuario \"{user}\" ya existe." -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "Español (México)" @@ -589,11 +589,11 @@ msgstr "Más" msgid "Less" msgstr "Menos" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "Versión" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "-licencia otorgada por " @@ -664,108 +664,108 @@ msgstr "Mostrar nuevamente el Asistente de ejecución inicial" msgid "You have used %s of the available %s" msgstr "Ha usado %s de los %s disponibles" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Contraseña" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "Su contraseña ha sido cambiada" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "No se ha podido cambiar su contraseña" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "Contraseña actual" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "Nueva contraseña" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "Cambiar contraseña" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "Nombre completo" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "Correo electrónico" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "Su dirección de correo" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "Foto de perfil" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "Subir otra" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "Seleccionar otra desde Archivos" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "Borrar imagen" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Archivo PNG o JPG. Preferiblemente cuadrado, pero tendrás la posibilidad de recortarlo." -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "Su avatar es proporcionado por su cuenta original." -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Cancelar" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "Seleccionar como imagen de perfil" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "Idioma" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "Ayúdanos a traducir" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Utilice esta dirección para acceder a sus archivos vía WebDAV" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "La aplicación de cifrado ya no está activada, descifre todos sus archivos" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "Contraseña de acceso" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "Descifrar archivos" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index 22ad38b16d2..7602de2d16e 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+0000\n" "Last-Translator: I Robot\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -347,12 +347,12 @@ msgstr "" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "Sisesta nõuetele vastav kasutajatunnus" #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "Sisesta nõuetele vastav parool" #: private/user/manager.php:260 msgid "The username is already being used" -msgstr "" +msgstr "Kasutajanimi on juba kasutuses" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 676b970fc09..031b5521718 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-02 01:55-0400\n" -"PO-Revision-Date: 2014-04-01 10:01+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+0000\n" "Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -213,31 +213,31 @@ msgstr "Uuenda" msgid "Updated" msgstr "Uuendatud" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "Vali profiili pilt" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "Väga nõrk parool" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "Nõrk parool" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "Enam-vähem sobiv parool" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "Hea parool" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "Väga hea parool" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "Dekrüpteerin faile... Palun oota, see võib võtta veidi aega." diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index 46c2edf7e3f..6c379c48627 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -347,12 +347,12 @@ msgstr "" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "Baliozko erabiltzaile izena eman behar da" #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "Baliozko pasahitza eman behar da" #: private/user/manager.php:260 msgid "The username is already being used" -msgstr "" +msgstr "Erabiltzaile izena dagoeneko erabiltzen ari da" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index 3968d2fbc17..136a7c70e61 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -54,7 +54,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "Enkriptazioa" @@ -67,7 +67,7 @@ msgid "Unable to load list from App Store" msgstr "Ezin izan da App Dendatik zerrenda kargatu" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Autentifikazio errorea" @@ -129,32 +129,32 @@ msgstr "Ezin izan da erabiltzailea %s taldetik ezabatu" msgid "Couldn't update app." msgstr "Ezin izan da aplikazioa eguneratu." -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "Pasahitz okerra" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "Ez da erabiltzailerik zehaztu" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "Mesedez eman berreskuratzeko administrazio pasahitza, bestela erabiltzaile datu guztiak galduko dira" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "Berreskuratze administradore pasahitz ez egokia. Medesez egiaztatu pasahitza eta saiatu berriz." -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "Ezin izan da pasahitza aldatu" @@ -206,7 +206,7 @@ msgstr "Errorea aplikazioa eguneratzen zen bitartean" msgid "Error" msgstr "Errorea" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "Eguneratu" @@ -214,31 +214,31 @@ msgstr "Eguneratu" msgid "Updated" msgstr "Eguneratuta" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "Profil argazkia aukeratu" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -287,7 +287,7 @@ msgstr "Baliozko pasahitza eman behar da" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Abisua: \"{user}\" erabiltzailearen Home karpeta dagoeneko exisititzen da" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "Euskera" @@ -592,11 +592,11 @@ msgstr "Gehiago" msgid "Less" msgstr "Gutxiago" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "Bertsioa" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "-lizentziatua " @@ -667,108 +667,108 @@ msgstr "Erakutsi berriz Lehenengo Aldiko Morroia" msgid "You have used %s of the available %s" msgstr "Dagoeneko %s erabili duzu eskuragarri duzun %setatik" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Pasahitza" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "Zere pasahitza aldatu da" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "Ezin izan da zure pasahitza aldatu" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "Uneko pasahitza" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "Pasahitz berria" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "Aldatu pasahitza" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "Izena" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "E-posta" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "Zure e-posta" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "Profilaren irudia" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "Igo berria" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "Hautatu berria Fitxategietatik" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "Irudia ezabatu" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "png edo jpg. Hobe karratua baina mozteko aukera izango duzu." -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Ezeztatu" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "Profil irudi bezala aukeratu" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "Hizkuntza" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "Lagundu itzultzen" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "helbidea erabili zure fitxategiak WebDAV bidez eskuratzeko" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Enkriptazio aplikazioa ez dago jada gaiturik, mesedez desenkriptatu zure fitxategi guztiak." -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "Saioa hasteko pasahitza" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "Desenkripattu fitxategi guztiak" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index 98fd26210e5..2f2c29cb563 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -342,11 +342,11 @@ msgstr "" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "نام کاربری صحیح باید وارد شود" #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "رمز عبور صحیح باید وارد شود" #: private/user/manager.php:260 msgid "The username is already being used" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 9161be26f74..f963e25c9aa 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -54,7 +54,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "رمزگذاری" @@ -67,7 +67,7 @@ msgid "Unable to load list from App Store" msgstr "قادر به بارگذاری لیست از فروشگاه اپ نیستم" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "خطا در اعتبار سنجی" @@ -129,32 +129,32 @@ msgstr "امکان حذف کاربر از گروه %s نیست" msgid "Couldn't update app." msgstr "برنامه را نمی توان به هنگام ساخت." -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "رمز عبور اشتباه است" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "هیچ کاربری تعریف نشده است" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "لطفاً یک رمز مدیریتی برای بازیابی کردن تعریف نمایید. در غیر اینصورت اطلاعات تمامی کاربران از دست خواهند رفت." -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "رمز مدیریتی بازیابی غلط است. لطفاً رمز را کنترل کرده و دوباره امتحان نمایید." -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "سیستم مدیریتی امکان تغییر رمز را پشتیبانی نمی‌کند. ولی کلید رمزنگاری کاربران با موفقیت به روز شد." -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "نمی‌توان رمز را تغییر داد" @@ -206,7 +206,7 @@ msgstr "خطا در هنگام بهنگام سازی برنامه" msgid "Error" msgstr "خطا" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "به روز رسانی" @@ -214,31 +214,31 @@ msgstr "به روز رسانی" msgid "Updated" msgstr "بروز رسانی انجام شد" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "انتخاب تصویر پروفایل" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "در حال بازگشایی رمز فایل‌ها... لطفاً صبر نمایید. این امر ممکن است مدتی زمان ببرد." @@ -287,7 +287,7 @@ msgstr "رمز عبور صحیح باید وارد شود" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "اخطار: پوشه‌ی خانه برای کاربر \"{user}\" در حال حاضر وجود دارد" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "__language_name__" @@ -592,11 +592,11 @@ msgstr "بیش‌تر" msgid "Less" msgstr "کم‌تر" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "نسخه" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "-مجاز از طرف " @@ -667,108 +667,108 @@ msgstr "راهبری کمکی اجرای اول را دوباره نمایش ب msgid "You have used %s of the available %s" msgstr "شما استفاده کردید از %s از میزان در دسترس %s" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "گذرواژه" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "رمز عبور شما تغییر یافت" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "ناتوان در تغییر گذرواژه" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "گذرواژه کنونی" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "گذرواژه جدید" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "تغییر گذر واژه" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "نام کامل" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "ایمیل" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "پست الکترونیکی شما" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "تصویر پروفایل" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "بارگذاری جدید" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "انتخاب جدید از میان فایل ها" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "تصویر پاک شود" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "هردوی jpg و png ها مربع گونه می‌باشند. با این حال شما می‌توانید آنها را برش بزنید." -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "منصرف شدن" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "یک تصویر پروفایل انتخاب کنید" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "زبان" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "به ترجمه آن کمک کنید" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "از این آدرس استفاده کنید تا بتوانید به فایل‌های خود توسط WebDAV دسترسی پیدا کنید" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "رمز ورود" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "تمام فایلها رمزگشایی شود" diff --git a/l10n/fi_FI/files_external.po b/l10n/fi_FI/files_external.po index 5e012a3cfcb..2ed2462b962 100644 --- a/l10n/fi_FI/files_external.po +++ b/l10n/fi_FI/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 12: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" @@ -44,32 +44,32 @@ msgstr "Tallennettu" #: lib/config.php:592 msgid "Note: " -msgstr "" +msgstr "Huomio: " #: lib/config.php:602 msgid " and " -msgstr "" +msgstr "ja" #: lib/config.php:624 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Huomio: PHP:n cURL-tuki ei ole käytössä tai sitä ei ole asennettu. Kohteen %s liittäminen ei ole mahdollista. Pyydä järjestelmän ylläpitäjää ottamaan cURL-tuki käyttöön." #: lib/config.php:626 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Huomio: PHP:n FTP-tuki ei ole käytössä tai sitä ei ole asennettu. Kohteen %s liittäminen ei ole mahdollista. Pyydä järjestelmän ylläpitäjää ottamaan FTP-tuki käyttöön." #: lib/config.php:628 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" " ask your system administrator to install it." -msgstr "" +msgstr "Huomio: \"%s\" ei ole asennettu. Kohteen %s liittäminen ei ole mahdollista. Pyydä järjestelmän ylläpitäjää asentamaan puuttuva kohde." #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index ea6a7b590df..68427d6e24a 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 12:20+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" @@ -342,16 +342,16 @@ msgstr "vuotta sitten" msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" -msgstr "" +msgstr "Vain seuraavat merkit ovat sallittuja käyttäjätunnuksessa: \"a-z\", \"A-Z\", \"0-9\" ja \"_.@-\"" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "Anna kelvollinen käyttäjätunnus" #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "Anna kelvollinen salasana" #: private/user/manager.php:260 msgid "The username is already being used" -msgstr "" +msgstr "Käyttäjätunnus on jo käytössä" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 820800fa818..12029fb7fc9 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 07:01+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -52,7 +52,7 @@ msgstr "Aseta sähköpostiosoite, jotta voit testata sähköpostin toimivuutta." msgid "Send mode" msgstr "Lähetystila" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "Salaus" @@ -65,7 +65,7 @@ msgid "Unable to load list from App Store" msgstr "Ei pystytä lataamaan listaa sovellusvarastosta (App Store)" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Tunnistautumisvirhe" @@ -127,32 +127,32 @@ msgstr "Käyttäjän poistaminen ryhmästä %s ei onnistu" msgid "Couldn't update app." msgstr "Sovelluksen päivitys epäonnistui." -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "Väärä salasana" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "Salasanan vaihto ei onnistunut" @@ -204,7 +204,7 @@ msgstr "Virhe sovellusta päivittäessä" msgid "Error" msgstr "Virhe" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "Päivitä" @@ -212,31 +212,31 @@ msgstr "Päivitä" msgid "Updated" msgstr "Päivitetty" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "Valitse profiilikuva" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "Erittäin heikko salasana" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "Heikko salasana" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "Kohtalainen salasana" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "Hyvä salasana" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "Vahva salasana" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "Puretaan tiedostojen salausta... Odota, tämä voi kestää jonkin aikaa." @@ -285,7 +285,7 @@ msgstr "Anna kelvollinen salasana" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Varoitus: käyttäjällä \"{user}\" on jo olemassa kotikansio" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "_kielen_nimi_" @@ -590,11 +590,11 @@ msgstr "Enemmän" msgid "Less" msgstr "Vähemmän" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "Versio" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "-lisensoija " @@ -665,108 +665,108 @@ msgstr "Näytä ensimmäisen käyttökerran avustaja uudelleen" msgid "You have used %s of the available %s" msgstr "Käytössäsi on %s/%s" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Salasana" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "Salasanasi vaihdettiin" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "Salasanaasi ei voitu vaihtaa" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "Nykyinen salasana" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "Uusi salasana" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "Vaihda salasana" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "Koko nimi" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "Sähköpostiosoite" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "Sähköpostiosoitteesi" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Anna sähköpostiosoitteesi, jotta unohdettu salasana on mahdollista palauttaa ja voit vastaanottaa ilmoituksia" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "Profiilikuva" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "Lähetä uusi" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "Valitse uusi tiedostoista" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "Poista kuva" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Joko png- tai jpg-kuva. Mieluite neliö, voit kuitenkin rajata kuvaa." -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Peru" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "Valitse profiilikuvaksi" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "Kieli" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "Auta kääntämisessä" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Käytä tätä osoitetta käyttääksesi tiedostojasi WebDAVin kautta" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Salaussovellus ei ole enää käytössä, joten pura kaikkien tiedostojesi salaus" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "Pura kaikkien tiedostojen salaus" diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index 472e1beb377..500cc45f235 100644 --- a/l10n/fr/files_external.po +++ b/l10n/fr/files_external.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# timelord , 2014 # Christophe Lherieau , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 12:20+0000\n" +"Last-Translator: timelord \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" @@ -48,7 +49,7 @@ msgstr "" #: lib/config.php:602 msgid " and " -msgstr "" +msgstr "et" #: lib/config.php:624 #, php-format diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index 9dcc4505655..108ab1eab7d 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -349,12 +349,12 @@ msgstr "" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "Un nom d'utilisateur valide doit être saisi" #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "Un mot de passe valide doit être saisi" #: private/user/manager.php:260 msgid "The username is already being used" -msgstr "" +msgstr "Le nom d'utilisateur est déjà utilisé" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 47f6fb23248..364745b1f33 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-07 01:55-0400\n" -"PO-Revision-Date: 2014-04-06 20:00+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -222,31 +222,31 @@ msgstr "Mettre à jour" msgid "Updated" msgstr "Mise à jour effectuée avec succès" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "Selectionner une photo de profil " -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "Mot de passe de très faible sécurité" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "Mot de passe de faible sécurité" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "Mot de passe de sécurité tout juste acceptable" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "Mot de passe de sécurité suffisante" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "Mot de passe de forte sécurité" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "Déchiffrement en cours... Cela peut prendre un certain temps." diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index e8c8bbb0325..cdc233fcea0 100644 --- a/l10n/gl/files_external.po +++ b/l10n/gl/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 07: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" @@ -44,32 +44,32 @@ msgstr "Gardado" #: lib/config.php:592 msgid "Note: " -msgstr "" +msgstr "Nota: " #: lib/config.php:602 msgid " and " -msgstr "" +msgstr "e" #: lib/config.php:624 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Nota: A compatibilidade de cURL en PHP non está activada, ou non está instalado. Non é posíbel a montaxe de %s. Consulte co administrador do sistema como instalalo." #: lib/config.php:626 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Nota: A compatibilidade de FTP en PHP non está activada, ou non está instalado. Non é posíbel a montaxe de %s. Consulte co administrador do sistema como instalalo." #: lib/config.php:628 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" " ask your system administrator to install it." -msgstr "" +msgstr "Nota: «%s» non está instalado. Non é posíbel a montaxe de %s. Consulte co administrador do sistema como instalalo." #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index 3f4820e8bb0..c112809faad 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 07: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -343,16 +343,16 @@ msgstr "anos atrás" msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" -msgstr "" +msgstr "Só se permiten os seguintes caracteres no nome de usuario: «a-z», «A-Z», «0-9», e «_.@-»" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "Debe fornecer un nome de usuario" #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "Debe fornecer un contrasinal" #: private/user/manager.php:260 msgid "The username is already being used" -msgstr "" +msgstr "Este nome de usuario xa está a ser usado" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 2403bc7cc3e..c89f5caaf81 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-29 01:55-0400\n" -"PO-Revision-Date: 2014-03-28 19:40+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -53,7 +53,7 @@ msgstr "É necesario configurar o correo do usuario antes de poder enviar mensax msgid "Send mode" msgstr "Modo de envío" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "Cifrado" @@ -205,7 +205,7 @@ msgstr "Produciuse un erro mentres actualizaba o aplicativo" msgid "Error" msgstr "Erro" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "Actualizar" @@ -213,31 +213,31 @@ msgstr "Actualizar" msgid "Updated" msgstr "Actualizado" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "Seleccione unha imaxe para o perfil" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "Contrasinal moi feble" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "Contrasinal feble" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "Contrasinal non moi aló" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "Bo contrasinal" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "Contrasinal forte" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "Descifrando ficheiros... isto pode levar un anaco." @@ -591,11 +591,11 @@ msgstr "Máis" msgid "Less" msgstr "Menos" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "Versión" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "-licenciado por" @@ -666,108 +666,108 @@ msgstr "Amosar o axudante da primeira execución outra vez" msgid "You have used %s of the available %s" msgstr "Ten en uso %s do total dispoñíbel de %s" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Contrasinal" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "O seu contrasinal foi cambiado" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "Non é posíbel cambiar o seu contrasinal" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "Contrasinal actual" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "Novo contrasinal" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "Cambiar o contrasinal" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "Nome completo" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "Correo" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "O seu enderezo de correo" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Escriba un enderezo de correo para permitir a recuperación de contrasinais e recibir notificacións" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "Imaxe do perfil" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "Novo envío" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "Seleccione unha nova de ficheiros" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "Retirar a imaxe" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Calquera png ou jpg. É preferíbel que sexa cadrada, mais poderá recortala." -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "O seu avatar é fornecido pola súa conta orixinal." -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Cancelar" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "Escolla unha imaxe para o perfil" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "Idioma" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "Axude na tradución" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Empregue esta ligazón para acceder aos sus ficheiros mediante WebDAV" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "O aplicativo de cifrado non está activado, descifre todos os ficheiros" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "Contrasinal de acceso" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "Descifrar todos os ficheiros" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index 0773676f705..98e02d70405 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -345,11 +345,11 @@ msgstr "" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "יש לספק שם משתמש תקני" #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "יש לספק ססמה תקנית" #: private/user/manager.php:260 msgid "The username is already being used" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 6d958a14213..1fa7bd0336e 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -52,7 +52,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "הצפנה" @@ -65,7 +65,7 @@ msgid "Unable to load list from App Store" msgstr "לא ניתן לטעון רשימה מה־App Store" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "שגיאת הזדהות" @@ -127,32 +127,32 @@ msgstr "לא ניתן להסיר משתמש מהקבוצה %s" msgid "Couldn't update app." msgstr "לא ניתן לעדכן את היישום." -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -204,7 +204,7 @@ msgstr "אירעה שגיאה בעת עדכון היישום" msgid "Error" msgstr "שגיאה" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "עדכון" @@ -212,31 +212,31 @@ msgstr "עדכון" msgid "Updated" msgstr "מעודכן" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -285,7 +285,7 @@ msgstr "יש לספק ססמה תקנית" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "עברית" @@ -590,11 +590,11 @@ msgstr "יותר" msgid "Less" msgstr "פחות" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "גרסא" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "ברישיון לטובת " @@ -665,108 +665,108 @@ msgstr "הצגת אשף ההפעלה הראשונית שוב" msgid "You have used %s of the available %s" msgstr "השתמשת ב־%s מתוך %s הזמינים לך" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "סיסמא" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "הססמה שלך הוחלפה" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "לא ניתן לשנות את הססמה שלך" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "ססמה נוכחית" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "ססמה חדשה" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "שינוי ססמה" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "דואר אלקטרוני" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "כתובת הדוא״ל שלך" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "תמונת פרופיל" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "ביטול" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "פה" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "עזרה בתרגום" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index 5cae103f6d7..858b0c42ef8 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -348,12 +348,12 @@ msgstr "" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "Érvényes felhasználónevet kell megadnia" #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "Érvényes jelszót kell megadnia" #: private/user/manager.php:260 msgid "The username is already being used" -msgstr "" +msgstr "Ez a bejelentkezési név már foglalt" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index ebd9fa5baf6..e0457774ded 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -55,7 +55,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "Titkosítás" @@ -68,7 +68,7 @@ msgid "Unable to load list from App Store" msgstr "Nem tölthető le a lista az App Store-ból" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Azonosítási hiba" @@ -130,32 +130,32 @@ msgstr "A felhasználó nem távolítható el ebből a csoportból: %s" msgid "Couldn't update app." msgstr "A program frissítése nem sikerült." -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "Hibás jelszó" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "Nincs felhasználó által mellékelve" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "Add meg az admin helyreállító jelszót, máskülönben az összes felhasználói adat elveszik." -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "Hibás admin helyreállítási jelszó. Ellenörizd a jelszót és próbáld újra." -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "A back-end nem támogatja a jelszó módosítást, de felhasználó titkosítási kulcsa sikeresen frissítve lett." -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "Nem sikerült megváltoztatni a jelszót" @@ -207,7 +207,7 @@ msgstr "Hiba történt a programfrissítés közben" msgid "Error" msgstr "Hiba" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "Frissítés" @@ -215,31 +215,31 @@ msgstr "Frissítés" msgid "Updated" msgstr "Frissítve" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "Válassz profil képet" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "File-ok kititkosítása folyamatban... Kérlek várj, ez hosszabb ideig is eltarthat ..." @@ -288,7 +288,7 @@ msgstr "Érvényes jelszót kell megadnia" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Figyelmeztetés: A felhasználó \"{user}\" kezdő könyvtára már létezett" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "__language_name__" @@ -593,11 +593,11 @@ msgstr "Több" msgid "Less" msgstr "Kevesebb" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "Verzió" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "-a jogtuladonos " @@ -668,108 +668,108 @@ msgstr "Nézzük meg újra az első bejelentkezéskori segítséget!" msgid "You have used %s of the available %s" msgstr "Az Ön tárterület-felhasználása jelenleg: %s. Maximálisan ennyi áll rendelkezésére: %s" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Jelszó" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "A jelszava megváltozott" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "A jelszó nem változtatható meg" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "A jelenlegi jelszó" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "Az új jelszó" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "A jelszó megváltoztatása" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "Teljes név" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "Email" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "Az Ön email címe" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "Profilkép" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "Új feltöltése" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "Új kiválasztása Fileokból" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "Kép eltávolítása" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Egyaránt png vagy jpg. Az ideális ha négyzet alaku, de késöbb még átszabható" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "Az avatarod az eredeti fiókod alapján van beállítva." -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Mégsem" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "Válassz profil képet" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "Nyelv" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "Segítsen a fordításban!" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Ezt a címet használd, hogy hozzáférj a fileokhoz WebDAV-on keresztül" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "A titkosító alkalmazás továbbiakban nem lesz engedélyezve, szüntesd meg a titkosítását a file-jaidnak." -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "Bejelentkezési jelszó" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "Kititkosítja az összes file-t" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index 9692c6033b4..edf2ae28a7e 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -341,11 +341,11 @@ msgstr "" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "Tuliskan nama pengguna yang valid" #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "Tuliskan sandi yang valid" #: private/user/manager.php:260 msgid "The username is already being used" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 6f7c733c33a..551731125a2 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "Enkripsi" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "Tidak dapat memuat daftar dari App Store" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Galat saat autentikasi" @@ -126,32 +126,32 @@ msgstr "Tidak dapat menghapus pengguna dari grup %s" msgid "Couldn't update app." msgstr "Tidak dapat memperbarui aplikasi." -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "Sandi salah" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "Tidak ada pengguna yang diberikan" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "Sandi pemulihan admin salah. Periksa sandi dan ulangi kembali." -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "Back-end tidak mendukung perubahan password, tetapi kunci enkripsi pengguna berhasil diperbarui." -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "Tidak dapat mengubah sandi" @@ -203,7 +203,7 @@ msgstr "Gagal ketika memperbarui aplikasi" msgid "Error" msgstr "Galat" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "Perbarui" @@ -211,31 +211,31 @@ msgstr "Perbarui" msgid "Updated" msgstr "Diperbarui" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "Pilih foto profil" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "Mendeskripsi berkas... Modon tunggu, ini memerlukan beberapa saat." @@ -284,7 +284,7 @@ msgstr "Tuliskan sandi yang valid" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Peringatan: Direktori home untuk pengguna \"{user}\" sudah ada" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "__language_name__" @@ -589,11 +589,11 @@ msgstr "Lainnya" msgid "Less" msgstr "Ciutkan" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "Versi" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "-dilisensikan oleh " @@ -664,108 +664,108 @@ msgstr "Tampilkan Penuntun Konfigurasi Awal" msgid "You have used %s of the available %s" msgstr "Anda telah menggunakan %s dari total %s" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Sandi" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "Sandi Anda telah diubah" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "Gagal mengubah sandi Anda" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "Sandi saat ini" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "Sandi baru" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "Ubah sandi" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "Nama Lengkap" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "Email" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "Alamat email Anda" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "Foto profil" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "Unggah baru" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "Pilih baru dari Berkas" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "Hapus gambar" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Bisa png atau jpg. Idealnya berbentuk persegi tetapi jika tidak Anda bisa memotongnya nanti." -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "Avatar disediakan oleh akun asli Anda." -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Batal" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "Pilih sebagai gambar profil" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "Bahasa" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "Bantu menerjemahkan" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Gunakan alamat ini untuk mengakses Berkas via WebDAV" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Aplikasi enkripsi tidak lagi diaktifkan, silahkan mendekripsi semua file Anda" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "Sandi masuk" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "Deskripsi semua Berkas" diff --git a/l10n/it/core.po b/l10n/it/core.po index 6c9c54add50..cd474e5344c 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -4,16 +4,16 @@ # # Translators: # nappo , 2013 -# idetao , 2013 +# idetao , 2013-2014 # Paolo Velati , 2013-2014 # Vincenzo Reale , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 06:10+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 23:10+0000\n" +"Last-Translator: idetao \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" @@ -146,127 +146,127 @@ msgstr "Impostazioni" msgid "Saving..." msgstr "Salvataggio in corso..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "secondi fa" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minuto fa" msgstr[1] "%n minuti fa" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n ora fa" msgstr[1] "%n ore fa" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "oggi" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "ieri" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n giorno fa" msgstr[1] "%n giorni fa" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "mese scorso" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n mese fa" msgstr[1] "%n mesi fa" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "mesi fa" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "anno scorso" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "anni fa" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Scegli" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "Errore durante il caricamento del modello del selettore file: {error}" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Sì" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "No" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "Ok" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "Errore durante il caricamento del modello di messaggio: {error}" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "{count} file in conflitto" msgstr[1] "{count} file in conflitto" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "Un file in conflitto" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "File nuovi" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" -msgstr "" +msgstr "File già esistenti" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "Quali file vuoi mantenere?" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Se selezioni entrambe le versioni, sarà aggiunto un numero al nome del file copiato." -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Annulla" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "Continua" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "(tutti i selezionati)" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:457 msgid "({count} selected)" msgstr "({count} selezionati)" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:465 msgid "Error loading file exists template" msgstr "Errore durante il caricamento del modello del file esistente" diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index 10ab9a85d7a..b4042ccce21 100644 --- a/l10n/it/files_external.po +++ b/l10n/it/files_external.po @@ -4,14 +4,15 @@ # # Translators: # Jessica Di Maria , 2014 +# idetao , 2014 # Paolo Velati , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 22:50+0000\n" +"Last-Translator: idetao \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" @@ -45,32 +46,32 @@ msgstr "Salvato" #: lib/config.php:592 msgid "Note: " -msgstr "" +msgstr "Nota:" #: lib/config.php:602 msgid " and " -msgstr "" +msgstr "e" #: lib/config.php:624 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Nota:Il support a cURL non è abilitato o installato in PHP. Impossibile montare %s. Chiedi al tuo amministratore di sistema di installarlo." #: lib/config.php:626 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Nota:Il support a FTP non è abilitato o installato in PHP. Impossibile montare %s. Chiedi al tuo amministratore di sistema di installarlo." #: lib/config.php:628 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" " ask your system administrator to install it." -msgstr "" +msgstr "Nota:\"%s\" non è installato. Impossibile montare %s. Chiedi al tuo amministratore di sistema di installarlo." #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index 5688fe306ca..409d389579a 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -4,15 +4,16 @@ # # Translators: # Francesco Capuano , 2013 +# idetao , 2014 # Paolo Velati , 2013-2014 # Vincenzo Reale , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 23:00+0000\n" +"Last-Translator: idetao \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" @@ -344,16 +345,16 @@ msgstr "anni fa" msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" -msgstr "" +msgstr "Solo i seguenti caratteri sono ammessi in un nome utente: \"a-z\", \"A-Z\", \"0-9\", e \"_.@-\"" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "Deve essere fornito un nome utente valido" #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "Deve essere fornita una password valida" #: private/user/manager.php:260 msgid "The username is already being used" -msgstr "" +msgstr "Il nome utente è già utilizzato" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index e02fc127bd9..358818292cb 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: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-03 20:20+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -215,31 +215,31 @@ msgstr "Aggiorna" msgid "Updated" msgstr "Aggiornato" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "Seleziona un'immagine del profilo" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "Password molto debole" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "Password debole" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "Password così-così" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "Password buona" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "Password forte" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "Decifratura dei file in corso... Attendi, potrebbe richiedere del tempo." diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index 58546f1fb70..b8e77c2a3e2 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# idetao , 2014 # Paolo Velati , 2013 # Vincenzo Reale , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 22:50+0000\n" +"Last-Translator: idetao \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" @@ -146,7 +147,7 @@ msgstr[1] "%s utenti trovati" msgid "Invalid Host" msgstr "Host non valido" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "Impossibile trovare la funzionalità desiderata" @@ -423,7 +424,7 @@ msgstr "Quando è attivato, i gruppi che contengono altri gruppi sono supportati #: templates/settings.php:40 msgid "Paging chunksize" -msgstr "" +msgstr "Dimensione del blocco di paginazione" #: templates/settings.php:40 msgid "" diff --git a/l10n/ja/lib.po b/l10n/ja/lib.po index b8fdbca0bf9..44361df0669 100644 --- a/l10n/ja/lib.po +++ b/l10n/ja/lib.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -346,12 +346,12 @@ msgstr "" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "有効なユーザー名を指定する必要があります" #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "有効なパスワードを指定する必要があります" #: private/user/manager.php:260 msgid "The username is already being used" -msgstr "" +msgstr "ユーザ名はすでに使われています" diff --git a/l10n/ja/settings.po b/l10n/ja/settings.po index 85b9f370db8..539a9c1e798 100644 --- a/l10n/ja/settings.po +++ b/l10n/ja/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -56,7 +56,7 @@ msgstr "ユーザーメールを設定して初めて、テストメールを送 msgid "Send mode" msgstr "送信モード" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "暗号化" @@ -69,7 +69,7 @@ msgid "Unable to load list from App Store" msgstr "アプリストアからリストをロードできません" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "認証エラー" @@ -131,32 +131,32 @@ msgstr "ユーザーをグループ %s から削除できません" msgid "Couldn't update app." msgstr "アプリをアップデートできませんでした。" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "無効なパスワード" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "ユーザーが指定されていません" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "リカバリ用の管理者パスワードを入力してください。そうでない場合は、全ユーザーのデータが失われます。" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "リカバリ用の管理者パスワードが間違っています。パスワードを確認して再度実行してください。" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "バックエンドはパスワード変更をサポートしていませんが、ユーザーの暗号化キーは正常に更新されました。" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "パスワードを変更できません" @@ -208,7 +208,7 @@ msgstr "アプリの更新中にエラーが発生" msgid "Error" msgstr "エラー" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "アップデート" @@ -216,31 +216,31 @@ msgstr "アップデート" msgid "Updated" msgstr "アップデート済み" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "プロファイル画像を選択" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "非常に弱いパスワード" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "弱いパスワード" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "まずまずのパスワード" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "良好なパスワード" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "強いパスワード" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "ファイルを複合中... しばらくお待ちください、この処理には少し時間がかかるかもしれません。" @@ -289,7 +289,7 @@ msgstr "有効なパスワードを指定する必要があります" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "警告: ユーザー \"{user}\" のホームディレクトリはすでに存在します" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "Japanese (日本語)" @@ -594,11 +594,11 @@ msgstr "もっと見る" msgid "Less" msgstr "閉じる" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "バージョン" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "-ライセンス: " @@ -669,108 +669,108 @@ msgstr "初回ウィザードを再表示する" msgid "You have used %s of the available %s" msgstr "現在、%s / %s を利用しています" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "パスワード" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "パスワードを変更しました" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "パスワードを変更することができません" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "Current password" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "新しいパスワードを入力" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "パスワードを変更" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "名前" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "メール" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "あなたのメールアドレス" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "パスワードの回復を有効にし、通知を受け取るにはメールアドレスを入力してください" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "プロフィール写真" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "新規にアップロード" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "ファイルから新規に選択" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "画像を削除" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "png と jpg のいずれか。正方形が理想ですが、切り取って加工することも可能です。" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "あなたのアバターは、あなたのオリジナルのアカウントで提供されています。" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "キャンセル" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "プロファイル画像として選択" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "言語" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "翻訳に協力する" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "WebDAV 経由でファイルにアクセス するにはこのアドレスを利用してください" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "暗号化アプリはもはや有効ではありません、すべてのファイルを複合してください" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "ログインパスワード" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "すべてのファイルを複合する" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index a161500da58..d6c36f3cf5a 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -341,11 +341,11 @@ msgstr "" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "უნდა მიუთითოთ არსებული მომხმარებლის სახელი" #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "უნდა მიუთითოთ არსებული პაროლი" #: private/user/manager.php:260 msgid "The username is already being used" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index 797400953fe..deed78e7873 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -52,7 +52,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "ენკრიპცია" @@ -65,7 +65,7 @@ msgid "Unable to load list from App Store" msgstr "აპლიკაციების სია ვერ ჩამოიტვირთა App Store" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "ავთენტიფიკაციის შეცდომა" @@ -127,32 +127,32 @@ msgstr "მომხმარებლის წაშლა ვერ მოხ msgid "Couldn't update app." msgstr "ვერ მოხერხდა აპლიკაციის განახლება." -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -204,7 +204,7 @@ msgstr "შეცდომა აპლიკაციის განახლ msgid "Error" msgstr "შეცდომა" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "განახლება" @@ -212,31 +212,31 @@ msgstr "განახლება" msgid "Updated" msgstr "განახლებულია" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -285,7 +285,7 @@ msgstr "უნდა მიუთითოთ არსებული პარ msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "__language_name__" @@ -590,11 +590,11 @@ msgstr "უფრო მეტი" msgid "Less" msgstr "უფრო ნაკლები" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "ვერსია" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "-ლიცენსირებულია " @@ -665,108 +665,108 @@ msgstr "მაჩვენე თავიდან გაშვებული msgid "You have used %s of the available %s" msgstr "თქვენ გამოყენებული გაქვთ %s –ი –%s–დან" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "პაროლი" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "თქვენი პაროლი შეიცვალა" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "თქვენი პაროლი არ შეიცვალა" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "მიმდინარე პაროლი" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "ახალი პაროლი" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "პაროლის შეცვლა" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "იმეილი" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "თქვენი იმეილ მისამართი" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "უარყოფა" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "ენა" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "თარგმნის დახმარება" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/km/lib.po b/l10n/km/lib.po index 354848af619..3bc0663f9b6 100644 --- a/l10n/km/lib.po +++ b/l10n/km/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -342,11 +342,11 @@ msgstr "" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "ត្រូវ​ផ្ដល់​ឈ្មោះ​អ្នក​ប្រើ​ឲ្យ​បាន​ត្រឹម​ត្រូវ" #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "ត្រូវ​ផ្ដល់​ពាក្យ​សម្ងាត់​ឲ្យ​បាន​ត្រឹម​ត្រូវ" #: private/user/manager.php:260 msgid "The username is already being used" diff --git a/l10n/km/settings.po b/l10n/km/settings.po index 35d2fa646a6..f551450fbe0 100644 --- a/l10n/km/settings.po +++ b/l10n/km/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -53,7 +53,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "" @@ -66,7 +66,7 @@ msgid "Unable to load list from App Store" msgstr "មិនអាចផ្ទុកបញ្ជីកម្មវិធីពី App Store" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "កំហុស​ការ​ផ្ទៀង​ផ្ទាត់​ភាព​ត្រឹម​ត្រូវ" @@ -128,32 +128,32 @@ msgstr "មិន​អាច​ដក​អ្នក​ប្រើ​ចេញ msgid "Couldn't update app." msgstr "មិន​អាច​ធ្វើ​បច្ចុប្បន្នភាព​កម្មវិធី។" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -205,7 +205,7 @@ msgstr "មាន​កំហុស​ពេល​ធ្វើ​បច្ចុ msgid "Error" msgstr "កំហុស" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "ធ្វើ​បច្ចុប្បន្នភាព" @@ -213,31 +213,31 @@ msgstr "ធ្វើ​បច្ចុប្បន្នភាព" msgid "Updated" msgstr "បាន​ធ្វើ​បច្ចុប្បន្នភាព" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -286,7 +286,7 @@ msgstr "ត្រូវ​ផ្ដល់​ពាក្យ​សម្ងាត msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "__language_name__" @@ -591,11 +591,11 @@ msgstr "ច្រើន​ទៀត" msgid "Less" msgstr "តិច" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "កំណែ" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "" @@ -666,108 +666,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "ពាក្យសម្ងាត់" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "ពាក្យសម្ងាត់​បច្ចុប្បន្ន" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "ពាក្យ​សម្ងាត់​ថ្មី" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "ប្តូរ​ពាក្យសម្ងាត់" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "អ៊ីមែល" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "អ៊ីម៉ែល​របស់​អ្នក" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "លើកលែង" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "ភាសា" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "ជួយ​បក​ប្រែ" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index baba62b8b73..02e1760e6aa 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -346,11 +346,11 @@ msgstr "" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "올바른 사용자 이름을 입력해야 함" #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "올바른 암호를 입력해야 함" #: private/user/manager.php:260 msgid "The username is already being used" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 65a843dddbb..7ede0d46667 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -56,7 +56,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "암호화" @@ -69,7 +69,7 @@ msgid "Unable to load list from App Store" msgstr "앱 스토어에서 목록을 가져올 수 없습니다" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "인증 오류" @@ -131,32 +131,32 @@ msgstr "그룹 %s에서 사용자를 삭제할 수 없음" msgid "Couldn't update app." msgstr "앱을 업데이트할 수 없습니다." -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "잘못된 암호" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "사용자가 지정되지 않음" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "관리자 복구 암호를 입력하지 않으면 모든 사용자 데이터가 삭제됩니다" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "관리자 복구 암호가 잘못되었습니다. 암호를 다시 확인하십시오." -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "백엔드에서 암호 변경을 지원하지 않지만, 사용자의 암호화 키는 갱신되었습니다." -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "암호를 변경할 수 없음" @@ -208,7 +208,7 @@ msgstr "앱을 업데이트하는 중 오류 발생" msgid "Error" msgstr "오류" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "업데이트" @@ -216,31 +216,31 @@ msgstr "업데이트" msgid "Updated" msgstr "업데이트됨" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "프로필 사진 선택" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "매우 약한 암호" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "약한 암호" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "그저 그런 암호" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "좋은 암호" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "강력한 암호" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "파일 복호화 중... 시간이 걸릴 수도 있으니 기다려 주십시오." @@ -289,7 +289,7 @@ msgstr "올바른 암호를 입력해야 함" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "경고: 사용자 \"{user}\"의 홈 디렉터리가 이미 존재합니다" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "한국어" @@ -594,11 +594,11 @@ msgstr "더 중요함" msgid "Less" msgstr "덜 중요함" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "버전" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "-라이선스됨: " @@ -669,108 +669,108 @@ msgstr "첫 실행 마법사 다시 보이기" msgid "You have used %s of the available %s" msgstr "현재 공간 중 %s/%s을(를) 사용 중입니다" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "암호" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "암호가 변경되었습니다" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "암호를 변경할 수 없음" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "현재 암호" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "새 암호" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "암호 변경" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "전체 이름" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "이메일" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "이메일 주소" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "프로필 사진" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "새로 업로드" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "파일에서 선택" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "그림 삭제" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "png나 jpg를 사용하십시오. 정사각형 형태가 가장 좋지만 잘라낼 수 있습니다." -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "원본 계정의 아바타를 사용합니다." -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "취소" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "프로필 이미지로 사용" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "언어" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "번역 돕기" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "WebDAV로 파일에 접근하려면 이 주소를 사용하십시오" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "암호화 앱이 비활성화되었습니다. 모든 파일을 복호화해야 합니다." -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "로그인 암호" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "모든 파일 복호화" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index 94c3515831b..58ff50b54f6 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -353,11 +353,11 @@ msgstr "" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "Vartotojo vardas turi būti tinkamas" #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "Slaptažodis turi būti tinkamas" #: private/user/manager.php:260 msgid "The username is already being used" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 5e45ec42c63..4b4e306f816 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -56,7 +56,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "Šifravimas" @@ -69,7 +69,7 @@ msgid "Unable to load list from App Store" msgstr "Neįmanoma įkelti sąrašo iš Programų Katalogo" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Autentikacijos klaida" @@ -131,32 +131,32 @@ msgstr "Nepavyko ištrinti vartotojo iš grupės %s" msgid "Couldn't update app." msgstr "Nepavyko atnaujinti programos." -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "Neteisingas slaptažodis" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "Nepateiktas naudotojas" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "Prašome įvesti administratoriaus atkūrimo slaptažodį, kitaip visi naudotojo suomenys bus prarasti" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "Netinkamas administratoriau atkūrimo slaptažodis. Prašome pasitikrinti ir bandyti vėl." -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "Sistema nepalaiko slaptažodžio keitimo, bet naudotojo šifravimo raktas buvo sėkmingai atnaujintas." -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "Nepavyksta pakeisti slaptažodžio" @@ -208,7 +208,7 @@ msgstr "Įvyko klaida atnaujinant programą" msgid "Error" msgstr "Klaida" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "Atnaujinti" @@ -216,31 +216,31 @@ msgstr "Atnaujinti" msgid "Updated" msgstr "Atnaujinta" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "Pažymėkite profilio paveikslėlį" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "Iššifruojami failai... Prašome palaukti, tai gali užtrukti." @@ -289,7 +289,7 @@ msgstr "Slaptažodis turi būti tinkamas" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Įspėjimas: Vartotojo \"{user}\" namų aplankas jau egzistuoja" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "Kalba" @@ -594,11 +594,11 @@ msgstr "Daugiau" msgid "Less" msgstr "Mažiau" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "Versija" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "- autorius" @@ -669,108 +669,108 @@ msgstr "Rodyti pirmo karto vedlį dar kartą" msgid "You have used %s of the available %s" msgstr "Jūs naudojate %s iš galimų %s" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Slaptažodis" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "Jūsų slaptažodis buvo pakeistas" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "Neįmanoma pakeisti slaptažodžio" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "Dabartinis slaptažodis" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "Naujas slaptažodis" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "Pakeisti slaptažodį" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "Pilnas vardas" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "El. Paštas" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "Jūsų el. pašto adresas" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "Profilio paveikslėlis" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "Įkelti naują" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "Pasirinkti naują iš failų" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "Pašalinti paveikslėlį" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Arba png arba jpg. Geriausia kvadratinį, bet galėsite jį apkarpyti." -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Atšaukti" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "Pasirinkite profilio paveiksliuką" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "Kalba" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "Padėkite išversti" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Naudokite šį adresą, kad pasiektumėte savo failus per WebDAV" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "Prisijungimo slaptažodis" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "Iššifruoti visus failus" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 455b5fbf796..5a8a9d5813b 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -350,12 +350,12 @@ msgstr "" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "Jānorāda derīgs lietotājvārds" #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "Jānorāda derīga parole" #: private/user/manager.php:260 msgid "The username is already being used" -msgstr "" +msgstr "Šāds lietotājvārds jau tiek izmantots" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index cb79419f22c..13c92ee1a70 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -52,7 +52,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "Šifrēšana" @@ -65,7 +65,7 @@ msgid "Unable to load list from App Store" msgstr "Nevar lejupielādēt sarakstu no lietotņu veikala" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Autentifikācijas kļūda" @@ -127,32 +127,32 @@ msgstr "Nevar izņemt lietotāju no grupas %s" msgid "Couldn't update app." msgstr "Nevarēja atjaunināt lietotni." -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -204,7 +204,7 @@ msgstr "Kļūda, atjauninot lietotni" msgid "Error" msgstr "Kļūda" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "Atjaunināt" @@ -212,31 +212,31 @@ msgstr "Atjaunināt" msgid "Updated" msgstr "Atjaunināta" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "Atšifrēju failus... Uzgaidiet tas var ilgt kādu laiku." @@ -285,7 +285,7 @@ msgstr "Jānorāda derīga parole" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "__valodas_nosaukums__" @@ -590,11 +590,11 @@ msgstr "Vairāk" msgid "Less" msgstr "Mazāk" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "Versija" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "-licencēts no " @@ -665,108 +665,108 @@ msgstr "Vēlreiz rādīt pirmās palaišanas vedni" msgid "You have used %s of the available %s" msgstr "Jūs lietojat %s no pieejamajiem %s" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Parole" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "Jūru parole tika nomainīta" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "Nevar nomainīt jūsu paroli" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "Pašreizējā parole" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "Jauna parole" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "Mainīt paroli" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "E-pasts" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "Jūsu e-pasta adrese" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Atcelt" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "Valoda" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "Palīdzi tulkot" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "Pieslēgšanās parole" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "Atšifrēt visus failus" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index 28ea982580e..c611a9b9d0d 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -345,11 +345,11 @@ msgstr "" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "Мора да се обезбеди валидно корисничко име " #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "Мора да се обезбеди валидна лозинка" #: private/user/manager.php:260 msgid "The username is already being used" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 39b831e785e..e6096b1af4f 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -52,7 +52,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "Енкрипција" @@ -65,7 +65,7 @@ msgid "Unable to load list from App Store" msgstr "Неможам да вчитам листа од App Store" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Грешка во автентикација" @@ -127,32 +127,32 @@ msgstr "Неможе да избришам корисник од група %s" msgid "Couldn't update app." msgstr "Не можам да ја надградам апликацијата." -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "Погрешна лозинка" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "Нема корисничко име" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "Вашата лозинка неможе да се смени" @@ -204,7 +204,7 @@ msgstr "Грешка додека ја надградувам апликациј msgid "Error" msgstr "Грешка" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "Ажурирај" @@ -212,31 +212,31 @@ msgstr "Ажурирај" msgid "Updated" msgstr "Надграден" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "Одбери фотографија за профилот" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -285,7 +285,7 @@ msgstr "Мора да се обезбеди валидна лозинка" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "__language_name__" @@ -590,11 +590,11 @@ msgstr "Повеќе" msgid "Less" msgstr "Помалку" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "Верзија" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "-лиценцирано од " @@ -665,108 +665,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "Имате искористено %s од достапните %s" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Лозинка" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "Вашата лозинка беше променета." -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "Вашата лозинка неможе да се смени" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "Моментална лозинка" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "Нова лозинка" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "Смени лозинка" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "Е-пошта" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "Вашата адреса за е-пошта" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "Фотографија за профил" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "Префрли нова" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "Одбери нова од датотеките" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "Отстрани ја фотографијата" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Мора де биде png или jpg. Идеално квадрат, но ќе бидете во можност да ја исечете." -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Откажи" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "Одбери фотографија за профилот" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "Јазик" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "Помогни во преводот" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "Лозинка за најавување" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "Дешифрирај ги сите датотеки" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index d4f40165bc1..896430174f2 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -347,11 +347,11 @@ msgstr "" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "Oppgi et gyldig brukernavn" #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "Oppgi et gyldig passord" #: private/user/manager.php:260 msgid "The username is already being used" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 80f2ab80a34..5a36f04ddb2 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-07 01:55-0400\n" -"PO-Revision-Date: 2014-04-06 16:40+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+0000\n" "Last-Translator: espenbye \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -215,31 +215,31 @@ msgstr "Oppdater" msgid "Updated" msgstr "Oppdatert" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "Velg et profilbilde" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "Veldig svakt passord" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "Svakt passord" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "Bra passord" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "Sterkt passord" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "Dekrypterer filer... Vennligst vent, dette kan ta litt tid." diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index 117e252b26b..a727e37a2eb 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -348,11 +348,11 @@ msgstr "" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "Er moet een geldige gebruikersnaam worden opgegeven" #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "Er moet een geldig wachtwoord worden opgegeven" #: private/user/manager.php:260 msgid "The username is already being used" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 8113608307e..0c10ccf3c4d 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 19:01+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -55,7 +55,7 @@ msgstr "U moet uw e-mailadres instellen voordat u testberichten kunt versturen." msgid "Send mode" msgstr "Verstuurmodus" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "Versleuteling" @@ -68,7 +68,7 @@ msgid "Unable to load list from App Store" msgstr "Kan de lijst niet van de App store laden" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Authenticatie fout" @@ -130,32 +130,32 @@ msgstr "Niet in staat om gebruiker te verwijderen uit groep %s" msgid "Couldn't update app." msgstr "Kon de app niet bijwerken." -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "Onjuist wachtwoord" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "Geen gebruiker opgegeven" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "Voer een beheerdersherstelwachtwoord in, anders zullen alle gebruikersgegevens verloren gaan" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "Onjuist beheerdersherstelwachtwoord. Controleer het wachtwoord en probeer het opnieuw." -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "De Back-end ondersteunt geen wachtwoordwijzigingen, maar de cryptosleutel van de gebruiker is succesvol bijgewerkt." -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "Kan wachtwoord niet wijzigen" @@ -207,7 +207,7 @@ msgstr "Fout bij bijwerken app" msgid "Error" msgstr "Fout" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "Bijwerken" @@ -215,31 +215,31 @@ msgstr "Bijwerken" msgid "Updated" msgstr "Bijgewerkt" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "Kies een profielafbeelding" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "Zeer zwak wachtwoord" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "Zwak wachtwoord" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "Matig wachtwoord" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "Goed wachtwoord" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "Sterk wachtwoord" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "Bestanden worden gedecodeerd... Even geduld alstublieft, dit kan even duren." @@ -288,7 +288,7 @@ msgstr "Er moet een geldig wachtwoord worden opgegeven" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Waarschuwing: Home directory voor gebruiker \"{user}\" bestaat al" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "Nederlands" @@ -593,11 +593,11 @@ msgstr "Meer" msgid "Less" msgstr "Minder" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "Versie" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "-Gelicenseerd door " @@ -668,108 +668,108 @@ msgstr "Toon de Eerste start Wizard opnieuw" msgid "You have used %s of the available %s" msgstr "Je hebt %s gebruikt van de beschikbare %s" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Wachtwoord" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "Je wachtwoord is veranderd" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "Niet in staat om uw wachtwoord te wijzigen" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "Huidig wachtwoord" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "Nieuw" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "Wijzig wachtwoord" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "Volledige naam" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "E-mailadres" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "Uw e-mailadres" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Vul een e-mailbericht in om wachtwoordherstel mogelijk te maken en meldingen te ontvangen" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "Profielafbeelding" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "Upload een nieuwe" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "Selecteer een nieuwe vanuit bestanden" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "Verwijder afbeelding" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Of png, of jpg. Bij voorkeur vierkant, maar u kunt bijsnijden." -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "Uw avatar is verstrekt door uw originele account." -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Annuleer" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "Kies als profielafbeelding" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "Taal" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "Help met vertalen" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Gebruik deze link om uw bestanden via WebDAV te benaderen" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "De crypto app is niet langer geactiveerd, u moet alle bestanden decrypten." -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "Inlog-wachtwoord" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "Decodeer alle bestanden" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index bc43bde4c02..5f7f37471b4 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -347,11 +347,11 @@ msgstr "" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "Du må oppgje eit gyldig brukarnamn" #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "Du må oppgje eit gyldig passord" #: private/user/manager.php:260 msgid "The username is already being used" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index 2077d182fd5..f0a4f6ec449 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -54,7 +54,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "Kryptering" @@ -67,7 +67,7 @@ msgid "Unable to load list from App Store" msgstr "Klarer ikkje å lasta inn liste fra app-butikken" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Autentiseringsfeil" @@ -129,32 +129,32 @@ msgstr "Klarte ikkje fjerna brukaren frå gruppa %s" msgid "Couldn't update app." msgstr "Klarte ikkje oppdatera programmet." -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "Feil passord" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "Ingen brukar gitt" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "Ver venleg og gi eit admingjenopprettingspassord, elles vil all brukardata gå tapt." -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "Feil admingjenopprettingspassord. Ver venleg og sjekk passordet og prøv igjen." -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "Bakstykket støttar ikkje passordendring, men krypteringsnøkkelen til brukaren blei oppdatert." -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "Klarte ikkje å endra passordet" @@ -206,7 +206,7 @@ msgstr "Feil ved oppdatering av app" msgid "Error" msgstr "Feil" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "Oppdater" @@ -214,31 +214,31 @@ msgstr "Oppdater" msgid "Updated" msgstr "Oppdatert" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "Vel eit profilbilete" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "Dekrypterer filer … Ver venleg og vent, dette kan ta ei stund." @@ -287,7 +287,7 @@ msgstr "Du må oppgje eit gyldig passord" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "Nynorsk" @@ -592,11 +592,11 @@ msgstr "Meir" msgid "Less" msgstr "Mindre" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "Utgåve" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "Lisensiert under av " @@ -667,108 +667,108 @@ msgstr "Vis Oppstartvegvisaren igjen" msgid "You have used %s of the available %s" msgstr "Du har brukt %s av dine tilgjengelege %s" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Passord" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "Passordet ditt er endra" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "Klarte ikkje endra passordet" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "Passord" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "Nytt passord" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "Endra passord" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "E-post" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "Di epost-adresse" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "Profilbilete" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "Last opp ny" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "Vel ny frå Filer" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "Fjern bilete" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Anten PNG eller JPG. Helst kvadratisk, men du får moglegheita til å beskjera det." -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Avbryt" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "Vel som profilbilete" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "Språk" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "Hjelp oss å omsetja" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "Innloggingspassord" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "Dekrypter alle filene" diff --git a/l10n/pl/files_external.po b/l10n/pl/files_external.po index 75ad91e0828..ea9e5451478 100644 --- a/l10n/pl/files_external.po +++ b/l10n/pl/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 10:53+0000\n" +"Last-Translator: bobie \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -45,32 +45,32 @@ msgstr "Zapisano" #: lib/config.php:592 msgid "Note: " -msgstr "" +msgstr "Uwaga: " #: lib/config.php:602 msgid " and " -msgstr "" +msgstr "oraz" #: lib/config.php:624 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Uwaga: Wsparcie dla cURL w PHP nie zostało włączone lub zainstalowane. Zamontowanie %s nie jest możliwe. Proszę poproś Twojego administratora o zainstalowanie go." #: lib/config.php:626 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Uwaga: Wsparcie dla FTP w PHP nie zostało włączone lub zainstalowane. Zamontowanie %s nie jest możliwe. Proszę poproś Twojego administratora o zainstalowanie go." #: lib/config.php:628 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" " ask your system administrator to install it." -msgstr "" +msgstr "Uwaga: \"%s\" nie jest zainstalowane. Zamontowanie %s nie jest możliwe. Proszę poproś Twojego administratora o zainstalowanie go." #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index 9ae2481a2d8..35e7c37ef0a 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 10:53+0000\n" +"Last-Translator: bobie \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -347,16 +347,16 @@ msgstr "lat temu" msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" -msgstr "" +msgstr "W nazwach użytkowników dozwolone są wyłącznie następujące znaki: \"a-z\", \"A-Z\", \"0-9\", oraz \"_.@-\"" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "Należy podać prawidłową nazwę użytkownika" #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "Należy podać prawidłowe hasło" #: private/user/manager.php:260 msgid "The username is already being used" -msgstr "" +msgstr "Ta nazwa użytkownika jest już używana" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index d1e47d0889e..8c1c418c8e7 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 10:42+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+0000\n" "Last-Translator: bobie \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -54,7 +54,7 @@ msgstr "Musisz najpierw ustawić użytkownika e-mail, aby móc wysyłać wiadomo msgid "Send mode" msgstr "Tryb wysyłki" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "Szyfrowanie" @@ -67,7 +67,7 @@ msgid "Unable to load list from App Store" msgstr "Nie można wczytać listy aplikacji" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Błąd uwierzytelniania" @@ -129,32 +129,32 @@ msgstr "Nie można usunąć użytkownika z grupy %s" msgid "Couldn't update app." msgstr "Nie można uaktualnić aplikacji." -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "Złe hasło" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "Niedostarczony użytkownik" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "Podaj hasło odzyskiwania administratora, w przeciwnym razie wszystkie dane użytkownika zostaną utracone" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "Błędne hasło odzyskiwania. Sprawdź hasło i spróbuj ponownie." -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "Zaplecze nie obsługuje zmiany hasła, ale klucz szyfrowania użytkownika został pomyślnie zaktualizowany." -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "Nie można zmienić hasła" @@ -206,7 +206,7 @@ msgstr "Błąd podczas aktualizacji aplikacji" msgid "Error" msgstr "Błąd" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "Aktualizuj" @@ -214,31 +214,31 @@ msgstr "Aktualizuj" msgid "Updated" msgstr "Zaktualizowano" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "Wybierz zdjęcie profilu" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "Bardzo słabe hasło" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "Słabe hasło" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "Mało skomplikowane hasło" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "Dobre hasło" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "Mocne hasło" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "Odszyfrowuje pliki... Proszę czekać, to może zająć jakiś czas." @@ -287,7 +287,7 @@ msgstr "Należy podać prawidłowe hasło" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Ostrzeżenie: Katalog domowy dla użytkownika \"{user}\" już istnieje" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "polski" @@ -592,11 +592,11 @@ msgstr "Więcej" msgid "Less" msgstr "Mniej" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "Wersja" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "-licencjonowane przez " @@ -667,108 +667,108 @@ msgstr "Uruchom ponownie kreatora pierwszego uruchomienia" msgid "You have used %s of the available %s" msgstr "Wykorzystujesz %s z dostępnych %s" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Hasło" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "Twoje hasło zostało zmienione" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "Nie można zmienić hasła" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "Bieżące hasło" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "Nowe hasło" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "Zmień hasło" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "Pełna nazwa" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "Email" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "Twój adres e-mail" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Wypełnij adres email aby włączyć odzyskiwanie hasła oraz otrzymywać powiadomienia" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "Zdjęcie profilu" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "Wczytaj nowe" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "Wybierz nowe z plików" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "Usuń zdjęcie" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Png lub jpg. Idealnie kwadratowy, ale będzie można je przyciąć." -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "Twój awatar jest ustawiony jako domyślny." -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Anuluj" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "Wybierz zdjęcie profilu" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "Język" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "Pomóż w tłumaczeniu" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Użyj tego adresu do dostępu do twoich plików przez WebDAV" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Aplikacja szyfrowanie nie jest włączona, odszyfruj wszystkie plik" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "Hasło logowania" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "Odszyfruj wszystkie pliki" diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index ef0179cf115..0a8a376d6f6 100644 --- a/l10n/pt_BR/files_external.po +++ b/l10n/pt_BR/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 16:50+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" @@ -44,32 +44,32 @@ msgstr "Salvo" #: lib/config.php:592 msgid "Note: " -msgstr "" +msgstr "Nota:" #: lib/config.php:602 msgid " and " -msgstr "" +msgstr "e" #: lib/config.php:624 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Nota: O suporte cURL do PHP não está habilitado ou instalado. Montagem de %s não é possível. Por favor, solicite ao seu administrador do sistema para instalá-lo." #: lib/config.php:626 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Nota: O suporte FTP no PHP não está habilitado ou instalado. Montagem de %s não é possível. Por favor, solicite ao seu administrador do sistema para instalá-lo." #: lib/config.php:628 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" " ask your system administrator to install it." -msgstr "" +msgstr "Nota: \"%s\" não está instalado. Montagem de %s não é possível. Por favor, solicite ao seu administrador do sistema para instalá-lo." #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index 6dc1cf3a5b2..a7c133b16a6 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 16:40+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" @@ -342,16 +342,16 @@ msgstr "anos atrás" msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" -msgstr "" +msgstr "Somente os seguintes caracteres são permitidos no nome do usuário: \"a-z\", \"A-Z\", \"0-9\", e \"_.@-\"" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "Forneça um nome de usuário válido" #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "Forneça uma senha válida" #: private/user/manager.php:260 msgid "The username is already being used" -msgstr "" +msgstr "Este nome de usuário já está sendo usado" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 8b7fc8e6093..c94e167dc92 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-03 12:40+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -213,31 +213,31 @@ msgstr "Atualizar" msgid "Updated" msgstr "Atualizado" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "Selecione uma imagem para o perfil" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "Senha muito fraca" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "Senha fraca" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "So-so senha" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "Boa senha" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "Senha forte" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "Decriptando arquivos... Por favor aguarde, isso pode levar algum tempo." diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index e62af4ccc4e..e8a0c4927da 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -348,11 +348,11 @@ msgstr "" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "Um nome de utilizador válido deve ser fornecido" #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "Uma password válida deve ser fornecida" #: private/user/manager.php:260 msgid "The username is already being used" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 3879c7118d5..ea6ff1bc02c 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -58,7 +58,7 @@ msgstr "" msgid "Send mode" msgstr "Modo de envio" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "Encriptação" @@ -71,7 +71,7 @@ msgid "Unable to load list from App Store" msgstr "Incapaz de carregar a lista da App Store" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Erro na autenticação" @@ -133,32 +133,32 @@ msgstr "Impossível apagar utilizador do grupo %s" msgid "Couldn't update app." msgstr "Não foi possível actualizar a aplicação." -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "Password errada" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "Nenhum utilizador especificado." -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "Por favor forneça uma palavra chave de recuperação de administrador, caso contrário todos os dados de utilizador serão perdidos" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "Palavra chave de recuperação de administrador errada. Por favor verifique a palavra chave e tente de novo." -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." 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 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "Não foi possível alterar a sua password" @@ -210,7 +210,7 @@ msgstr "Erro enquanto actualizava a aplicação" msgid "Error" msgstr "Erro" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "Actualizar" @@ -218,31 +218,31 @@ msgstr "Actualizar" msgid "Updated" msgstr "Actualizado" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "Seleccione uma fotografia de perfil" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "A desencriptar os ficheiros... Por favor aguarde, esta operação pode demorar algum tempo." @@ -291,7 +291,7 @@ msgstr "Uma password válida deve ser fornecida" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Atenção: a pasta pessoal do utilizador \"{user}\" já existe" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "__language_name__" @@ -596,11 +596,11 @@ msgstr "Mais" msgid "Less" msgstr "Menos" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "Versão" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "-licenciado por " @@ -671,108 +671,108 @@ msgstr "Mostrar novamente Wizard de Arranque Inicial" msgid "You have used %s of the available %s" msgstr "Usou %s do disponivel %s" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Password" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "A sua palavra-passe foi alterada" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "Não foi possivel alterar a sua palavra-chave" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "Palavra-chave actual" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "Nova palavra-chave" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "Alterar palavra-chave" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "Nome completo" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "Email" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "O seu endereço de email" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "Foto do perfil" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "Carregar novo" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "Seleccionar novo a partir dos ficheiros" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "Remover imagem" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Apenas png ou jpg. Idealmente quadrada, mas poderá corta-la depois." -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "O seu avatar é fornecido pela sua conta original." -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Cancelar" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "Escolha uma fotografia de perfil" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "Idioma" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "Ajude a traduzir" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Utilize esta ligação para aceder aos seus ficheiros via WebDAV" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "A aplicação de encriptação já não está ativa, por favor desincripte todos os seus ficheiros" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "Password de entrada" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "Desencriptar todos os ficheiros" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index 442afc592da..6beeb527615 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -350,11 +350,11 @@ msgstr "" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "Trebuie să furnizaţi un nume de utilizator valid" #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "Trebuie să furnizaţi o parolă validă" #: private/user/manager.php:260 msgid "The username is already being used" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 788adc850f7..7358fd44fc6 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: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -53,7 +53,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "Încriptare" @@ -66,7 +66,7 @@ msgid "Unable to load list from App Store" msgstr "Imposibil de actualizat lista din App Store." #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Eroare la autentificare" @@ -128,32 +128,32 @@ msgstr "Nu s-a putut elimina utilizatorul din grupul %s" msgid "Couldn't update app." msgstr "Aplicaţia nu s-a putut actualiza." -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "Parolă greșită" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "Imposibil de schimbat parola" @@ -205,7 +205,7 @@ msgstr "Eroare în timpul actualizării aplicaţiei" msgid "Error" msgstr "Eroare" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "Actualizare" @@ -213,31 +213,31 @@ msgstr "Actualizare" msgid "Updated" msgstr "Actualizat" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -286,7 +286,7 @@ msgstr "Trebuie să furnizaţi o parolă validă" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "_language_name_" @@ -591,11 +591,11 @@ msgstr "Mai mult" msgid "Less" msgstr "Mai puțin" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "Versiunea" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "-licențiat " @@ -666,108 +666,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "Ați utilizat %s din %s disponibile" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Parolă" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "Parola a fost modificată" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "Imposibil de-ați schimbat parola" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "Parola curentă" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "Noua parolă" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "Schimbă parola" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "Email" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "Adresa ta de email" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "Imagine de profil" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "Înlătură imagine" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Anulare" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "Alege drept imagine de profil" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "Limba" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "Ajută la traducere" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index f9f03c5f434..f59ffd70fa5 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+0000\n" "Last-Translator: I Robot\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -356,11 +356,11 @@ msgstr "" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "Укажите правильное имя пользователя" #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "Укажите валидный пароль" #: private/user/manager.php:260 msgid "The username is already being used" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 5654edd1a82..4e3067464e0 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -22,8 +22,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-28 01:55-0400\n" -"PO-Revision-Date: 2014-03-27 14:41+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+0000\n" "Last-Translator: I Robot\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -66,7 +66,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "Шифрование" @@ -79,7 +79,7 @@ msgid "Unable to load list from App Store" msgstr "Не удалось загрузить список из App Store" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Ошибка аутентификации" @@ -141,32 +141,32 @@ msgstr "Невозможно удалить пользователя из гру msgid "Couldn't update app." msgstr "Невозможно обновить приложение" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "Неправильный пароль" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "Пользователь не задан" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "Пожалуйста введите администраторский пароль восстановления, иначе все пользовательские данные будут утеряны" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "Неправильный пароль восстановления. Проверьте пароль и попробуйте еще раз." -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "Используемый механизм не поддерживает смену паролей, но пользовательский ключ шифрования был успешно обновлён" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "Невозможно изменить пароль" @@ -218,7 +218,7 @@ msgstr "Ошибка при обновлении приложения" msgid "Error" msgstr "Ошибка" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "Обновить" @@ -226,31 +226,31 @@ msgstr "Обновить" msgid "Updated" msgstr "Обновлено" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "Выберите картинку профиля" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "Очень слабый пароль" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "Слабый пароль" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "Так себе пароль" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "Хороший пароль" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "Устойчивый к взлому пароль" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "Расшифровка файлов... Пожалуйста, подождите, это может занять некоторое время." @@ -299,7 +299,7 @@ msgstr "Укажите валидный пароль" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Предупреждение: домашняя папка пользователя \"{user}\" уже существует" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "Русский " @@ -604,11 +604,11 @@ msgstr "Больше" msgid "Less" msgstr "Меньше" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "Версия" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr " лицензия. Автор " @@ -679,108 +679,108 @@ msgstr "Показать помощник настройки" msgid "You have used %s of the available %s" msgstr "Вы использовали %s из доступных %s" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Пароль" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "Ваш пароль изменён" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "Невозможно сменить пароль" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "Текущий пароль" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "Новый пароль" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "Сменить пароль" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "Полное имя" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "E-mail" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "Ваш адрес электронной почты" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "Фото профиля" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "Загрузить новую" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "Выберите новый из файлов" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "Удалить изображение" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Либо png, либо jpg. Изображение должно быть квадратным, но вы сможете обрезать его позже." -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "Будет использован аватар вашей оригинальной учетной записи." -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Отменить" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "Выберите изображение профиля" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "Язык" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "Помочь с переводом" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Используйте этот адресс для доступа к вашим файлам через WebDAV" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Приложение для шифрования выключено, пожалуйста, расшифруйте ваши файлы" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "Пароль входа" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "Снять шифрование со всех файлов" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index 434ad7c1f4f..10d44986712 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -351,11 +351,11 @@ msgstr "" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "Musíte zadať platné používateľské meno" #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "Musíte zadať platné heslo" #: private/user/manager.php:260 msgid "The username is already being used" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index d021ae13773..8aecaab335b 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 07:10+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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/lib.po b/l10n/sl/lib.po index 5a7ab52c3f5..6593ed803c0 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -355,11 +355,11 @@ msgstr "" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "Navedeno mora biti veljavno uporabniško ime" #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "Navedeno mora biti veljavno geslo" #: private/user/manager.php:260 msgid "The username is already being used" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 84a5d4921dd..23a92432934 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-03 19:40+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -213,31 +213,31 @@ msgstr "Posodobi" msgid "Updated" msgstr "Posodobljeno" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "Izbor slike profila" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "Zelo šibko geslo" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "Šibko geslo" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "Slabo geslo" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "Dobro geslo" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "Odlično geslo" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "Poteka odšifriranje datotek ... Opravilo je lahko dolgotrajno." diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index a52513d2496..1e227ddd183 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -345,11 +345,11 @@ msgstr "" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "Duhet të jepni një emër të vlefshëm përdoruesi" #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "Duhet të jepni një fjalëkalim te vlefshëm" #: private/user/manager.php:260 msgid "The username is already being used" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index 4cb82529cc1..8d2970bcdc2 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "E pamundur të shkarkohet lista nga App Store" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Gabim autentifikimi" @@ -126,32 +126,32 @@ msgstr "E pamundur të hiqet përdoruesi nga grupi %s" msgid "Couldn't update app." msgstr "E pamundur të përditësohet app." -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +203,7 @@ msgstr "Gabim gjatë përditësimit të app" msgid "Error" msgstr "Gabim" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "Përditësim" @@ -211,31 +211,31 @@ msgstr "Përditësim" msgid "Updated" msgstr "I përditësuar" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +284,7 @@ msgstr "Duhet të jepni një fjalëkalim te vlefshëm" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "Shqip" @@ -589,11 +589,11 @@ msgstr "Më tepër" msgid "Less" msgstr "M'pak" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "Versioni" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "-licensuar nga " @@ -664,108 +664,108 @@ msgstr "Rishfaq përsëri fazat për hapjen e herës së parë" msgid "You have used %s of the available %s" msgstr "Ju keni përdorur %s nga %s të mundshme " -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Fjalëkalim" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "fjalëkalimi juaj u ndryshua" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "Nuk është e mundur të ndryshohet fjalëkalimi" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "Fjalëkalimi aktual" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "Fjalëkalimi i ri" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "Ndrysho fjalëkalimin" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "Email" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "Adresa juaj email" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Anullo" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "Gjuha" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "Ndihmoni në përkthim" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index 1f49ce77b3c..9cd072c745e 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -349,11 +349,11 @@ msgstr "" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "Морате унети исправно корисничко име" #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "Морате унети исправну лозинку" #: private/user/manager.php:260 msgid "The username is already being used" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index ea03c7d195d..ad83bcb144a 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "Шифровање" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "Грешка приликом учитавања списка из Складишта Програма" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Грешка при провери идентитета" @@ -126,32 +126,32 @@ msgstr "Не могу да уклоним корисника из групе %s" msgid "Couldn't update app." msgstr "Не могу да ажурирам апликацију." -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +203,7 @@ msgstr "Грешка при ажурирању апликације" msgid "Error" msgstr "Грешка" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "Ажурирај" @@ -211,31 +211,31 @@ msgstr "Ажурирај" msgid "Updated" msgstr "Ажурирано" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +284,7 @@ msgstr "Морате унети исправну лозинку" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "__language_name__" @@ -589,11 +589,11 @@ msgstr "Више" msgid "Less" msgstr "Мање" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "Верзија" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "-лиценцирао " @@ -664,108 +664,108 @@ msgstr "Поново прикажи чаробњак за прво покрет msgid "You have used %s of the available %s" msgstr "Искористили сте %s од дозвољених %s" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Лозинка" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "Лозинка је промењена" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "Не могу да изменим вашу лозинку" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "Тренутна лозинка" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "Нова лозинка" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "Измени лозинку" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "Е-пошта" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "Ваша адреса е-поште" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Откажи" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "Језик" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr " Помозите у превођењу" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index 2934570091a..07600270a14 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -351,11 +351,11 @@ msgstr "" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "Ett giltigt användarnamn måste anges" #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "Ett giltigt lösenord måste anges" #: private/user/manager.php:260 msgid "The username is already being used" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index f3161f40534..af537045197 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-07 01:55-0400\n" -"PO-Revision-Date: 2014-04-06 12:20+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+0000\n" "Last-Translator: AsavarTzeth \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -221,31 +221,31 @@ msgstr "Uppdatera" msgid "Updated" msgstr "Uppdaterad" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "Välj en profilbild" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "Väldigt svagt lösenord" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "Svagt lösenord" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "Okej lösenord" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "Bra lösenord" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "Starkt lösenord" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "Dekrypterar filer... Vänligen vänta, detta kan ta en stund." diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index b365936e9e0..f69b4b5d432 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: 2014-04-09 01:55-0400\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -143,127 +143,127 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its " "name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:457 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:465 msgid "Error loading file exists template" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 97b53b761c4..a6d07cdc509 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: 2014-04-09 01:55-0400\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -177,7 +177,7 @@ msgstr "" msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:548 js/filelist.js:587 msgid "{new_name} already exists" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1101 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:614 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:777 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:802 js/filelist.js:879 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:803 js/filelist.js:880 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:810 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1040 js/filelist.js:1078 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 5420e3eeda4..76d141a0859 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: 2014-04-09 01:55-0400\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\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 9d84c3a33b2..5be8bf356f3 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: 2014-04-09 01:55-0400\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\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 c21dcd23046..60582d89f51 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: 2014-04-09 01:55-0400\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\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 011aa053031..4e8d76a5465 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: 2014-04-09 01:55-0400\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\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 26903a761f7..1a27053a19a 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: 2014-04-09 01:55-0400\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\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 fb1b7a7289c..ad065b90cad 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: 2014-04-09 01:55-0400\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\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 a405235f323..c92cf519b8c 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: 2014-04-09 01:55-0400\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\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 6ecfbc8c504..fb3582a4558 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: 2014-04-09 01:55-0400\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\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 1204e2bb4c9..88cd14c529d 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: 2014-04-09 01:55-0400\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -145,7 +145,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index c1012033296..47794841273 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: 2014-04-09 01:55-0400\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index 8a805f876d8..02bf5aab5fe 100644 --- a/l10n/tr/files_external.po +++ b/l10n/tr/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 20:50+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" @@ -44,32 +44,32 @@ msgstr "Kaydedildi" #: lib/config.php:592 msgid "Note: " -msgstr "" +msgstr "Not: " #: lib/config.php:602 msgid " and " -msgstr "" +msgstr "ve" #: lib/config.php:624 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Not: PHP'de cURL desteği etkin veya kurulu değil. %s bağlaması mümkün olmayacak. Lütfen kurulumu için sistem yöneticilerinizle iletişime geçin." #: lib/config.php:626 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Not: PHP'de FTP desteği etkin veya kurulu değil. %s bağlaması mümkün olmayacak. Lütfen kurulumu için sistem yöneticilerinizle iletişime geçin." #: lib/config.php:628 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" " ask your system administrator to install it." -msgstr "" +msgstr "Not: \"%s\" kurulu değil. %s bağlaması mümkün olmayacak. Lütfen kurulumu için sistem yöneticilerinizle iletişime geçin." #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index 470d8a70cb3..f067d809632 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 21:00+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" @@ -345,16 +345,16 @@ msgstr "yıl önce" msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" -msgstr "" +msgstr "Kullanıcı adında sadece bu karakterlere izin verilmektedir: \"a-z\", \"A-Z\", \"0-9\", ve \"_.@-\"" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "Geçerli bir kullanıcı adı mutlaka sağlanmalı" #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "Geçerli bir parola mutlaka sağlanmalı" #: private/user/manager.php:260 msgid "The username is already being used" -msgstr "" +msgstr "Bu kullanıcı adı zaten kullanımda" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index f4015df4899..3f8e26a01f5 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 23:30+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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/ug/lib.po b/l10n/ug/lib.po index ba3733d9f32..49eec14adb2 100644 --- a/l10n/ug/lib.po +++ b/l10n/ug/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -341,11 +341,11 @@ msgstr "" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "چوقۇم ئىناۋەتلىك ئىشلەتكۈچى ئىسمىدىن بىرنى تەمىنلەش كېرەك" #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "چوقۇم ئىناۋەتلىك ئىم تەمىنلەش كېرەك" #: private/user/manager.php:260 msgid "The username is already being used" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index a304d79b2fc..384a913c7f0 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -52,7 +52,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "شىفىرلاش" @@ -65,7 +65,7 @@ msgid "Unable to load list from App Store" msgstr "ئەپ بازىرىدىن تىزىمنى يۈكلىيەلمىدى" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "سالاھىيەت دەلىللەش خاتالىقى" @@ -127,32 +127,32 @@ msgstr "ئىشلەتكۈچىنى %s گۇرۇپپىدىن چىقىرىۋېتەل msgid "Couldn't update app." msgstr "ئەپنى يېڭىلىيالمايدۇ." -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -204,7 +204,7 @@ msgstr "ئەپنى يېڭىلاۋاتقاندا خاتالىق كۆرۈلدى" msgid "Error" msgstr "خاتالىق" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "يېڭىلا" @@ -212,31 +212,31 @@ msgstr "يېڭىلا" msgid "Updated" msgstr "يېڭىلاندى" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -285,7 +285,7 @@ msgstr "چوقۇم ئىناۋەتلىك ئىم تەمىنلەش كېرەك" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "ئۇيغۇرچە" @@ -590,11 +590,11 @@ msgstr "تېخىمۇ كۆپ" msgid "Less" msgstr "ئاز" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "نەشرى" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "" @@ -665,108 +665,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "ئىم" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "ئىمىڭىز مۇۋەپپەقىيەتلىك ئۆزگەرتىلدى" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "ئىمنى ئۆزگەرتكىلى بولمايدۇ." -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "نۆۋەتتىكى ئىم" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "يېڭى ئىم" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "ئىم ئۆزگەرت" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "تورخەت" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "تورخەت ئادرېسىڭىز" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "ۋاز كەچ" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "تىل" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "تەرجىمىگە ياردەم" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index 4fd8fcdbe48..5724656194a 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: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -349,11 +349,11 @@ msgstr "" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "Потрібно задати вірне ім'я користувача" #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "Потрібно задати вірний пароль" #: private/user/manager.php:260 msgid "The username is already being used" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 3b7a588fc6d..5408c4789aa 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: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -52,7 +52,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "Шифрування" @@ -65,7 +65,7 @@ msgid "Unable to load list from App Store" msgstr "Не вдалося завантажити список з App Store" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Помилка автентифікації" @@ -127,32 +127,32 @@ msgstr "Не вдалося видалити користувача із гру msgid "Couldn't update app." msgstr "Не вдалося оновити програму. " -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -204,7 +204,7 @@ msgstr "Помилка при оновленні програми" msgid "Error" msgstr "Помилка" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "Оновити" @@ -212,31 +212,31 @@ msgstr "Оновити" msgid "Updated" msgstr "Оновлено" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -285,7 +285,7 @@ msgstr "Потрібно задати вірний пароль" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "__language_name__" @@ -590,11 +590,11 @@ msgstr "Більше" msgid "Less" msgstr "Менше" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "Версія" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "-licensed by " @@ -665,108 +665,108 @@ msgstr "Показувати Майстер Налаштувань знову" msgid "You have used %s of the available %s" msgstr "Ви використали %s із доступних %s" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Пароль" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "Ваш пароль змінено" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "Не вдалося змінити Ваш пароль" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "Поточний пароль" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "Новий пароль" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "Змінити пароль" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "Ел.пошта" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "Ваша адреса електронної пошти" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Відмінити" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "Мова" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "Допомогти з перекладом" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index df5922a64b7..81c8dfbaedb 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -346,11 +346,11 @@ msgstr "" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "必须提供合法的用户名" #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "必须提供合法的密码" #: private/user/manager.php:260 msgid "The username is already being used" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 34e1ff4df24..4b19e0c792f 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -58,7 +58,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "加密" @@ -71,7 +71,7 @@ msgid "Unable to load list from App Store" msgstr "无法从应用商店载入列表" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "认证出错" @@ -133,32 +133,32 @@ msgstr "无法从组%s中移除用户" msgid "Couldn't update app." msgstr "无法更新 app。" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "错误密码" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "没有满足的用户" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "不能更改密码" @@ -210,7 +210,7 @@ msgstr "更新 app 时出错" msgid "Error" msgstr "错误" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "更新" @@ -218,31 +218,31 @@ msgstr "更新" msgid "Updated" msgstr "已更新" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "正在解密文件... 请稍等,可能需要一些时间。" @@ -291,7 +291,7 @@ msgstr "必须提供合法的密码" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "警告:用户 \"{user}\" 的家目录已存在" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "简体中文" @@ -596,11 +596,11 @@ msgstr "更多" msgid "Less" msgstr "更少" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "版本" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "-核准: " @@ -671,108 +671,108 @@ msgstr "再次显示首次运行向导" msgid "You have used %s of the available %s" msgstr "你已使用 %s,有效空间 %s" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "密码" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "密码已修改" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "无法修改密码" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "当前密码" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "新密码" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "修改密码" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "全名" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "电子邮件" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "您的电子邮件" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "联系人图片" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "上传新的" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "从文件中选择一个新的" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "移除图片" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "您的头像由您的原始账户所提供。" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "取消" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "语言" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "帮助翻译" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "使用这个地址 通过 WebDAV 访问您的文件" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "登录密码" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "解密所有文件" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index c10955598bf..509f97f58f7 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -343,11 +343,11 @@ msgstr "" #: private/user/manager.php:251 msgid "A valid username must be provided" -msgstr "" +msgstr "必須提供一個有效的用戶名" #: private/user/manager.php:255 msgid "A valid password must be provided" -msgstr "" +msgstr "一定要提供一個有效的密碼" #: private/user/manager.php:260 msgid "The username is already being used" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 963c82e52c7..df741fa89fc 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-10 01:54-0400\n" +"PO-Revision-Date: 2014-04-09 06:10+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" @@ -52,7 +52,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "加密" @@ -65,7 +65,7 @@ msgid "Unable to load list from App Store" msgstr "無法從 App Store 讀取清單" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "認證錯誤" @@ -127,32 +127,32 @@ msgstr "使用者移出群組 %s 錯誤" msgid "Couldn't update app." msgstr "無法更新應用程式" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "密碼錯誤" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "未提供使用者" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "請提供管理者還原密碼,否則會遺失所有使用者資料" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "錯誤的管理者還原密碼" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "後端不支援變更密碼,但成功更新使用者的加密金鑰" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "無法修改密碼" @@ -204,7 +204,7 @@ msgstr "更新應用程式錯誤" msgid "Error" msgstr "錯誤" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "更新" @@ -212,31 +212,31 @@ msgstr "更新" msgid "Updated" msgstr "已更新" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "選擇大頭貼" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "檔案解密中,請稍候。" @@ -285,7 +285,7 @@ msgstr "一定要提供一個有效的密碼" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "警告:使用者 {user} 的家目錄已經存在" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "__language_name__" @@ -590,11 +590,11 @@ msgstr "更多" msgid "Less" msgstr "更少" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "版本" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "-核准: " @@ -665,108 +665,108 @@ msgstr "再次顯示首次使用精靈" msgid "You have used %s of the available %s" msgstr "您已經使用了 %s ,目前可用空間為 %s" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "密碼" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "你的密碼已更改" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "無法變更您的密碼" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "目前密碼" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "新密碼" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "變更密碼" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "信箱" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "您的電子郵件信箱" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "個人資料照片" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "上傳新的" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "從已上傳的檔案中選一個" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "移除圖片" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "可以使用 png 或 jpg 格式,最好是方形的,但是您之後也可以裁剪它" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "取消" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "設定為大頭貼" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "語言" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "幫助翻譯" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "使用這個地址來透過 WebDAV 存取檔案" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "登入密碼" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "解密所有檔案" diff --git a/lib/l10n/ar.php b/lib/l10n/ar.php index 6287a53d619..c8b51a3bb7e 100644 --- a/lib/l10n/ar.php +++ b/lib/l10n/ar.php @@ -56,6 +56,8 @@ $TRANSLATIONS = array( "last month" => "الشهر الماضي", "_%n month ago_::_%n months ago_" => array("","","","","",""), "last year" => "السنةالماضية", -"years ago" => "سنة مضت" +"years ago" => "سنة مضت", +"A valid username must be provided" => "يجب ادخال اسم مستخدم صحيح", +"A valid password must be provided" => "يجب ادخال كلمة مرور صحيحة" ); $PLURAL_FORMS = "nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"; diff --git a/lib/l10n/ast.php b/lib/l10n/ast.php index 6b76d8126ee..93a20beb5d4 100644 --- a/lib/l10n/ast.php +++ b/lib/l10n/ast.php @@ -2,8 +2,16 @@ $TRANSLATIONS = array( "Personal" => "Personal", "Settings" => "Axustes", +"Users" => "Usuarios", +"Failed to upgrade \"%s\"." => "Fallu al anovar \"%s\".", +"Invalid image" => "Imaxe inválida", +"Application is not enabled" => "L'aplicación nun ta habilitada", "Files" => "Ficheros", "Text" => "Testu", +"Images" => "Imaxes", +"Set an admin username." => "Afitar nome d'usuariu p'almin", +"Set an admin password." => "Afitar contraseña p'almin", +"Could not find category \"%s\"" => "Nun pudo alcontrase la estaya \"%s.\"", "seconds ago" => "fai segundos", "_%n minute ago_::_%n minutes ago_" => array("","fai %n minutos"), "_%n hour ago_::_%n hours ago_" => array("","fai %n hores"), diff --git a/lib/l10n/ca.php b/lib/l10n/ca.php index 88bb8ec9eee..477cdf2925b 100644 --- a/lib/l10n/ca.php +++ b/lib/l10n/ca.php @@ -66,6 +66,9 @@ $TRANSLATIONS = array( "last month" => "el mes passat", "_%n month ago_::_%n months ago_" => array("fa %n mes","fa %n mesos"), "last year" => "l'any passat", -"years ago" => "anys enrere" +"years ago" => "anys enrere", +"A valid username must be provided" => "Heu de facilitar un nom d'usuari vàlid", +"A valid password must be provided" => "Heu de facilitar una contrasenya vàlida", +"The username is already being used" => "El nom d'usuari ja està en ús" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/cs_CZ.php b/lib/l10n/cs_CZ.php index 6b5c8441ca1..d535b97f631 100644 --- a/lib/l10n/cs_CZ.php +++ b/lib/l10n/cs_CZ.php @@ -66,6 +66,9 @@ $TRANSLATIONS = array( "last month" => "minulý měsíc", "_%n month ago_::_%n months ago_" => array("před %n měsícem","před %n měsíci","před %n měsíci"), "last year" => "minulý rok", -"years ago" => "před lety" +"years ago" => "před lety", +"A valid username must be provided" => "Musíte zadat platné uživatelské jméno", +"A valid password must be provided" => "Musíte zadat platné heslo", +"The username is already being used" => "Uživatelské jméno je již využíváno" ); $PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/lib/l10n/da.php b/lib/l10n/da.php index c3166000727..3be45001030 100644 --- a/lib/l10n/da.php +++ b/lib/l10n/da.php @@ -66,6 +66,8 @@ $TRANSLATIONS = array( "last month" => "sidste måned", "_%n month ago_::_%n months ago_" => array("%n måned siden","%n måneder siden"), "last year" => "sidste år", -"years ago" => "år siden" +"years ago" => "år siden", +"A valid username must be provided" => "Et gyldigt brugernavn skal angives", +"A valid password must be provided" => "En gyldig adgangskode skal angives" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/de.php b/lib/l10n/de.php index d644582b91e..297cc57bde7 100644 --- a/lib/l10n/de.php +++ b/lib/l10n/de.php @@ -66,6 +66,10 @@ $TRANSLATIONS = array( "last month" => "Letzten Monat", "_%n month ago_::_%n months ago_" => array("Vor %n Monat","Vor %n Monaten"), "last year" => "Letztes Jahr", -"years ago" => "Vor Jahren" +"years ago" => "Vor Jahren", +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-\"" => "Folgende Zeichen sind im Benutzernamen erlaubt: \"a-z\", \"A-Z\", \"0-9\" und \"_.@-\"", +"A valid username must be provided" => "Es muss ein gültiger Benutzername angegeben werden", +"A valid password must be provided" => "Es muss ein gültiges Passwort angegeben werden", +"The username is already being used" => "Dieser Benutzername existiert bereits" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/de_CH.php b/lib/l10n/de_CH.php index fe1a519ccf7..e034cc3c209 100644 --- a/lib/l10n/de_CH.php +++ b/lib/l10n/de_CH.php @@ -47,6 +47,8 @@ $TRANSLATIONS = array( "last month" => "Letzten Monat", "_%n month ago_::_%n months ago_" => array("","Vor %n Monaten"), "last year" => "Letztes Jahr", -"years ago" => "Vor Jahren" +"years ago" => "Vor Jahren", +"A valid username must be provided" => "Es muss ein gültiger Benutzername angegeben werden", +"A valid password must be provided" => "Es muss ein gültiges Passwort angegeben werden" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/de_DE.php b/lib/l10n/de_DE.php index 85ed7e5c80a..d0a4a9b1c6e 100644 --- a/lib/l10n/de_DE.php +++ b/lib/l10n/de_DE.php @@ -66,6 +66,10 @@ $TRANSLATIONS = array( "last month" => "Letzten Monat", "_%n month ago_::_%n months ago_" => array("Vor %n Monat","Vor %n Monaten"), "last year" => "Letztes Jahr", -"years ago" => "Vor Jahren" +"years ago" => "Vor Jahren", +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-\"" => "Folgende Zeichen sind im Benutzernamen erlaubt: \"a-z\", \"A-Z\", \"0-9\" und \"_.@-\"", +"A valid username must be provided" => "Es muss ein gültiger Benutzername angegeben werden", +"A valid password must be provided" => "Es muss ein gültiges Passwort angegeben werden", +"The username is already being used" => "Der Benutzername existiert bereits" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/el.php b/lib/l10n/el.php index a169ae38649..244cc50b847 100644 --- a/lib/l10n/el.php +++ b/lib/l10n/el.php @@ -66,6 +66,8 @@ $TRANSLATIONS = array( "last month" => "τελευταίο μήνα", "_%n month ago_::_%n months ago_" => array("","%n μήνες πριν"), "last year" => "τελευταίο χρόνο", -"years ago" => "χρόνια πριν" +"years ago" => "χρόνια πριν", +"A valid username must be provided" => "Πρέπει να δοθεί έγκυρο όνομα χρήστη", +"A valid password must be provided" => "Πρέπει να δοθεί έγκυρο συνθηματικό" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/en_GB.php b/lib/l10n/en_GB.php index 7d2246eb66b..e1c49392bd8 100644 --- a/lib/l10n/en_GB.php +++ b/lib/l10n/en_GB.php @@ -66,6 +66,10 @@ $TRANSLATIONS = array( "last month" => "last month", "_%n month ago_::_%n months ago_" => array("%n month ago","%n months ago"), "last year" => "last year", -"years ago" => "years ago" +"years ago" => "years ago", +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-\"" => "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-\"", +"A valid username must be provided" => "A valid username must be provided", +"A valid password must be provided" => "A valid password must be provided", +"The username is already being used" => "The username is already being used" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/es.php b/lib/l10n/es.php index 14d6435c891..c01239cca7a 100644 --- a/lib/l10n/es.php +++ b/lib/l10n/es.php @@ -66,6 +66,10 @@ $TRANSLATIONS = array( "last month" => "mes pasado", "_%n month ago_::_%n months ago_" => array("Hace %n mes","Hace %n meses"), "last year" => "año pasado", -"years ago" => "hace años" +"years ago" => "hace años", +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-\"" => "Solo los siguientes caracteres están permitidos en un nombre de usuario: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-\"", +"A valid username must be provided" => "Se debe proporcionar un nombre de usuario válido", +"A valid password must be provided" => "Se debe proporcionar una contraseña válida", +"The username is already being used" => "El nombre de usuario ya está en uso" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/es_AR.php b/lib/l10n/es_AR.php index a925e22ba88..34775b16b22 100644 --- a/lib/l10n/es_AR.php +++ b/lib/l10n/es_AR.php @@ -60,6 +60,8 @@ $TRANSLATIONS = array( "last month" => "el mes pasado", "_%n month ago_::_%n months ago_" => array("Hace %n mes","Hace %n meses"), "last year" => "el año pasado", -"years ago" => "años atrás" +"years ago" => "años atrás", +"A valid username must be provided" => "Debe ingresar un nombre de usuario válido", +"A valid password must be provided" => "Debe ingresar una contraseña válida" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/es_MX.php b/lib/l10n/es_MX.php index 2f0ed33f6b3..befb076b7de 100644 --- a/lib/l10n/es_MX.php +++ b/lib/l10n/es_MX.php @@ -60,6 +60,8 @@ $TRANSLATIONS = array( "last month" => "mes pasado", "_%n month ago_::_%n months ago_" => array("Hace %n mes","Hace %n meses"), "last year" => "año pasado", -"years ago" => "hace años" +"years ago" => "hace años", +"A valid username must be provided" => "Se debe proporcionar un nombre de usuario válido", +"A valid password must be provided" => "Se debe proporcionar una contraseña válida" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/et_EE.php b/lib/l10n/et_EE.php index 7d8cc0f4b49..883c7323c0c 100644 --- a/lib/l10n/et_EE.php +++ b/lib/l10n/et_EE.php @@ -66,6 +66,9 @@ $TRANSLATIONS = array( "last month" => "viimasel kuul", "_%n month ago_::_%n months ago_" => array("","%n kuud tagasi"), "last year" => "viimasel aastal", -"years ago" => "aastat tagasi" +"years ago" => "aastat tagasi", +"A valid username must be provided" => "Sisesta nõuetele vastav kasutajatunnus", +"A valid password must be provided" => "Sisesta nõuetele vastav parool", +"The username is already being used" => "Kasutajanimi on juba kasutuses" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/eu.php b/lib/l10n/eu.php index 58c198cff14..7a8a11f5b32 100644 --- a/lib/l10n/eu.php +++ b/lib/l10n/eu.php @@ -60,6 +60,9 @@ $TRANSLATIONS = array( "last month" => "joan den hilabetean", "_%n month ago_::_%n months ago_" => array("orain dela hilabete %n","orain dela %n hilabete"), "last year" => "joan den urtean", -"years ago" => "urte" +"years ago" => "urte", +"A valid username must be provided" => "Baliozko erabiltzaile izena eman behar da", +"A valid password must be provided" => "Baliozko pasahitza eman behar da", +"The username is already being used" => "Erabiltzaile izena dagoeneko erabiltzen ari da" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/fa.php b/lib/l10n/fa.php index 7323ffe1918..c1c16cf94b4 100644 --- a/lib/l10n/fa.php +++ b/lib/l10n/fa.php @@ -42,6 +42,8 @@ $TRANSLATIONS = array( "last month" => "ماه قبل", "_%n month ago_::_%n months ago_" => array(""), "last year" => "سال قبل", -"years ago" => "سال‌های قبل" +"years ago" => "سال‌های قبل", +"A valid username must be provided" => "نام کاربری صحیح باید وارد شود", +"A valid password must be provided" => "رمز عبور صحیح باید وارد شود" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/fi_FI.php b/lib/l10n/fi_FI.php index 018e4c04c4f..13e97e1b677 100644 --- a/lib/l10n/fi_FI.php +++ b/lib/l10n/fi_FI.php @@ -59,6 +59,10 @@ $TRANSLATIONS = array( "last month" => "viime kuussa", "_%n month ago_::_%n months ago_" => array("%n kuukausi sitten","%n kuukautta sitten"), "last year" => "viime vuonna", -"years ago" => "vuotta sitten" +"years ago" => "vuotta sitten", +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-\"" => "Vain seuraavat merkit ovat sallittuja käyttäjätunnuksessa: \"a-z\", \"A-Z\", \"0-9\" ja \"_.@-\"", +"A valid username must be provided" => "Anna kelvollinen käyttäjätunnus", +"A valid password must be provided" => "Anna kelvollinen salasana", +"The username is already being used" => "Käyttäjätunnus on jo käytössä" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/fr.php b/lib/l10n/fr.php index d866fb664ee..52cbfb85b40 100644 --- a/lib/l10n/fr.php +++ b/lib/l10n/fr.php @@ -66,6 +66,9 @@ $TRANSLATIONS = array( "last month" => "le mois dernier", "_%n month ago_::_%n months ago_" => array("","Il y a %n mois"), "last year" => "l'année dernière", -"years ago" => "il y a plusieurs années" +"years ago" => "il y a plusieurs années", +"A valid username must be provided" => "Un nom d'utilisateur valide doit être saisi", +"A valid password must be provided" => "Un mot de passe valide doit être saisi", +"The username is already being used" => "Le nom d'utilisateur est déjà utilisé" ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/lib/l10n/gl.php b/lib/l10n/gl.php index cc1351c2f15..0da1695e37f 100644 --- a/lib/l10n/gl.php +++ b/lib/l10n/gl.php @@ -66,6 +66,10 @@ $TRANSLATIONS = array( "last month" => "último mes", "_%n month ago_::_%n months ago_" => array("hai %n mes","hai %n meses"), "last year" => "último ano", -"years ago" => "anos atrás" +"years ago" => "anos atrás", +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-\"" => "Só se permiten os seguintes caracteres no nome de usuario: «a-z», «A-Z», «0-9», e «_.@-»", +"A valid username must be provided" => "Debe fornecer un nome de usuario", +"A valid password must be provided" => "Debe fornecer un contrasinal", +"The username is already being used" => "Este nome de usuario xa está a ser usado" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/he.php b/lib/l10n/he.php index 6a9020009e9..27267c2e34d 100644 --- a/lib/l10n/he.php +++ b/lib/l10n/he.php @@ -29,6 +29,8 @@ $TRANSLATIONS = array( "last month" => "חודש שעבר", "_%n month ago_::_%n months ago_" => array("","לפני %n חודשים"), "last year" => "שנה שעברה", -"years ago" => "שנים" +"years ago" => "שנים", +"A valid username must be provided" => "יש לספק שם משתמש תקני", +"A valid password must be provided" => "יש לספק ססמה תקנית" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/hu_HU.php b/lib/l10n/hu_HU.php index 2a03f72a51e..0637773d17c 100644 --- a/lib/l10n/hu_HU.php +++ b/lib/l10n/hu_HU.php @@ -60,6 +60,9 @@ $TRANSLATIONS = array( "last month" => "múlt hónapban", "_%n month ago_::_%n months ago_" => array("%n hónappal ezelőtt","%n hónappal ezelőtt"), "last year" => "tavaly", -"years ago" => "több éve" +"years ago" => "több éve", +"A valid username must be provided" => "Érvényes felhasználónevet kell megadnia", +"A valid password must be provided" => "Érvényes jelszót kell megadnia", +"The username is already being used" => "Ez a bejelentkezési név már foglalt" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/id.php b/lib/l10n/id.php index 76dda80cf70..d694967cd42 100644 --- a/lib/l10n/id.php +++ b/lib/l10n/id.php @@ -60,6 +60,8 @@ $TRANSLATIONS = array( "last month" => "bulan kemarin", "_%n month ago_::_%n months ago_" => array("%n bulan yang lalu"), "last year" => "tahun kemarin", -"years ago" => "beberapa tahun lalu" +"years ago" => "beberapa tahun lalu", +"A valid username must be provided" => "Tuliskan nama pengguna yang valid", +"A valid password must be provided" => "Tuliskan sandi yang valid" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/it.php b/lib/l10n/it.php index ed1cbc2e31a..b76b5060a4d 100644 --- a/lib/l10n/it.php +++ b/lib/l10n/it.php @@ -66,6 +66,10 @@ $TRANSLATIONS = array( "last month" => "mese scorso", "_%n month ago_::_%n months ago_" => array("%n mese fa","%n mesi fa"), "last year" => "anno scorso", -"years ago" => "anni fa" +"years ago" => "anni fa", +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-\"" => "Solo i seguenti caratteri sono ammessi in un nome utente: \"a-z\", \"A-Z\", \"0-9\", e \"_.@-\"", +"A valid username must be provided" => "Deve essere fornito un nome utente valido", +"A valid password must be provided" => "Deve essere fornita una password valida", +"The username is already being used" => "Il nome utente è già utilizzato" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/ja.php b/lib/l10n/ja.php index 015c885904e..6d72836f775 100644 --- a/lib/l10n/ja.php +++ b/lib/l10n/ja.php @@ -66,6 +66,9 @@ $TRANSLATIONS = array( "last month" => "1ヶ月前", "_%n month ago_::_%n months ago_" => array("%nヶ月前"), "last year" => "1年前", -"years ago" => "年前" +"years ago" => "年前", +"A valid username must be provided" => "有効なユーザー名を指定する必要があります", +"A valid password must be provided" => "有効なパスワードを指定する必要があります", +"The username is already being used" => "ユーザ名はすでに使われています" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/ka_GE.php b/lib/l10n/ka_GE.php index e2a719d0746..f15563c297d 100644 --- a/lib/l10n/ka_GE.php +++ b/lib/l10n/ka_GE.php @@ -40,6 +40,8 @@ $TRANSLATIONS = array( "last month" => "გასულ თვეში", "_%n month ago_::_%n months ago_" => array(""), "last year" => "ბოლო წელს", -"years ago" => "წლის წინ" +"years ago" => "წლის წინ", +"A valid username must be provided" => "უნდა მიუთითოთ არსებული მომხმარებლის სახელი", +"A valid password must be provided" => "უნდა მიუთითოთ არსებული პაროლი" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/km.php b/lib/l10n/km.php index 51dd4f33a7e..d5fdc025760 100644 --- a/lib/l10n/km.php +++ b/lib/l10n/km.php @@ -39,6 +39,8 @@ $TRANSLATIONS = array( "last month" => "ខែមុន", "_%n month ago_::_%n months ago_" => array("%n ខែ​មុន"), "last year" => "ឆ្នាំ​មុន", -"years ago" => "ឆ្នាំ​មុន" +"years ago" => "ឆ្នាំ​មុន", +"A valid username must be provided" => "ត្រូវ​ផ្ដល់​ឈ្មោះ​អ្នក​ប្រើ​ឲ្យ​បាន​ត្រឹម​ត្រូវ", +"A valid password must be provided" => "ត្រូវ​ផ្ដល់​ពាក្យ​សម្ងាត់​ឲ្យ​បាន​ត្រឹម​ត្រូវ" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/ko.php b/lib/l10n/ko.php index 833476f6464..2c94ebdcc22 100644 --- a/lib/l10n/ko.php +++ b/lib/l10n/ko.php @@ -60,6 +60,8 @@ $TRANSLATIONS = array( "last month" => "지난 달", "_%n month ago_::_%n months ago_" => array("%n달 전 "), "last year" => "작년", -"years ago" => "년 전" +"years ago" => "년 전", +"A valid username must be provided" => "올바른 사용자 이름을 입력해야 함", +"A valid password must be provided" => "올바른 암호를 입력해야 함" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/lt_LT.php b/lib/l10n/lt_LT.php index dac8eed7633..88aca7aba46 100644 --- a/lib/l10n/lt_LT.php +++ b/lib/l10n/lt_LT.php @@ -60,6 +60,8 @@ $TRANSLATIONS = array( "last month" => "praeitą mėnesį", "_%n month ago_::_%n months ago_" => array("Prieš %n mėnesį","Prieš %n mėnesius","Prieš %n mėnesių"), "last year" => "praeitais metais", -"years ago" => "prieš metus" +"years ago" => "prieš metus", +"A valid username must be provided" => "Vartotojo vardas turi būti tinkamas", +"A valid password must be provided" => "Slaptažodis turi būti tinkamas" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/lib/l10n/lv.php b/lib/l10n/lv.php index 5461e077ec9..1c8a31aff2f 100644 --- a/lib/l10n/lv.php +++ b/lib/l10n/lv.php @@ -43,6 +43,9 @@ $TRANSLATIONS = array( "last month" => "pagājušajā mēnesī", "_%n month ago_::_%n months ago_" => array("","","Pirms %n mēnešiem"), "last year" => "gājušajā gadā", -"years ago" => "gadus atpakaļ" +"years ago" => "gadus atpakaļ", +"A valid username must be provided" => "Jānorāda derīgs lietotājvārds", +"A valid password must be provided" => "Jānorāda derīga parole", +"The username is already being used" => "Šāds lietotājvārds jau tiek izmantots" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"; diff --git a/lib/l10n/mk.php b/lib/l10n/mk.php index deaf1bc8d05..a0b3c39865a 100644 --- a/lib/l10n/mk.php +++ b/lib/l10n/mk.php @@ -28,6 +28,8 @@ $TRANSLATIONS = array( "last month" => "минатиот месец", "_%n month ago_::_%n months ago_" => array("",""), "last year" => "минатата година", -"years ago" => "пред години" +"years ago" => "пред години", +"A valid username must be provided" => "Мора да се обезбеди валидно корисничко име ", +"A valid password must be provided" => "Мора да се обезбеди валидна лозинка" ); $PLURAL_FORMS = "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"; diff --git a/lib/l10n/nb_NO.php b/lib/l10n/nb_NO.php index 4b41e54ef44..fd9b631f23c 100644 --- a/lib/l10n/nb_NO.php +++ b/lib/l10n/nb_NO.php @@ -60,6 +60,8 @@ $TRANSLATIONS = array( "last month" => "forrige måned", "_%n month ago_::_%n months ago_" => array("","%n dager siden"), "last year" => "forrige år", -"years ago" => "år siden" +"years ago" => "år siden", +"A valid username must be provided" => "Oppgi et gyldig brukernavn", +"A valid password must be provided" => "Oppgi et gyldig passord" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/nl.php b/lib/l10n/nl.php index dcf893af630..c7a1609a770 100644 --- a/lib/l10n/nl.php +++ b/lib/l10n/nl.php @@ -66,6 +66,8 @@ $TRANSLATIONS = array( "last month" => "vorige maand", "_%n month ago_::_%n months ago_" => array("%n maand geleden","%n maanden geleden"), "last year" => "vorig jaar", -"years ago" => "jaar geleden" +"years ago" => "jaar geleden", +"A valid username must be provided" => "Er moet een geldige gebruikersnaam worden opgegeven", +"A valid password must be provided" => "Er moet een geldig wachtwoord worden opgegeven" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/nn_NO.php b/lib/l10n/nn_NO.php index db257f35dce..77aebb26ffa 100644 --- a/lib/l10n/nn_NO.php +++ b/lib/l10n/nn_NO.php @@ -23,6 +23,8 @@ $TRANSLATIONS = array( "last month" => "førre månad", "_%n month ago_::_%n months ago_" => array("","%n månadar sidan"), "last year" => "i fjor", -"years ago" => "år sidan" +"years ago" => "år sidan", +"A valid username must be provided" => "Du må oppgje eit gyldig brukarnamn", +"A valid password must be provided" => "Du må oppgje eit gyldig passord" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/pl.php b/lib/l10n/pl.php index bc5e4a947c7..f786e1832a2 100644 --- a/lib/l10n/pl.php +++ b/lib/l10n/pl.php @@ -66,6 +66,10 @@ $TRANSLATIONS = array( "last month" => "w zeszłym miesiącu", "_%n month ago_::_%n months ago_" => array("%n miesiąc temu","%n miesięcy temu","%n miesięcy temu"), "last year" => "w zeszłym roku", -"years ago" => "lat temu" +"years ago" => "lat temu", +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-\"" => "W nazwach użytkowników dozwolone są wyłącznie następujące znaki: \"a-z\", \"A-Z\", \"0-9\", oraz \"_.@-\"", +"A valid username must be provided" => "Należy podać prawidłową nazwę użytkownika", +"A valid password must be provided" => "Należy podać prawidłowe hasło", +"The username is already being used" => "Ta nazwa użytkownika jest już używana" ); $PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/lib/l10n/pt_BR.php b/lib/l10n/pt_BR.php index 6c8ea586de8..3cc02f76524 100644 --- a/lib/l10n/pt_BR.php +++ b/lib/l10n/pt_BR.php @@ -66,6 +66,10 @@ $TRANSLATIONS = array( "last month" => "último mês", "_%n month ago_::_%n months ago_" => array("","ha %n meses"), "last year" => "último ano", -"years ago" => "anos atrás" +"years ago" => "anos atrás", +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-\"" => "Somente os seguintes caracteres são permitidos no nome do usuário: \"a-z\", \"A-Z\", \"0-9\", e \"_.@-\"", +"A valid username must be provided" => "Forneça um nome de usuário válido", +"A valid password must be provided" => "Forneça uma senha válida", +"The username is already being used" => "Este nome de usuário já está sendo usado" ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/lib/l10n/pt_PT.php b/lib/l10n/pt_PT.php index e6dd459a7e1..8b3c003678d 100644 --- a/lib/l10n/pt_PT.php +++ b/lib/l10n/pt_PT.php @@ -61,6 +61,8 @@ $TRANSLATIONS = array( "last month" => "ultímo mês", "_%n month ago_::_%n months ago_" => array("","%n meses atrás"), "last year" => "ano passado", -"years ago" => "anos atrás" +"years ago" => "anos atrás", +"A valid username must be provided" => "Um nome de utilizador válido deve ser fornecido", +"A valid password must be provided" => "Uma password válida deve ser fornecida" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/ro.php b/lib/l10n/ro.php index 6bff105a61f..87e9a92c464 100644 --- a/lib/l10n/ro.php +++ b/lib/l10n/ro.php @@ -31,6 +31,8 @@ $TRANSLATIONS = array( "last month" => "ultima lună", "_%n month ago_::_%n months ago_" => array("","",""), "last year" => "ultimul an", -"years ago" => "ani în urmă" +"years ago" => "ani în urmă", +"A valid username must be provided" => "Trebuie să furnizaţi un nume de utilizator valid", +"A valid password must be provided" => "Trebuie să furnizaţi o parolă validă" ); $PLURAL_FORMS = "nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"; diff --git a/lib/l10n/ru.php b/lib/l10n/ru.php index 214849721da..2611fcf7a6b 100644 --- a/lib/l10n/ru.php +++ b/lib/l10n/ru.php @@ -60,6 +60,8 @@ $TRANSLATIONS = array( "last month" => "в прошлом месяце", "_%n month ago_::_%n months ago_" => array("%n месяц назад","%n месяца назад","%n месяцев назад"), "last year" => "в прошлом году", -"years ago" => "несколько лет назад" +"years ago" => "несколько лет назад", +"A valid username must be provided" => "Укажите правильное имя пользователя", +"A valid password must be provided" => "Укажите валидный пароль" ); $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/lib/l10n/sk_SK.php b/lib/l10n/sk_SK.php index 424f0f5bd8c..17108d4bdf6 100644 --- a/lib/l10n/sk_SK.php +++ b/lib/l10n/sk_SK.php @@ -61,6 +61,8 @@ $TRANSLATIONS = array( "last month" => "minulý mesiac", "_%n month ago_::_%n months ago_" => array("pred %n mesiacom","pred %n mesiacmi","pred %n mesiacmi"), "last year" => "minulý rok", -"years ago" => "pred rokmi" +"years ago" => "pred rokmi", +"A valid username must be provided" => "Musíte zadať platné používateľské meno", +"A valid password must be provided" => "Musíte zadať platné heslo" ); $PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/lib/l10n/sl.php b/lib/l10n/sl.php index 411a14370ee..6f9470401ed 100644 --- a/lib/l10n/sl.php +++ b/lib/l10n/sl.php @@ -66,6 +66,8 @@ $TRANSLATIONS = array( "last month" => "zadnji mesec", "_%n month ago_::_%n months ago_" => array("pred %n mesecem","pred %n mesecema","pred %n meseci","pred %n meseci"), "last year" => "lansko leto", -"years ago" => "let nazaj" +"years ago" => "let nazaj", +"A valid username must be provided" => "Navedeno mora biti veljavno uporabniško ime", +"A valid password must be provided" => "Navedeno mora biti veljavno geslo" ); $PLURAL_FORMS = "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"; diff --git a/lib/l10n/sq.php b/lib/l10n/sq.php index b22663f76df..e29fa2cee53 100644 --- a/lib/l10n/sq.php +++ b/lib/l10n/sq.php @@ -41,6 +41,8 @@ $TRANSLATIONS = array( "last month" => "muajin e shkuar", "_%n month ago_::_%n months ago_" => array("","%n muaj më parë"), "last year" => "vitin e shkuar", -"years ago" => "vite më parë" +"years ago" => "vite më parë", +"A valid username must be provided" => "Duhet të jepni një emër të vlefshëm përdoruesi", +"A valid password must be provided" => "Duhet të jepni një fjalëkalim te vlefshëm" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/sr.php b/lib/l10n/sr.php index 47a84803683..f9155bfd575 100644 --- a/lib/l10n/sr.php +++ b/lib/l10n/sr.php @@ -28,6 +28,8 @@ $TRANSLATIONS = array( "last month" => "прошлог месеца", "_%n month ago_::_%n months ago_" => array("","",""), "last year" => "прошле године", -"years ago" => "година раније" +"years ago" => "година раније", +"A valid username must be provided" => "Морате унети исправно корисничко име", +"A valid password must be provided" => "Морате унети исправну лозинку" ); $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/lib/l10n/sv.php b/lib/l10n/sv.php index 7053e09624d..d8d47cc9666 100644 --- a/lib/l10n/sv.php +++ b/lib/l10n/sv.php @@ -66,6 +66,8 @@ $TRANSLATIONS = array( "last month" => "förra månaden", "_%n month ago_::_%n months ago_" => array("%n månad sedan","%n månader sedan"), "last year" => "förra året", -"years ago" => "år sedan" +"years ago" => "år sedan", +"A valid username must be provided" => "Ett giltigt användarnamn måste anges", +"A valid password must be provided" => "Ett giltigt lösenord måste anges" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/tr.php b/lib/l10n/tr.php index 80f1ade9950..83dc1e0ac8c 100644 --- a/lib/l10n/tr.php +++ b/lib/l10n/tr.php @@ -66,6 +66,10 @@ $TRANSLATIONS = array( "last month" => "geçen ay", "_%n month ago_::_%n months ago_" => array("","%n ay önce"), "last year" => "geçen yıl", -"years ago" => "yıl önce" +"years ago" => "yıl önce", +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-\"" => "Kullanıcı adında sadece bu karakterlere izin verilmektedir: \"a-z\", \"A-Z\", \"0-9\", ve \"_.@-\"", +"A valid username must be provided" => "Geçerli bir kullanıcı adı mutlaka sağlanmalı", +"A valid password must be provided" => "Geçerli bir parola mutlaka sağlanmalı", +"The username is already being used" => "Bu kullanıcı adı zaten kullanımda" ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/lib/l10n/ug.php b/lib/l10n/ug.php index e2cf38ecc8c..8cfa99732ab 100644 --- a/lib/l10n/ug.php +++ b/lib/l10n/ug.php @@ -14,6 +14,8 @@ $TRANSLATIONS = array( "today" => "بۈگۈن", "yesterday" => "تۈنۈگۈن", "_%n day go_::_%n days ago_" => array(""), -"_%n month ago_::_%n months ago_" => array("") +"_%n month ago_::_%n months ago_" => array(""), +"A valid username must be provided" => "چوقۇم ئىناۋەتلىك ئىشلەتكۈچى ئىسمىدىن بىرنى تەمىنلەش كېرەك", +"A valid password must be provided" => "چوقۇم ئىناۋەتلىك ئىم تەمىنلەش كېرەك" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/uk.php b/lib/l10n/uk.php index 94163f0b6f5..fed6277fdd8 100644 --- a/lib/l10n/uk.php +++ b/lib/l10n/uk.php @@ -43,6 +43,8 @@ $TRANSLATIONS = array( "last month" => "минулого місяця", "_%n month ago_::_%n months ago_" => array("","","%n місяців тому"), "last year" => "минулого року", -"years ago" => "роки тому" +"years ago" => "роки тому", +"A valid username must be provided" => "Потрібно задати вірне ім'я користувача", +"A valid password must be provided" => "Потрібно задати вірний пароль" ); $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/lib/l10n/zh_CN.php b/lib/l10n/zh_CN.php index 684ee17f98e..8fca52f3dbd 100644 --- a/lib/l10n/zh_CN.php +++ b/lib/l10n/zh_CN.php @@ -48,6 +48,8 @@ $TRANSLATIONS = array( "last month" => "上月", "_%n month ago_::_%n months ago_" => array("%n 月前"), "last year" => "去年", -"years ago" => "年前" +"years ago" => "年前", +"A valid username must be provided" => "必须提供合法的用户名", +"A valid password must be provided" => "必须提供合法的密码" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/zh_TW.php b/lib/l10n/zh_TW.php index 1fbae6e2355..83616cf6a42 100644 --- a/lib/l10n/zh_TW.php +++ b/lib/l10n/zh_TW.php @@ -60,6 +60,8 @@ $TRANSLATIONS = array( "last month" => "上個月", "_%n month ago_::_%n months ago_" => array("%n 個月前"), "last year" => "去年", -"years ago" => "幾年前" +"years ago" => "幾年前", +"A valid username must be provided" => "必須提供一個有效的用戶名", +"A valid password must be provided" => "一定要提供一個有效的密碼" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/settings/l10n/ast.php b/settings/l10n/ast.php index df4ed92b1f2..81300ed5636 100644 --- a/settings/l10n/ast.php +++ b/settings/l10n/ast.php @@ -3,6 +3,7 @@ $TRANSLATIONS = array( "Email sent" => "Corréu unviáu", "Encryption" => "Cifráu", "Invalid request" => "Solicitú non válida", +"Error" => "Fallu", "Groups" => "Grupos", "Delete" => "Desaniciar", "More" => "Más", -- GitLab From 763da4258e14c782e9fba2cf522fa266acecf298 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Thu, 10 Apr 2014 20:51:03 +0200 Subject: [PATCH 272/296] fix the middleware registration process in the container --- lib/private/appframework/dependencyinjection/dicontainer.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/private/appframework/dependencyinjection/dicontainer.php b/lib/private/appframework/dependencyinjection/dicontainer.php index 78224ea54c0..beba71052f8 100644 --- a/lib/private/appframework/dependencyinjection/dicontainer.php +++ b/lib/private/appframework/dependencyinjection/dicontainer.php @@ -92,12 +92,11 @@ class DIContainer extends SimpleContainer implements IAppContainer{ return new SecurityMiddleware($app, $c['Request']); }); - $middleWares = $this->middleWares; - $this['MiddlewareDispatcher'] = $this->share(function($c) use ($middleWares) { + $this['MiddlewareDispatcher'] = $this->share(function($c) { $dispatcher = new MiddlewareDispatcher(); $dispatcher->registerMiddleware($c['SecurityMiddleware']); - foreach($middleWares as $middleWare) { + foreach($this->middleWares as $middleWare) { $dispatcher->registerMiddleware($c[$middleWare]); } -- GitLab From 36107e1bad9f696be9ac15141b120c7c30ee4e7f Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Fri, 11 Apr 2014 01:55:15 -0400 Subject: [PATCH 273/296] [tx-robot] updated from transifex --- apps/files_external/l10n/de.php | 5 ++ apps/files_external/l10n/de_DE.php | 5 ++ apps/files_external/l10n/fr.php | 4 ++ apps/files_external/l10n/it.php | 6 +- apps/files_external/l10n/nl.php | 5 ++ apps/files_trashbin/l10n/tr.php | 6 +- apps/user_ldap/l10n/de.php | 2 + apps/user_ldap/l10n/de_DE.php | 2 + apps/user_ldap/l10n/fr.php | 2 + apps/user_ldap/l10n/it.php | 1 + core/l10n/fr.php | 1 + core/l10n/tr.php | 2 +- l10n/de/files_external.po | 16 ++--- l10n/de/user_ldap.po | 12 ++-- l10n/de_DE/files_external.po | 16 ++--- l10n/de_DE/user_ldap.po | 12 ++-- l10n/fr/core.po | 102 ++++++++++++++-------------- l10n/fr/files_external.po | 14 ++-- l10n/fr/lib.po | 8 +-- l10n/fr/user_ldap.po | 12 ++-- l10n/it/core.po | 44 ++++++------ l10n/it/files_external.po | 13 ++-- l10n/it/lib.po | 6 +- l10n/it/user_ldap.po | 8 +-- l10n/nl/files_external.po | 16 ++--- l10n/nl/lib.po | 10 +-- l10n/templates/core.pot | 40 +++++------ 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/tr/core.po | 100 +++++++++++++-------------- l10n/tr/files_trashbin.po | 34 +++++----- lib/l10n/fr.php | 1 + lib/l10n/nl.php | 4 +- 42 files changed, 281 insertions(+), 250 deletions(-) diff --git a/apps/files_external/l10n/de.php b/apps/files_external/l10n/de.php index 1d5a4f626b0..25c7ffb3af1 100644 --- a/apps/files_external/l10n/de.php +++ b/apps/files_external/l10n/de.php @@ -6,6 +6,11 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Bitte trage einen gültigen Dropbox-App-Key mit Secret ein.", "Error configuring Google Drive storage" => "Fehler beim Einrichten von Google Drive", "Saved" => "Gespeichert", +"Note: " => "Hinweis: ", +" and " => "und", +"Note: The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Hinweis: Die cURL-Unterstützung von PHP ist nicht aktiviert oder installiert. Das Hinzufügen von %s ist nicht möglich. Bitte wende Dich zur Installation an Deinen Systemadministrator.", +"Note: The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Hinweis: Die FTP Unterstützung von PHP ist nicht aktiviert oder installiert. Das Hinzufügen von %s ist nicht möglich. Bitte wende Dich sich zur Installation an Deinen Systemadministrator.", +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Hinweis: \"%s\" ist nicht installiert. Das Hinzufügen von %s ist nicht möglich. Bitte wende Dich sich zur Installation an Deinen Systemadministrator.", "External Storage" => "Externer Speicher", "Folder name" => "Ordnername", "External storage" => "Externer Speicher", diff --git a/apps/files_external/l10n/de_DE.php b/apps/files_external/l10n/de_DE.php index c2534f3dd8a..186aa5a299a 100644 --- a/apps/files_external/l10n/de_DE.php +++ b/apps/files_external/l10n/de_DE.php @@ -6,6 +6,11 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Bitte tragen Sie einen gültigen Dropbox-App-Key mit Secret ein.", "Error configuring Google Drive storage" => "Fehler beim Einrichten von Google Drive", "Saved" => "Gespeichert", +"Note: " => "Hinweis: ", +" and " => "und", +"Note: The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Hinweis: Die cURL-Unterstützung von PHP ist nicht aktiviert oder installiert. Das Hinzufügen von %s ist nicht möglich. Bitte wenden Sie sich zur Installation an Ihren Systemadministrator.", +"Note: The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Hinweis: Die FTP Unterstützung von PHP ist nicht aktiviert oder installiert. Das Hinzufügen von %s ist nicht möglich. Bitte wenden Sie sich zur Installation an Ihren Systemadministrator.", +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Hinweis: \"%s\" ist nicht installiert. Das Hinzufügen von %s ist nicht möglich. Bitte wenden Sie sich zur Installation an Ihren Systemadministrator.", "External Storage" => "Externer Speicher", "Folder name" => "Ordnername", "External storage" => "Externer Speicher", diff --git a/apps/files_external/l10n/fr.php b/apps/files_external/l10n/fr.php index dc4c62522c9..8ff19697182 100644 --- a/apps/files_external/l10n/fr.php +++ b/apps/files_external/l10n/fr.php @@ -6,7 +6,11 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Veuillez fournir une clé d'application (app key) ainsi qu'un mot de passe valides.", "Error configuring Google Drive storage" => "Erreur lors de la configuration du support de stockage Google Drive", "Saved" => "Sauvegarder", +"Note: " => "Attention :", " and " => "et", +"Note: The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Attention : Le support de cURL de PHP n'est pas activé ou installé. Le montage de %s n'est pas possible. Contactez votre administrateur système pour l'installer.", +"Note: The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Attention : Le support FTP de PHP n'est pas activé ou installé. Le montage de %s n'est pas possible. Contactez votre administrateur système pour l'installer.", +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Attention : \"%s\" n'est pas installé. Le montage de %s n'est pas possible. Contactez votre administrateur système pour l'installer.", "External Storage" => "Stockage externe", "Folder name" => "Nom du dossier", "External storage" => "Stockage externe", diff --git a/apps/files_external/l10n/it.php b/apps/files_external/l10n/it.php index 0c4109ae567..f3a6f9af129 100644 --- a/apps/files_external/l10n/it.php +++ b/apps/files_external/l10n/it.php @@ -8,9 +8,9 @@ $TRANSLATIONS = array( "Saved" => "Salvato", "Note: " => "Nota:", " and " => "e", -"Note: The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Nota:Il support a cURL non è abilitato o installato in PHP. Impossibile montare %s. Chiedi al tuo amministratore di sistema di installarlo.", -"Note: The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Nota:Il support a FTP non è abilitato o installato in PHP. Impossibile montare %s. Chiedi al tuo amministratore di sistema di installarlo.", -"Note: \"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Nota:\"%s\" non è installato. Impossibile montare %s. Chiedi al tuo amministratore di sistema di installarlo.", +"Note: The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Nota: il supporto a cURL di PHP non è abilitato o installato. Impossibile montare %s. Chiedi al tuo amministratore di sistema di installarlo.", +"Note: The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Nota: il supporto a FTP in PHP non è abilitato o installato. Impossibile montare %s. Chiedi al tuo amministratore di sistema di installarlo.", +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Nota: \"%s\" non è installato. Impossibile montare %s. Chiedi al tuo amministratore di sistema di installarlo.", "External Storage" => "Archiviazione esterna", "Folder name" => "Nome della cartella", "External storage" => "Archiviazione esterna", diff --git a/apps/files_external/l10n/nl.php b/apps/files_external/l10n/nl.php index 0226e454f9a..c055be50f87 100644 --- a/apps/files_external/l10n/nl.php +++ b/apps/files_external/l10n/nl.php @@ -6,6 +6,11 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Geef een geldige Dropbox key en secret.", "Error configuring Google Drive storage" => "Fout tijdens het configureren van Google Drive opslag", "Saved" => "Bewaard", +"Note: " => "Let op: ", +" and " => "en", +"Note: The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Let op: Curl ondersteuning in PHP is niet geactiveerd of geïnstalleerd. Mounten van %s is niet mogelijk. Vraag uw systeembeheerder dit te installeren.", +"Note: The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Let op: FTP ondersteuning in PHP is niet geactiveerd of geïnstalleerd. Mounten van %s is niet mogelijk. Vraag uw beheerder dit te installeren.", +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Let op: \"%s\" is niet geïnstalleerd. Mounten van %s is niet mogelijk. Vraag uw beheerder om dit te installeren.", "External Storage" => "Externe opslag", "Folder name" => "Mapnaam", "External storage" => "Externe opslag", diff --git a/apps/files_trashbin/l10n/tr.php b/apps/files_trashbin/l10n/tr.php index c1234cdfb0c..ff4227e38c7 100644 --- a/apps/files_trashbin/l10n/tr.php +++ b/apps/files_trashbin/l10n/tr.php @@ -1,15 +1,15 @@ "%s alıcı olarak silinemedi", -"Couldn't restore %s" => "%s eri yüklenemedi", +"Couldn't restore %s" => "%s geri yüklenemedi", "Deleted files" => "Silinmiş dosyalar", "Error" => "Hata", +"Deleted Files" => "Silinen Dosyalar", "restored" => "geri yüklendi", "Nothing in here. Your trash bin is empty!" => "Burada hiçbir şey yok. Çöp kutunuz tamamen boş!", "Name" => "İsim", "Restore" => "Geri yükle", "Deleted" => "Silindi", -"Delete" => "Sil", -"Deleted Files" => "Silinen Dosyalar" +"Delete" => "Sil" ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/user_ldap/l10n/de.php b/apps/user_ldap/l10n/de.php index 8dad9b34539..fd6bde8a97e 100644 --- a/apps/user_ldap/l10n/de.php +++ b/apps/user_ldap/l10n/de.php @@ -90,6 +90,8 @@ $TRANSLATIONS = array( "Group-Member association" => "Assoziation zwischen Gruppe und Benutzer", "Nested Groups" => "Eingebundene Gruppen", "When switched on, groups that contain groups are supported. (Only works if the group member attribute contains DNs.)" => "Wenn aktiviert, werden Gruppen, die Gruppen enthalten, unterstützt. (Funktioniert nur, wenn das Merkmal des Gruppenmitgliedes den Domain-Namen enthält.)", +"Paging chunksize" => "Seitenstücke (Paging chunksize)", +"Chunksize used for paged LDAP searches that may return bulky results like user or group enumeration. (Setting it 0 disables paged LDAP searches in those situations.)" => "Die Größe der Seitenstücke (Chunksize) wird für seitenbezogene LDAP-Suchen verwendet die sehr viele Ergebnisse z.B. Nutzer- und Gruppenaufzählungen liefern. (Die Einstellung 0 deaktiviert das seitenbezogene LDAP-Suchen in diesen Situationen)", "Special Attributes" => "Spezielle Eigenschaften", "Quota Field" => "Kontingent Feld", "Quota Default" => "Standard Kontingent", diff --git a/apps/user_ldap/l10n/de_DE.php b/apps/user_ldap/l10n/de_DE.php index 6e6e29ea3db..8c6ba0f3130 100644 --- a/apps/user_ldap/l10n/de_DE.php +++ b/apps/user_ldap/l10n/de_DE.php @@ -90,6 +90,8 @@ $TRANSLATIONS = array( "Group-Member association" => "Assoziation zwischen Gruppe und Benutzer", "Nested Groups" => "Eingebundene Gruppen", "When switched on, groups that contain groups are supported. (Only works if the group member attribute contains DNs.)" => "Wenn aktiviert, werden Gruppen, die Gruppen enthalten, unterstützt. (Funktioniert nur, wenn das Merkmal des Gruppenmitgliedes den Domain-Namen enthält.)", +"Paging chunksize" => "Seitenstücke (Paging chunksize)", +"Chunksize used for paged LDAP searches that may return bulky results like user or group enumeration. (Setting it 0 disables paged LDAP searches in those situations.)" => "Die Größe der Seitenstücke (Chunksize) wird für seitenbezogene LDAP-Suchen verwendet die sehr viele Ergebnisse z.B. Nutzer- und Gruppenaufzählungen liefern. (Die Einstellung 0 deaktiviert das seitenbezogene LDAP-Suchen in diesen Situationen)", "Special Attributes" => "Spezielle Eigenschaften", "Quota Field" => "Kontingent-Feld", "Quota Default" => "Standard-Kontingent", diff --git a/apps/user_ldap/l10n/fr.php b/apps/user_ldap/l10n/fr.php index dbcaadfc2a7..39e7d2ae429 100644 --- a/apps/user_ldap/l10n/fr.php +++ b/apps/user_ldap/l10n/fr.php @@ -90,6 +90,8 @@ $TRANSLATIONS = array( "Group-Member association" => "Association groupe-membre", "Nested Groups" => "Groupes imbriqués", "When switched on, groups that contain groups are supported. (Only works if the group member attribute contains DNs.)" => "Si activé, les groupes contenant d'autres groupes sont supportés (fonctionne uniquement si l'attribut membre du groupe contient des DNs).", +"Paging chunksize" => "Dimensionnement des paginations", +"Chunksize used for paged LDAP searches that may return bulky results like user or group enumeration. (Setting it 0 disables paged LDAP searches in those situations.)" => "La taille d'une part (chunksize) est utilisée pour les recherches paginées de LDAP qui peuvent retourner des résultats par lots comme une énumération d'utilisateurs ou groupes. (Configurer à 0 pour désactiver les recherches paginées de LDAP.)", "Special Attributes" => "Attributs spéciaux", "Quota Field" => "Champ du quota", "Quota Default" => "Quota par défaut", diff --git a/apps/user_ldap/l10n/it.php b/apps/user_ldap/l10n/it.php index ceb29590627..de540f22821 100644 --- a/apps/user_ldap/l10n/it.php +++ b/apps/user_ldap/l10n/it.php @@ -91,6 +91,7 @@ $TRANSLATIONS = array( "Nested Groups" => "Gruppi nidificati", "When switched on, groups that contain groups are supported. (Only works if the group member attribute contains DNs.)" => "Quando è attivato, i gruppi che contengono altri gruppi sono supportati. (Funziona solo se l'attributo del gruppo membro contiene DN.)", "Paging chunksize" => "Dimensione del blocco di paginazione", +"Chunksize used for paged LDAP searches that may return bulky results like user or group enumeration. (Setting it 0 disables paged LDAP searches in those situations.)" => "Dimensione del blocco per le ricerche LDAP paginate che potrebbero restituire risultati pesanti come l'enumerazione di utenti o gruppi.(L'impostazione a 0 disabilita le ricerche LDAP paginate in questi casi.)", "Special Attributes" => "Attributi speciali", "Quota Field" => "Campo Quota", "Quota Default" => "Quota predefinita", diff --git a/core/l10n/fr.php b/core/l10n/fr.php index 2475eddee8a..623f129c860 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -51,6 +51,7 @@ $TRANSLATIONS = array( "_{count} file conflict_::_{count} file conflicts_" => array("{count} fichier en conflit","{count} fichiers en conflit"), "One file conflict" => "Un conflit de fichier", "New Files" => "Nouveaux fichiers", +"Already existing files" => "Fichiers déjà existants", "Which files do you want to keep?" => "Quels fichiers désirez-vous garder ?", "If you select both versions, the copied file will have a number added to its name." => "Si vous sélectionnez les deux versions, un nombre sera ajouté au nom du fichier copié.", "Cancel" => "Annuler", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index 7e75cdf4b01..8f9c60c157b 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -42,7 +42,7 @@ $TRANSLATIONS = array( "months ago" => "ay önce", "last year" => "geçen yıl", "years ago" => "yıl önce", -"Choose" => "seç", +"Choose" => "Seç", "Error loading file picker template: {error}" => "Dosya seçici şablonu yüklenirken hata: {error}", "Yes" => "Evet", "No" => "Hayır", diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index f8273641768..895dc57a819 100644 --- a/l10n/de/files_external.po +++ b/l10n/de/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-11 01:54-0400\n" +"PO-Revision-Date: 2014-04-10 19:00+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" @@ -46,32 +46,32 @@ msgstr "Gespeichert" #: lib/config.php:592 msgid "Note: " -msgstr "" +msgstr "Hinweis: " #: lib/config.php:602 msgid " and " -msgstr "" +msgstr "und" #: lib/config.php:624 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Hinweis: Die cURL-Unterstützung von PHP ist nicht aktiviert oder installiert. Das Hinzufügen von %s ist nicht möglich. Bitte wende Dich zur Installation an Deinen Systemadministrator." #: lib/config.php:626 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Hinweis: Die FTP Unterstützung von PHP ist nicht aktiviert oder installiert. Das Hinzufügen von %s ist nicht möglich. Bitte wende Dich sich zur Installation an Deinen Systemadministrator." #: lib/config.php:628 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" " ask your system administrator to install it." -msgstr "" +msgstr "Hinweis: \"%s\" ist nicht installiert. Das Hinzufügen von %s ist nicht möglich. Bitte wende Dich sich zur Installation an Deinen Systemadministrator." #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index 91044ece8b3..527d5f8dce6 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-11 01:54-0400\n" +"PO-Revision-Date: 2014-04-10 18:40+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" @@ -148,7 +148,7 @@ msgstr[1] "%s Benutzer gefunden" msgid "Invalid Host" msgstr "Ungültiger Host" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "Konnte die gewünschte Funktion nicht finden" @@ -425,14 +425,14 @@ msgstr "Wenn aktiviert, werden Gruppen, die Gruppen enthalten, unterstützt. (Fu #: templates/settings.php:40 msgid "Paging chunksize" -msgstr "" +msgstr "Seitenstücke (Paging chunksize)" #: templates/settings.php:40 msgid "" "Chunksize used for paged LDAP searches that may return bulky results like " "user or group enumeration. (Setting it 0 disables paged LDAP searches in " "those situations.)" -msgstr "" +msgstr "Die Größe der Seitenstücke (Chunksize) wird für seitenbezogene LDAP-Suchen verwendet die sehr viele Ergebnisse z.B. Nutzer- und Gruppenaufzählungen liefern. (Die Einstellung 0 deaktiviert das seitenbezogene LDAP-Suchen in diesen Situationen)" #: templates/settings.php:42 msgid "Special Attributes" diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index d18946d9c29..214a786b82f 100644 --- a/l10n/de_DE/files_external.po +++ b/l10n/de_DE/files_external.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-11 01:54-0400\n" +"PO-Revision-Date: 2014-04-10 18:50+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" @@ -47,32 +47,32 @@ msgstr "Gespeichert" #: lib/config.php:592 msgid "Note: " -msgstr "" +msgstr "Hinweis: " #: lib/config.php:602 msgid " and " -msgstr "" +msgstr "und" #: lib/config.php:624 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Hinweis: Die cURL-Unterstützung von PHP ist nicht aktiviert oder installiert. Das Hinzufügen von %s ist nicht möglich. Bitte wenden Sie sich zur Installation an Ihren Systemadministrator." #: lib/config.php:626 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Hinweis: Die FTP Unterstützung von PHP ist nicht aktiviert oder installiert. Das Hinzufügen von %s ist nicht möglich. Bitte wenden Sie sich zur Installation an Ihren Systemadministrator." #: lib/config.php:628 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" " ask your system administrator to install it." -msgstr "" +msgstr "Hinweis: \"%s\" ist nicht installiert. Das Hinzufügen von %s ist nicht möglich. Bitte wenden Sie sich zur Installation an Ihren Systemadministrator." #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index 07050c277c5..cfcb1ae0423 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-11 01:54-0400\n" +"PO-Revision-Date: 2014-04-10 18:40+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" @@ -150,7 +150,7 @@ msgstr[1] "%s Benutzer gefunden" msgid "Invalid Host" msgstr "Ungültiger Host" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "Konnte die gewünschte Funktion nicht finden" @@ -427,14 +427,14 @@ msgstr "Wenn aktiviert, werden Gruppen, die Gruppen enthalten, unterstützt. (Fu #: templates/settings.php:40 msgid "Paging chunksize" -msgstr "" +msgstr "Seitenstücke (Paging chunksize)" #: templates/settings.php:40 msgid "" "Chunksize used for paged LDAP searches that may return bulky results like " "user or group enumeration. (Setting it 0 disables paged LDAP searches in " "those situations.)" -msgstr "" +msgstr "Die Größe der Seitenstücke (Chunksize) wird für seitenbezogene LDAP-Suchen verwendet die sehr viele Ergebnisse z.B. Nutzer- und Gruppenaufzählungen liefern. (Die Einstellung 0 deaktiviert das seitenbezogene LDAP-Suchen in diesen Situationen)" #: templates/settings.php:42 msgid "Special Attributes" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index db845b7f25d..c36deca9604 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 06:10+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-11 01:54-0400\n" +"PO-Revision-Date: 2014-04-10 11:40+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -150,127 +150,127 @@ msgstr "Paramètres" msgid "Saving..." msgstr "Enregistrement..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "il y a quelques secondes" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "il y a %n minute" msgstr[1] "il y a %n minutes" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Il y a %n heure" msgstr[1] "Il y a %n heures" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "aujourd'hui" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "hier" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "il y a %n jour" msgstr[1] "il y a %n jours" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "le mois dernier" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Il y a %n mois" msgstr[1] "Il y a %n mois" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "il y a plusieurs mois" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "l'année dernière" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "il y a plusieurs années" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Choisir" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "Erreur de chargement du modèle de sélectionneur de fichiers : {error}" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Oui" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "Non" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "Ok" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "Erreur de chargement du modèle de message : {error}" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "{count} fichier en conflit" msgstr[1] "{count} fichiers en conflit" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "Un conflit de fichier" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "Nouveaux fichiers" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" -msgstr "" +msgstr "Fichiers déjà existants" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "Quels fichiers désirez-vous garder ?" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Si vous sélectionnez les deux versions, un nombre sera ajouté au nom du fichier copié." -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Annuler" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "Poursuivre" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "(tous sélectionnés)" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:457 msgid "({count} selected)" msgstr "({count} sélectionnés)" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:465 msgid "Error loading file exists template" msgstr "Erreur de chargement du modèle de fichier existant" @@ -302,12 +302,12 @@ msgstr "Partagé" msgid "Share" msgstr "Partager" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Erreur" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Erreur lors de la mise en partage" @@ -371,71 +371,71 @@ msgstr "Partager via e-mail :" msgid "No people found" msgstr "Aucun utilisateur trouvé" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "groupe" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "Le repartage n'est pas autorisé" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "Partagé dans {item} avec {user}" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Ne plus partager" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "Notifier par email" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "édition autorisée" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "contrôle des accès" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "créer" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "mettre à jour" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "supprimer" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "partager" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Protégé par un mot de passe" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "Une erreur est survenue pendant la suppression de la date d'expiration" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "Erreur lors de la spécification de la date d'expiration" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "En cours d'envoi ..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "Email envoyé" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "Attention" diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index 500cc45f235..a7cb6164419 100644 --- a/l10n/fr/files_external.po +++ b/l10n/fr/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 12:20+0000\n" -"Last-Translator: timelord \n" +"POT-Creation-Date: 2014-04-11 01:54-0400\n" +"PO-Revision-Date: 2014-04-10 12:00+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -45,7 +45,7 @@ msgstr "Sauvegarder" #: lib/config.php:592 msgid "Note: " -msgstr "" +msgstr "Attention :" #: lib/config.php:602 msgid " and " @@ -56,21 +56,21 @@ msgstr "et" msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Attention : Le support de cURL de PHP n'est pas activé ou installé. Le montage de %s n'est pas possible. Contactez votre administrateur système pour l'installer." #: lib/config.php:626 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Attention : Le support FTP de PHP n'est pas activé ou installé. Le montage de %s n'est pas possible. Contactez votre administrateur système pour l'installer." #: lib/config.php:628 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" " ask your system administrator to install it." -msgstr "" +msgstr "Attention : \"%s\" n'est pas installé. Le montage de %s n'est pas possible. Contactez votre administrateur système pour l'installer." #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index 108ab1eab7d..f556076b575 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-11 01:54-0400\n" +"PO-Revision-Date: 2014-04-10 11:50+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -345,7 +345,7 @@ msgstr "il y a plusieurs années" msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" -msgstr "" +msgstr "Seuls les caractères suivants sont autorisés dans un nom d'utilisateur : \"a-z\", \"A-Z\", \"0-9\", et \"_.@-\"" #: private/user/manager.php:251 msgid "A valid username must be provided" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index cde39796c94..fb2c06ad2d8 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-11 01:54-0400\n" +"PO-Revision-Date: 2014-04-10 12:40+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -147,7 +147,7 @@ msgstr[1] "%s utilisateurs trouvés" msgid "Invalid Host" msgstr "Hôte invalide" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "Impossible de trouver la fonction souhaitée" @@ -424,14 +424,14 @@ msgstr "Si activé, les groupes contenant d'autres groupes sont supportés (fonc #: templates/settings.php:40 msgid "Paging chunksize" -msgstr "" +msgstr "Dimensionnement des paginations" #: templates/settings.php:40 msgid "" "Chunksize used for paged LDAP searches that may return bulky results like " "user or group enumeration. (Setting it 0 disables paged LDAP searches in " "those situations.)" -msgstr "" +msgstr "La taille d'une part (chunksize) est utilisée pour les recherches paginées de LDAP qui peuvent retourner des résultats par lots comme une énumération d'utilisateurs ou groupes. (Configurer à 0 pour désactiver les recherches paginées de LDAP.)" #: templates/settings.php:42 msgid "Special Attributes" diff --git a/l10n/it/core.po b/l10n/it/core.po index cd474e5344c..fa750f66180 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 23:10+0000\n" -"Last-Translator: idetao \n" +"POT-Creation-Date: 2014-04-11 01:54-0400\n" +"PO-Revision-Date: 2014-04-10 22:35+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" @@ -298,12 +298,12 @@ msgstr "Condivisi" msgid "Share" msgstr "Condividi" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Errore" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Errore durante la condivisione" @@ -367,71 +367,71 @@ msgstr "Condividi tramite email:" msgid "No people found" msgstr "Non sono state trovate altre persone" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "gruppo" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "La ri-condivisione non è consentita" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "Condiviso in {item} con {user}" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Rimuovi condivisione" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "notifica tramite email" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "può modificare" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "controllo d'accesso" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "creare" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "aggiornare" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "elimina" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "condividi" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Protetta da password" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "Errore durante la rimozione della data di scadenza" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "Errore durante l'impostazione della data di scadenza" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "Invio in corso..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "Messaggio inviato" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "Avviso" diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index b4042ccce21..652c7841ce7 100644 --- a/l10n/it/files_external.po +++ b/l10n/it/files_external.po @@ -6,13 +6,14 @@ # Jessica Di Maria , 2014 # idetao , 2014 # Paolo Velati , 2014 +# Vincenzo Reale , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 22:50+0000\n" -"Last-Translator: idetao \n" +"POT-Creation-Date: 2014-04-11 01:54-0400\n" +"PO-Revision-Date: 2014-04-10 22: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" @@ -57,21 +58,21 @@ msgstr "e" msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." -msgstr "Nota:Il support a cURL non è abilitato o installato in PHP. Impossibile montare %s. Chiedi al tuo amministratore di sistema di installarlo." +msgstr "Nota: il supporto a cURL di PHP non è abilitato o installato. Impossibile montare %s. Chiedi al tuo amministratore di sistema di installarlo." #: lib/config.php:626 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." -msgstr "Nota:Il support a FTP non è abilitato o installato in PHP. Impossibile montare %s. Chiedi al tuo amministratore di sistema di installarlo." +msgstr "Nota: il supporto a FTP in PHP non è abilitato o installato. Impossibile montare %s. Chiedi al tuo amministratore di sistema di installarlo." #: lib/config.php:628 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" " ask your system administrator to install it." -msgstr "Nota:\"%s\" non è installato. Impossibile montare %s. Chiedi al tuo amministratore di sistema di installarlo." +msgstr "Nota: \"%s\" non è installato. Impossibile montare %s. Chiedi al tuo amministratore di sistema di installarlo." #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index 409d389579a..7de4b24e4d4 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 23:00+0000\n" -"Last-Translator: idetao \n" +"POT-Creation-Date: 2014-04-11 01:54-0400\n" +"PO-Revision-Date: 2014-04-10 22:37+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" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index b8e77c2a3e2..b7958a71cae 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 22:50+0000\n" -"Last-Translator: idetao \n" +"POT-Creation-Date: 2014-04-11 01:54-0400\n" +"PO-Revision-Date: 2014-04-10 22:50+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" @@ -431,7 +431,7 @@ msgid "" "Chunksize used for paged LDAP searches that may return bulky results like " "user or group enumeration. (Setting it 0 disables paged LDAP searches in " "those situations.)" -msgstr "" +msgstr "Dimensione del blocco per le ricerche LDAP paginate che potrebbero restituire risultati pesanti come l'enumerazione di utenti o gruppi.(L'impostazione a 0 disabilita le ricerche LDAP paginate in questi casi.)" #: templates/settings.php:42 msgid "Special Attributes" diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index 8d2871bf582..92ecf69764f 100644 --- a/l10n/nl/files_external.po +++ b/l10n/nl/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-11 01:54-0400\n" +"PO-Revision-Date: 2014-04-10 06:50+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -44,32 +44,32 @@ msgstr "Bewaard" #: lib/config.php:592 msgid "Note: " -msgstr "" +msgstr "Let op: " #: lib/config.php:602 msgid " and " -msgstr "" +msgstr "en" #: lib/config.php:624 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Let op: Curl ondersteuning in PHP is niet geactiveerd of geïnstalleerd. Mounten van %s is niet mogelijk. Vraag uw systeembeheerder dit te installeren." #: lib/config.php:626 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Let op: FTP ondersteuning in PHP is niet geactiveerd of geïnstalleerd. Mounten van %s is niet mogelijk. Vraag uw beheerder dit te installeren." #: lib/config.php:628 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" " ask your system administrator to install it." -msgstr "" +msgstr "Let op: \"%s\" is niet geïnstalleerd. Mounten van %s is niet mogelijk. Vraag uw beheerder om dit te installeren." #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index a727e37a2eb..35171905f80 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-11 01:54-0400\n" +"PO-Revision-Date: 2014-04-10 06:50+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -344,7 +344,7 @@ msgstr "jaar geleden" msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" -msgstr "" +msgstr "Alleen de volgende tekens zijn toegestaan in een gebruikersnaam: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-\"" #: private/user/manager.php:251 msgid "A valid username must be provided" @@ -356,4 +356,4 @@ msgstr "Er moet een geldig wachtwoord worden opgegeven" #: private/user/manager.php:260 msgid "The username is already being used" -msgstr "" +msgstr "De gebruikersnaam bestaat al" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index f69b4b5d432..5c36d44feb1 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: 2014-04-10 01:54-0400\n" +"POT-Creation-Date: 2014-04-11 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -295,12 +295,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "" @@ -364,71 +364,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index a6d07cdc509..97d8aaf0ab0 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: 2014-04-10 01:54-0400\n" +"POT-Creation-Date: 2014-04-11 01:54-0400\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 76d141a0859..09f5900a03a 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: 2014-04-10 01:54-0400\n" +"POT-Creation-Date: 2014-04-11 01:54-0400\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 5be8bf356f3..446829a7066 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: 2014-04-10 01:54-0400\n" +"POT-Creation-Date: 2014-04-11 01:54-0400\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 60582d89f51..335843470ba 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: 2014-04-10 01:54-0400\n" +"POT-Creation-Date: 2014-04-11 01:54-0400\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 4e8d76a5465..9800a9ad3f7 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: 2014-04-10 01:54-0400\n" +"POT-Creation-Date: 2014-04-11 01:54-0400\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 1a27053a19a..eca1e25e0df 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: 2014-04-10 01:54-0400\n" +"POT-Creation-Date: 2014-04-11 01:54-0400\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 ad065b90cad..df8dcaa8041 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: 2014-04-10 01:54-0400\n" +"POT-Creation-Date: 2014-04-11 01:54-0400\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 c92cf519b8c..c7c39e54af5 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: 2014-04-10 01:54-0400\n" +"POT-Creation-Date: 2014-04-11 01:54-0400\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 fb3582a4558..9095c16f9f7 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: 2014-04-10 01:54-0400\n" +"POT-Creation-Date: 2014-04-11 01:54-0400\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 88cd14c529d..9418a90de14 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: 2014-04-10 01:54-0400\n" +"POT-Creation-Date: 2014-04-11 01:54-0400\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 47794841273..e858ef7740c 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: 2014-04-10 01:54-0400\n" +"POT-Creation-Date: 2014-04-11 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 4a6ae0d299f..cc1c42a783f 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 16:21+0000\n" +"POT-Creation-Date: 2014-04-11 01:54-0400\n" +"PO-Revision-Date: 2014-04-11 00: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" @@ -146,127 +146,127 @@ msgstr "Ayarlar" msgid "Saving..." msgstr "Kaydediliyor..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "saniyeler önce" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n dakika önce" msgstr[1] "%n dakika önce" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n saat önce" msgstr[1] "%n saat önce" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "bugün" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "dün" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n gün önce" msgstr[1] "%n gün önce" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "geçen ay" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n ay önce" msgstr[1] "%n ay önce" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "ay önce" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "geçen yıl" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "yıl önce" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" -msgstr "seç" +msgstr "Seç" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "Dosya seçici şablonu yüklenirken hata: {error}" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Evet" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "Hayır" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "Tamam" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "İleti şablonu yüklenirken hata: {error}" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "{count} dosya çakışması" msgstr[1] "{count} dosya çakışması" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "Bir dosya çakışması" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "Yeni Dosyalar" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "Zaten mevcut olan dosyalar" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "Hangi dosyaları saklamak istiyorsunuz?" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "İki sürümü de seçerseniz, kopyalanan dosyanın ismine bir sayı ilave edilecektir." -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "İptal" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "Devam et" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "(tümü seçildi)" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:457 msgid "({count} selected)" msgstr "({count} seçildi)" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:465 msgid "Error loading file exists template" msgstr "Dosya mevcut şablonu yüklenirken hata" @@ -298,12 +298,12 @@ msgstr "Paylaşılan" msgid "Share" msgstr "Paylaş" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Hata" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Paylaşım sırasında hata" @@ -367,71 +367,71 @@ msgstr "E-posta ile paylaş" msgid "No people found" msgstr "Kişi bulunamadı" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "grup" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "Tekrar paylaşmaya izin verilmiyor" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "{item} içinde {user} ile paylaşılanlar" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Paylaşılmayan" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "e-posta ile bildir" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "düzenleyebilir" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "erişim kontrolü" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "oluştur" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "güncelle" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "sil" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "paylaş" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Parola korumalı" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "Geçerlilik tarihi tanımlama kaldırma hatası" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "Geçerlilik tarihi tanımlama hatası" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "Gönderiliyor..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "E-posta gönderildi" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "Uyarı" diff --git a/l10n/tr/files_trashbin.po b/l10n/tr/files_trashbin.po index 7ac32596ae6..d4f9948df31 100644 --- a/l10n/tr/files_trashbin.po +++ b/l10n/tr/files_trashbin.po @@ -4,14 +4,14 @@ # # Translators: # tridinebandim, 2013 -# volkangezer , 2013 +# volkangezer , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-11 01:54-0400\n" +"PO-Revision-Date: 2014-04-10 16:50+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" @@ -27,40 +27,40 @@ msgstr "%s alıcı olarak silinemedi" #: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" -msgstr "%s eri yüklenemedi" +msgstr "%s geri yüklenemedi" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "Silinmiş dosyalar" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Hata" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "Silinen Dosyalar" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "geri yüklendi" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "Burada hiçbir şey yok. Çöp kutunuz tamamen boş!" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "İsim" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "Geri yükle" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "Silindi" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Sil" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "Silinen Dosyalar" diff --git a/lib/l10n/fr.php b/lib/l10n/fr.php index 52cbfb85b40..b13970c610d 100644 --- a/lib/l10n/fr.php +++ b/lib/l10n/fr.php @@ -67,6 +67,7 @@ $TRANSLATIONS = array( "_%n month ago_::_%n months ago_" => array("","Il y a %n mois"), "last year" => "l'année dernière", "years ago" => "il y a plusieurs années", +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-\"" => "Seuls les caractères suivants sont autorisés dans un nom d'utilisateur : \"a-z\", \"A-Z\", \"0-9\", et \"_.@-\"", "A valid username must be provided" => "Un nom d'utilisateur valide doit être saisi", "A valid password must be provided" => "Un mot de passe valide doit être saisi", "The username is already being used" => "Le nom d'utilisateur est déjà utilisé" diff --git a/lib/l10n/nl.php b/lib/l10n/nl.php index c7a1609a770..c43703c504e 100644 --- a/lib/l10n/nl.php +++ b/lib/l10n/nl.php @@ -67,7 +67,9 @@ $TRANSLATIONS = array( "_%n month ago_::_%n months ago_" => array("%n maand geleden","%n maanden geleden"), "last year" => "vorig jaar", "years ago" => "jaar geleden", +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-\"" => "Alleen de volgende tekens zijn toegestaan in een gebruikersnaam: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-\"", "A valid username must be provided" => "Er moet een geldige gebruikersnaam worden opgegeven", -"A valid password must be provided" => "Er moet een geldig wachtwoord worden opgegeven" +"A valid password must be provided" => "Er moet een geldig wachtwoord worden opgegeven", +"The username is already being used" => "De gebruikersnaam bestaat al" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; -- GitLab From d67cba973e7037a7c9f48cc3aceec9eff26b4393 Mon Sep 17 00:00:00 2001 From: Volkan Gezer Date: Fri, 11 Apr 2014 15:23:43 +0200 Subject: [PATCH 274/296] Typo fix. --- apps/user_ldap/templates/settings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/user_ldap/templates/settings.php b/apps/user_ldap/templates/settings.php index 32cf44a56b9..0a111225a70 100644 --- a/apps/user_ldap/templates/settings.php +++ b/apps/user_ldap/templates/settings.php @@ -23,7 +23,7 @@

      -

      >

      +

      >


      -- GitLab From e92fe47d2af67f844584da2d9e802f77815d6aa4 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Fri, 11 Apr 2014 15:25:40 +0200 Subject: [PATCH 275/296] Remove annoying karma 404 warnings for images Karma now serves images from core to avoid polluting the logs with a lot of 404 warnings. This also makes it easier to read the test errors during development. --- tests/karma.config.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/karma.config.js b/tests/karma.config.js index ed9836ed4c3..338e3f868e9 100644 --- a/tests/karma.config.js +++ b/tests/karma.config.js @@ -121,6 +121,9 @@ module.exports = function(config) { files.push('apps/' + appsToTest[i] + '/tests/js/*.js'); } + // serve images to avoid warnings + files.push({pattern: 'core/img/**/*', watched: false, included: false, served: true}); + config.set({ // base path, that will be used to resolve files and exclude @@ -137,6 +140,11 @@ module.exports = function(config) { ], + proxies: { + // prevent warnings for images + '/context.html//core/img/': 'http://localhost:9876/base/core/img/' + }, + // test results reporter to use // possible values: 'dots', 'progress', 'junit', 'growl', 'coverage' reporters: ['dots', 'junit', 'coverage'], -- GitLab From 77ecfdd1a42811a1239b29c18b21768d2a5a3ae0 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Fri, 11 Apr 2014 19:42:15 +0200 Subject: [PATCH 276/296] Only encode dangerous dangerous characters There is no need to encode all characters into HTML entities, only potential dangerous characters as &, ", ', < and > should get encoded. This may fix issues like https://github.com/owncloud/calendar/pull/394 --- lib/private/util.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/util.php b/lib/private/util.php index 731b7c97503..a744644b39c 100755 --- a/lib/private/util.php +++ b/lib/private/util.php @@ -805,7 +805,7 @@ class OC_Util { array_walk_recursive($value, 'OC_Util::sanitizeHTML'); } else { //Specify encoding for PHP<5.4 - $value = htmlentities((string)$value, ENT_QUOTES, 'UTF-8'); + $value = htmlspecialchars((string)$value, ENT_QUOTES, 'UTF-8'); } return $value; } -- GitLab From 4af72a076d9796907bf48ee34de1ae29528b55df Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Fri, 11 Apr 2014 20:50:49 +0200 Subject: [PATCH 277/296] use references for middleware to fix problems on 5.3 --- lib/private/appframework/dependencyinjection/dicontainer.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/private/appframework/dependencyinjection/dicontainer.php b/lib/private/appframework/dependencyinjection/dicontainer.php index beba71052f8..e478225a53d 100644 --- a/lib/private/appframework/dependencyinjection/dicontainer.php +++ b/lib/private/appframework/dependencyinjection/dicontainer.php @@ -92,11 +92,12 @@ class DIContainer extends SimpleContainer implements IAppContainer{ return new SecurityMiddleware($app, $c['Request']); }); - $this['MiddlewareDispatcher'] = $this->share(function($c) { + $middleWares = &$this->middleWares; + $this['MiddlewareDispatcher'] = $this->share(function($c) use (&$middleWares) { $dispatcher = new MiddlewareDispatcher(); $dispatcher->registerMiddleware($c['SecurityMiddleware']); - foreach($this->middleWares as $middleWare) { + foreach($middleWares as $middleWare) { $dispatcher->registerMiddleware($c[$middleWare]); } -- GitLab From 329b8f3e99767141c03880cb0aaff6af2e3ce043 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sat, 12 Apr 2014 01:56:11 -0400 Subject: [PATCH 278/296] [tx-robot] updated from transifex --- apps/user_ldap/l10n/bn_BD.php | 1 - apps/user_ldap/l10n/ca.php | 1 - apps/user_ldap/l10n/cs_CZ.php | 1 - apps/user_ldap/l10n/da.php | 1 - apps/user_ldap/l10n/de.php | 1 - apps/user_ldap/l10n/de_CH.php | 1 - apps/user_ldap/l10n/de_DE.php | 1 - apps/user_ldap/l10n/el.php | 1 - apps/user_ldap/l10n/en_GB.php | 1 - apps/user_ldap/l10n/eo.php | 1 - apps/user_ldap/l10n/es.php | 1 - apps/user_ldap/l10n/es_AR.php | 1 - apps/user_ldap/l10n/es_MX.php | 1 - apps/user_ldap/l10n/et_EE.php | 1 - apps/user_ldap/l10n/eu.php | 1 - apps/user_ldap/l10n/fa.php | 1 - apps/user_ldap/l10n/fi_FI.php | 1 - apps/user_ldap/l10n/fr.php | 1 - apps/user_ldap/l10n/gl.php | 1 - apps/user_ldap/l10n/hu_HU.php | 1 - apps/user_ldap/l10n/id.php | 1 - apps/user_ldap/l10n/it.php | 1 - apps/user_ldap/l10n/ja.php | 1 - apps/user_ldap/l10n/ka_GE.php | 1 - apps/user_ldap/l10n/ko.php | 1 - apps/user_ldap/l10n/lv.php | 1 - apps/user_ldap/l10n/nb_NO.php | 1 - apps/user_ldap/l10n/nl.php | 1 - apps/user_ldap/l10n/pl.php | 1 - apps/user_ldap/l10n/pt_BR.php | 1 - apps/user_ldap/l10n/pt_PT.php | 1 - apps/user_ldap/l10n/ro.php | 1 - apps/user_ldap/l10n/ru.php | 1 - apps/user_ldap/l10n/sk_SK.php | 1 - apps/user_ldap/l10n/sl.php | 1 - apps/user_ldap/l10n/sq.php | 1 - apps/user_ldap/l10n/sr.php | 1 - apps/user_ldap/l10n/sv.php | 1 - apps/user_ldap/l10n/ta_LK.php | 1 - apps/user_ldap/l10n/th_TH.php | 1 - apps/user_ldap/l10n/tr.php | 37 +++++---- apps/user_ldap/l10n/uk.php | 1 - apps/user_ldap/l10n/vi.php | 1 - apps/user_ldap/l10n/zh_CN.php | 1 - apps/user_ldap/l10n/zh_TW.php | 1 - l10n/ach/settings.po | 116 ++++++++++++++++------------ l10n/ach/user_ldap.po | 8 +- l10n/ady/settings.po | 116 ++++++++++++++++------------ l10n/ady/user_ldap.po | 8 +- l10n/af/settings.po | 116 ++++++++++++++++------------ l10n/af/user_ldap.po | 8 +- l10n/af_ZA/settings.po | 116 ++++++++++++++++------------ l10n/af_ZA/user_ldap.po | 8 +- l10n/ak/settings.po | 116 ++++++++++++++++------------ l10n/ak/user_ldap.po | 8 +- l10n/am_ET/settings.po | 116 ++++++++++++++++------------ l10n/am_ET/user_ldap.po | 8 +- l10n/ar/settings.po | 18 ++++- l10n/ar/user_ldap.po | 8 +- l10n/ast/settings.po | 18 ++++- l10n/ast/user_ldap.po | 6 +- l10n/az/settings.po | 116 ++++++++++++++++------------ l10n/az/user_ldap.po | 8 +- l10n/be/settings.po | 116 ++++++++++++++++------------ l10n/be/user_ldap.po | 8 +- l10n/bg_BG/settings.po | 116 ++++++++++++++++------------ l10n/bg_BG/user_ldap.po | 8 +- l10n/bn_BD/settings.po | 116 ++++++++++++++++------------ l10n/bn_BD/user_ldap.po | 10 +-- l10n/bs/settings.po | 116 ++++++++++++++++------------ l10n/bs/user_ldap.po | 8 +- l10n/ca/settings.po | 20 ++++- l10n/ca/user_ldap.po | 10 +-- l10n/cs_CZ/settings.po | 20 ++++- l10n/cs_CZ/user_ldap.po | 10 +-- l10n/cy_GB/settings.po | 116 ++++++++++++++++------------ l10n/cy_GB/user_ldap.po | 8 +- l10n/da/settings.po | 20 ++++- l10n/da/user_ldap.po | 10 +-- l10n/de/settings.po | 20 ++++- l10n/de/user_ldap.po | 10 +-- l10n/de_AT/settings.po | 116 ++++++++++++++++------------ l10n/de_AT/user_ldap.po | 8 +- l10n/de_CH/settings.po | 18 ++++- l10n/de_CH/user_ldap.po | 10 +-- l10n/de_DE/settings.po | 20 ++++- l10n/de_DE/user_ldap.po | 10 +-- l10n/el/settings.po | 20 ++++- l10n/el/user_ldap.po | 10 +-- l10n/en@pirate/settings.po | 116 ++++++++++++++++------------ l10n/en@pirate/user_ldap.po | 8 +- l10n/en_GB/settings.po | 20 ++++- l10n/en_GB/user_ldap.po | 12 +-- l10n/eo/settings.po | 116 ++++++++++++++++------------ l10n/eo/user_ldap.po | 10 +-- l10n/es/settings.po | 20 ++++- l10n/es/user_ldap.po | 10 +-- l10n/es_AR/settings.po | 18 ++++- l10n/es_AR/user_ldap.po | 10 +-- l10n/es_CL/settings.po | 116 ++++++++++++++++------------ l10n/es_CL/user_ldap.po | 8 +- l10n/es_MX/settings.po | 18 ++++- l10n/es_MX/user_ldap.po | 10 +-- l10n/et_EE/settings.po | 20 ++++- l10n/et_EE/user_ldap.po | 10 +-- l10n/eu/settings.po | 18 ++++- l10n/eu/user_ldap.po | 10 +-- l10n/eu_ES/settings.po | 116 ++++++++++++++++------------ l10n/eu_ES/user_ldap.po | 8 +- l10n/fa/settings.po | 18 ++++- l10n/fa/user_ldap.po | 10 +-- l10n/fi_FI/settings.po | 20 ++++- l10n/fi_FI/user_ldap.po | 10 +-- l10n/fr/settings.po | 20 ++++- l10n/fr/user_ldap.po | 10 +-- l10n/fr_CA/settings.po | 116 ++++++++++++++++------------ l10n/fr_CA/user_ldap.po | 8 +- l10n/gl/settings.po | 20 ++++- l10n/gl/user_ldap.po | 12 +-- l10n/he/settings.po | 18 ++++- l10n/he/user_ldap.po | 8 +- l10n/hi/settings.po | 116 ++++++++++++++++------------ l10n/hi/user_ldap.po | 8 +- l10n/hr/settings.po | 116 ++++++++++++++++------------ l10n/hr/user_ldap.po | 8 +- l10n/hu_HU/settings.po | 18 ++++- l10n/hu_HU/user_ldap.po | 10 +-- l10n/hy/settings.po | 116 ++++++++++++++++------------ l10n/hy/user_ldap.po | 8 +- l10n/ia/settings.po | 116 ++++++++++++++++------------ l10n/ia/user_ldap.po | 8 +- l10n/id/settings.po | 18 ++++- l10n/id/user_ldap.po | 10 +-- l10n/is/settings.po | 116 ++++++++++++++++------------ l10n/is/user_ldap.po | 8 +- l10n/it/settings.po | 20 ++++- l10n/it/user_ldap.po | 10 +-- l10n/ja/settings.po | 18 ++++- l10n/ja/user_ldap.po | 10 +-- l10n/jv/settings.po | 18 ++++- l10n/jv/user_ldap.po | 8 +- l10n/ka_GE/settings.po | 18 ++++- l10n/ka_GE/user_ldap.po | 10 +-- l10n/km/settings.po | 18 ++++- l10n/km/user_ldap.po | 8 +- l10n/kn/settings.po | 116 ++++++++++++++++------------ l10n/kn/user_ldap.po | 8 +- l10n/ko/settings.po | 18 ++++- l10n/ko/user_ldap.po | 10 +-- l10n/ku_IQ/settings.po | 116 ++++++++++++++++------------ l10n/ku_IQ/user_ldap.po | 8 +- l10n/lb/settings.po | 116 ++++++++++++++++------------ l10n/lb/user_ldap.po | 8 +- l10n/lt_LT/settings.po | 18 ++++- l10n/lt_LT/user_ldap.po | 8 +- l10n/lv/settings.po | 18 ++++- l10n/lv/user_ldap.po | 10 +-- l10n/mk/settings.po | 18 ++++- l10n/mk/user_ldap.po | 8 +- l10n/ml/settings.po | 116 ++++++++++++++++------------ l10n/ml/user_ldap.po | 8 +- l10n/ml_IN/settings.po | 116 ++++++++++++++++------------ l10n/ml_IN/user_ldap.po | 8 +- l10n/mn/settings.po | 116 ++++++++++++++++------------ l10n/mn/user_ldap.po | 8 +- l10n/ms_MY/settings.po | 116 ++++++++++++++++------------ l10n/ms_MY/user_ldap.po | 8 +- l10n/my_MM/settings.po | 116 ++++++++++++++++------------ l10n/my_MM/user_ldap.po | 8 +- l10n/nb_NO/settings.po | 20 ++++- l10n/nb_NO/user_ldap.po | 10 +-- l10n/nds/settings.po | 116 ++++++++++++++++------------ l10n/nds/user_ldap.po | 8 +- l10n/ne/settings.po | 116 ++++++++++++++++------------ l10n/ne/user_ldap.po | 8 +- l10n/nl/settings.po | 20 ++++- l10n/nl/user_ldap.po | 12 +-- l10n/nn_NO/settings.po | 18 ++++- l10n/nn_NO/user_ldap.po | 8 +- l10n/nqo/settings.po | 116 ++++++++++++++++------------ l10n/nqo/user_ldap.po | 8 +- l10n/oc/settings.po | 116 ++++++++++++++++------------ l10n/oc/user_ldap.po | 8 +- l10n/pa/settings.po | 116 ++++++++++++++++------------ l10n/pa/user_ldap.po | 8 +- l10n/pl/settings.po | 20 ++++- l10n/pl/user_ldap.po | 12 +-- l10n/pt_BR/settings.po | 20 ++++- l10n/pt_BR/user_ldap.po | 12 +-- l10n/pt_PT/settings.po | 18 ++++- l10n/pt_PT/user_ldap.po | 10 +-- l10n/ro/settings.po | 18 ++++- l10n/ro/user_ldap.po | 10 +-- l10n/ru/settings.po | 18 ++++- l10n/ru/user_ldap.po | 10 +-- l10n/si_LK/settings.po | 116 ++++++++++++++++------------ l10n/si_LK/user_ldap.po | 8 +- l10n/sk/settings.po | 116 ++++++++++++++++------------ l10n/sk/user_ldap.po | 8 +- l10n/sk_SK/settings.po | 20 ++++- l10n/sk_SK/user_ldap.po | 10 +-- l10n/sl/settings.po | 20 ++++- l10n/sl/user_ldap.po | 10 +-- l10n/sq/settings.po | 18 ++++- l10n/sq/user_ldap.po | 10 +-- l10n/sr/settings.po | 18 ++++- l10n/sr/user_ldap.po | 10 +-- l10n/sr@latin/settings.po | 116 ++++++++++++++++------------ l10n/sr@latin/user_ldap.po | 8 +- l10n/su/settings.po | 116 ++++++++++++++++------------ l10n/su/user_ldap.po | 8 +- l10n/sv/settings.po | 20 ++++- l10n/sv/user_ldap.po | 12 +-- l10n/sw_KE/settings.po | 116 ++++++++++++++++------------ l10n/sw_KE/user_ldap.po | 8 +- l10n/ta_LK/settings.po | 116 ++++++++++++++++------------ l10n/ta_LK/user_ldap.po | 10 +-- l10n/te/settings.po | 116 ++++++++++++++++------------ l10n/te/user_ldap.po | 8 +- l10n/templates/core.pot | 2 +- 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 | 16 +++- l10n/templates/user_ldap.pot | 4 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/settings.po | 116 ++++++++++++++++------------ l10n/th_TH/user_ldap.po | 10 +-- l10n/tr/lib.po | 18 ++--- l10n/tr/settings.po | 20 ++++- l10n/tr/user_ldap.po | 48 ++++++------ l10n/tzm/settings.po | 116 ++++++++++++++++------------ l10n/tzm/user_ldap.po | 8 +- l10n/ug/settings.po | 18 ++++- l10n/ug/user_ldap.po | 8 +- l10n/uk/settings.po | 18 ++++- l10n/uk/user_ldap.po | 10 +-- l10n/ur/settings.po | 116 ++++++++++++++++------------ l10n/ur/user_ldap.po | 8 +- l10n/ur_PK/settings.po | 116 ++++++++++++++++------------ l10n/ur_PK/user_ldap.po | 8 +- l10n/uz/settings.po | 116 ++++++++++++++++------------ l10n/uz/user_ldap.po | 8 +- l10n/vi/settings.po | 116 ++++++++++++++++------------ l10n/vi/user_ldap.po | 10 +-- l10n/zh_CN/settings.po | 18 ++++- l10n/zh_CN/user_ldap.po | 10 +-- l10n/zh_HK/settings.po | 116 ++++++++++++++++------------ l10n/zh_HK/user_ldap.po | 8 +- l10n/zh_TW/settings.po | 18 ++++- l10n/zh_TW/user_ldap.po | 10 +-- lib/l10n/tr.php | 14 ++-- 257 files changed, 4581 insertions(+), 3226 deletions(-) diff --git a/apps/user_ldap/l10n/bn_BD.php b/apps/user_ldap/l10n/bn_BD.php index 0b43a27df94..90f7b572a95 100644 --- a/apps/user_ldap/l10n/bn_BD.php +++ b/apps/user_ldap/l10n/bn_BD.php @@ -13,7 +13,6 @@ $TRANSLATIONS = array( "Password" => "কূটশব্দ", "For anonymous access, leave DN and Password empty." => "অজ্ঞাতকুলশীল অধিগমনের জন্য DN এবং কূটশব্দটি ফাঁকা রাখুন।", "You can specify Base DN for users and groups in the Advanced tab" => "সুচারু ট্যঅবে গিয়ে আপনি ব্যবহারকারি এবং গোষ্ঠীসমূহের জন্য ভিত্তি DN নির্ধারণ করতে পারেন।", -"Case insensitve LDAP server (Windows)" => "বর্ণ অসংবেদী LDAP সার্ভার (উইন্ডোজ)", "Turn off SSL certificate validation." => "SSL সনদপত্র যাচাইকরণ বন্ধ রাক।", "in seconds. A change empties the cache." => "সেকেন্ডে। কোন পরিবর্তন ক্যাসে খালি করবে।", "User Display Name Field" => "ব্যবহারকারীর প্রদর্শিতব্য নামের ক্ষেত্র", diff --git a/apps/user_ldap/l10n/ca.php b/apps/user_ldap/l10n/ca.php index 940c6ea8b66..98b1cf74640 100644 --- a/apps/user_ldap/l10n/ca.php +++ b/apps/user_ldap/l10n/ca.php @@ -70,7 +70,6 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Port de la còpia de seguretat (rèplica)", "Disable Main Server" => "Desactiva el servidor principal", "Only connect to the replica server." => "Connecta només al servidor rèplica.", -"Case insensitve LDAP server (Windows)" => "Servidor LDAP sense distinció entre majúscules i minúscules (Windows)", "Turn off SSL certificate validation." => "Desactiva la validació de certificat SSL.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "No es recomana, useu-ho només com a prova! Importeu el certificat SSL del servidor LDAP al servidor %s només si la connexió funciona amb aquesta opció.", "Cache Time-To-Live" => "Memòria de cau Time-To-Live", diff --git a/apps/user_ldap/l10n/cs_CZ.php b/apps/user_ldap/l10n/cs_CZ.php index 536834ee8b5..d4039e9ef10 100644 --- a/apps/user_ldap/l10n/cs_CZ.php +++ b/apps/user_ldap/l10n/cs_CZ.php @@ -70,7 +70,6 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Záložní (kopie) port", "Disable Main Server" => "Zakázat hlavní server", "Only connect to the replica server." => "Připojit jen k záložnímu serveru.", -"Case insensitve LDAP server (Windows)" => "LDAP server nerozlišující velikost znaků (Windows)", "Turn off SSL certificate validation." => "Vypnout ověřování SSL certifikátu.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Nedoporučuje se, určeno pouze k testovacímu použití. Pokud spojení funguje jen s touto volbou, importujte SSL certifikát vašeho LDAP serveru na server %s.", "Cache Time-To-Live" => "TTL vyrovnávací paměti", diff --git a/apps/user_ldap/l10n/da.php b/apps/user_ldap/l10n/da.php index e375598c9bd..8264a18116c 100644 --- a/apps/user_ldap/l10n/da.php +++ b/apps/user_ldap/l10n/da.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Backup (Replika) Port", "Disable Main Server" => "Deaktiver Hovedserver", "Only connect to the replica server." => "Forbind kun til replika serveren.", -"Case insensitve LDAP server (Windows)" => "Ikke versalfølsom LDAP server (Windows)", "Turn off SSL certificate validation." => "Deaktiver SSL certifikat validering", "Cache Time-To-Live" => "Cache Time-To-Live", "User Display Name Field" => "User Display Name Field", diff --git a/apps/user_ldap/l10n/de.php b/apps/user_ldap/l10n/de.php index fd6bde8a97e..15c8d21687d 100644 --- a/apps/user_ldap/l10n/de.php +++ b/apps/user_ldap/l10n/de.php @@ -70,7 +70,6 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Backup Port", "Disable Main Server" => "Hauptserver deaktivieren", "Only connect to the replica server." => "Nur zum Replikat-Server verbinden.", -"Case insensitve LDAP server (Windows)" => "LDAP-Server (Windows: Groß- und Kleinschreibung bleibt unbeachtet)", "Turn off SSL certificate validation." => "Schalte die SSL-Zertifikatsprüfung aus.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Nur für Testzwecke geeignet, sollte Standardmäßig nicht verwendet werden. Falls die Verbindung nur mit dieser Option funktioniert, importiere das SSL-Zertifikat des LDAP-Servers in deinen %s Server.", "Cache Time-To-Live" => "Speichere Time-To-Live zwischen", diff --git a/apps/user_ldap/l10n/de_CH.php b/apps/user_ldap/l10n/de_CH.php index 5f8e2907f07..f60d425a2e6 100644 --- a/apps/user_ldap/l10n/de_CH.php +++ b/apps/user_ldap/l10n/de_CH.php @@ -42,7 +42,6 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Backup Port", "Disable Main Server" => "Hauptserver deaktivieren", "Only connect to the replica server." => "Nur zum Replikat-Server verbinden.", -"Case insensitve LDAP server (Windows)" => "LDAP-Server (Windows: Gross- und Kleinschreibung bleibt unbeachtet)", "Turn off SSL certificate validation." => "Schalten Sie die SSL-Zertifikatsprüfung aus.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Nur für Testzwecke geeignet, sollte Standardmäßig nicht verwendet werden. Falls die Verbindung nur mit dieser Option funktioniert, importieren Sie das SSL-Zertifikat des LDAP-Servers in Ihren %s Server.", "Cache Time-To-Live" => "Speichere Time-To-Live zwischen", diff --git a/apps/user_ldap/l10n/de_DE.php b/apps/user_ldap/l10n/de_DE.php index 8c6ba0f3130..60d52cd30f6 100644 --- a/apps/user_ldap/l10n/de_DE.php +++ b/apps/user_ldap/l10n/de_DE.php @@ -70,7 +70,6 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Backup Port", "Disable Main Server" => "Hauptserver deaktivieren", "Only connect to the replica server." => "Nur zum Replikat-Server verbinden.", -"Case insensitve LDAP server (Windows)" => "LDAP-Server (Windows: Groß- und Kleinschreibung bleibt unbeachtet)", "Turn off SSL certificate validation." => "Schalten Sie die SSL-Zertifikatsprüfung aus.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Nur für Testzwecke geeignet, sollte Standardmäßig nicht verwendet werden. Falls die Verbindung nur mit dieser Option funktioniert, importieren Sie das SSL-Zertifikat des LDAP-Servers in Ihren %s Server.", "Cache Time-To-Live" => "Speichere Time-To-Live zwischen", diff --git a/apps/user_ldap/l10n/el.php b/apps/user_ldap/l10n/el.php index 926419d86b2..cfc5286a408 100644 --- a/apps/user_ldap/l10n/el.php +++ b/apps/user_ldap/l10n/el.php @@ -70,7 +70,6 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Δημιουργία αντιγράφων ασφαλείας (Replica) Υποδοχη", "Disable Main Server" => "Απενεργοποιηση του κεντρικου διακομιστη", "Only connect to the replica server." => "Σύνδεση μόνο με το διακομιστή-αντίγραφο.", -"Case insensitve LDAP server (Windows)" => "LDAP server (Windows) με διάκριση πεζών-ΚΕΦΑΛΑΙΩΝ", "Turn off SSL certificate validation." => "Απενεργοποίηση επικύρωσης πιστοποιητικού SSL.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Δεν προτείνεται, χρησιμοποιείστε το μόνο για δοκιμές! Εάν η σύνδεση λειτουργεί μόνο με αυτή την επιλογή, εισάγετε το πιστοποιητικό SSL του διακομιστή LDAP στο %s διακομιστή σας.", "Cache Time-To-Live" => "Cache Time-To-Live", diff --git a/apps/user_ldap/l10n/en_GB.php b/apps/user_ldap/l10n/en_GB.php index b87c99c135c..6dfc3e53f0c 100644 --- a/apps/user_ldap/l10n/en_GB.php +++ b/apps/user_ldap/l10n/en_GB.php @@ -70,7 +70,6 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Backup (Replica) Port", "Disable Main Server" => "Disable Main Server", "Only connect to the replica server." => "Only connect to the replica server.", -"Case insensitve LDAP server (Windows)" => "Case insensitve LDAP server (Windows)", "Turn off SSL certificate validation." => "Turn off SSL certificate validation.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server.", "Cache Time-To-Live" => "Cache Time-To-Live", diff --git a/apps/user_ldap/l10n/eo.php b/apps/user_ldap/l10n/eo.php index 0cae524bcc1..74928899c8a 100644 --- a/apps/user_ldap/l10n/eo.php +++ b/apps/user_ldap/l10n/eo.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Back" => "Antaŭen", "Connection Settings" => "Agordo de konekto", "Disable Main Server" => "Malkapabligi la ĉefan servilon", -"Case insensitve LDAP server (Windows)" => "LDAP-servilo blinda je litergrandeco (Vindozo)", "Turn off SSL certificate validation." => "Malkapabligi validkontrolon de SSL-atestiloj.", "Cache Time-To-Live" => "Vivotempo de la kaŝmemoro", "in seconds. A change empties the cache." => "sekunde. Ajna ŝanĝo malplenigas la kaŝmemoron.", diff --git a/apps/user_ldap/l10n/es.php b/apps/user_ldap/l10n/es.php index 1821aa8d446..6034b4fb635 100644 --- a/apps/user_ldap/l10n/es.php +++ b/apps/user_ldap/l10n/es.php @@ -70,7 +70,6 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Puerto para copias de seguridad (Replica)", "Disable Main Server" => "Deshabilitar servidor principal", "Only connect to the replica server." => "Conectar sólo con el servidor de réplica.", -"Case insensitve LDAP server (Windows)" => "Servidor de LDAP no sensible a mayúsculas/minúsculas (Windows)", "Turn off SSL certificate validation." => "Apagar la validación por certificado SSL.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "No se recomienda, ¡utilízalo únicamente para pruebas! Si la conexión únicamente funciona con esta opción, importa el certificado SSL del servidor LDAP en tu servidor %s.", "Cache Time-To-Live" => "Cache TTL", diff --git a/apps/user_ldap/l10n/es_AR.php b/apps/user_ldap/l10n/es_AR.php index 6323fe0c4ad..877141bcdc8 100644 --- a/apps/user_ldap/l10n/es_AR.php +++ b/apps/user_ldap/l10n/es_AR.php @@ -67,7 +67,6 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Puerto para copia de seguridad (réplica)", "Disable Main Server" => "Deshabilitar el Servidor Principal", "Only connect to the replica server." => "Conectarse únicamente al servidor de réplica.", -"Case insensitve LDAP server (Windows)" => "Servidor de LDAP sensible a mayúsculas/minúsculas (Windows)", "Turn off SSL certificate validation." => "Desactivar la validación por certificado SSL.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "No es recomendado, ¡Usalo solamente para pruebas! Si la conexión únicamente funciona con esta opción, importá el certificado SSL del servidor LDAP en tu servidor %s.", "Cache Time-To-Live" => "Tiempo de vida del caché", diff --git a/apps/user_ldap/l10n/es_MX.php b/apps/user_ldap/l10n/es_MX.php index 09c99209a55..bb4c3700ec5 100644 --- a/apps/user_ldap/l10n/es_MX.php +++ b/apps/user_ldap/l10n/es_MX.php @@ -67,7 +67,6 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Puerto para copias de seguridad (Replica)", "Disable Main Server" => "Deshabilitar servidor principal", "Only connect to the replica server." => "Conectar sólo con el servidor de réplica.", -"Case insensitve LDAP server (Windows)" => "Servidor de LDAP no sensible a mayúsculas/minúsculas (Windows)", "Turn off SSL certificate validation." => "Apagar la validación por certificado SSL.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "No se recomienda, ¡utilízalo únicamente para pruebas! Si la conexión únicamente funciona con esta opción, importa el certificado SSL del servidor LDAP en tu servidor %s.", "Cache Time-To-Live" => "Cache TTL", diff --git a/apps/user_ldap/l10n/et_EE.php b/apps/user_ldap/l10n/et_EE.php index 9bf3a189efd..f52449bda8b 100644 --- a/apps/user_ldap/l10n/et_EE.php +++ b/apps/user_ldap/l10n/et_EE.php @@ -70,7 +70,6 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Varuserveri (replika) port", "Disable Main Server" => "Ära kasuta peaserverit", "Only connect to the replica server." => "Ühendu ainult replitseeriva serveriga.", -"Case insensitve LDAP server (Windows)" => "Mittetõstutundlik LDAP server (Windows)", "Turn off SSL certificate validation." => "Lülita SSL sertifikaadi kontrollimine välja.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Pole soovitatav, kasuta seda ainult testimiseks! Kui ühendus toimib ainult selle valikuga, siis impordi LDAP serveri SSL sertifikaat oma %s serverisse.", "Cache Time-To-Live" => "Puhvri iga", diff --git a/apps/user_ldap/l10n/eu.php b/apps/user_ldap/l10n/eu.php index a7bd52e50ac..c19cb034ad0 100644 --- a/apps/user_ldap/l10n/eu.php +++ b/apps/user_ldap/l10n/eu.php @@ -61,7 +61,6 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Babeskopia (Replica) Ataka", "Disable Main Server" => "Desgaitu Zerbitzari Nagusia", "Only connect to the replica server." => "Konektatu bakarrik erreplika zerbitzarira", -"Case insensitve LDAP server (Windows)" => "Maiuskulak eta minuskulak ezberditzen ez dituen LDAP zerbitzaria (windows)", "Turn off SSL certificate validation." => "Ezgaitu SSL ziurtagirien egiaztapena.", "Cache Time-To-Live" => "Katxearen Bizi-Iraupena", "in seconds. A change empties the cache." => "segundutan. Aldaketak katxea husten du.", diff --git a/apps/user_ldap/l10n/fa.php b/apps/user_ldap/l10n/fa.php index 688a6ee0d42..62a949f88bd 100644 --- a/apps/user_ldap/l10n/fa.php +++ b/apps/user_ldap/l10n/fa.php @@ -34,7 +34,6 @@ $TRANSLATIONS = array( "Backup (Replica) Host" => "پشتیبان گیری (بدل) میزبان", "Backup (Replica) Port" => "پشتیبان گیری (بدل) پورت", "Disable Main Server" => "غیر فعال کردن سرور اصلی", -"Case insensitve LDAP server (Windows)" => "غیر حساس به بزرگی و کوچکی حروف LDAP سرور (ویندوز)", "Turn off SSL certificate validation." => "غیرفعال کردن اعتبار گواهی نامه SSL .", "Directory Settings" => "تنظیمات پوشه", "User Display Name Field" => "فیلد نام کاربر", diff --git a/apps/user_ldap/l10n/fi_FI.php b/apps/user_ldap/l10n/fi_FI.php index ac1dfcc5ab8..552fd9f923b 100644 --- a/apps/user_ldap/l10n/fi_FI.php +++ b/apps/user_ldap/l10n/fi_FI.php @@ -25,7 +25,6 @@ $TRANSLATIONS = array( "Continue" => "Jatka", "Connection Settings" => "Yhteysasetukset", "Disable Main Server" => "Poista pääpalvelin käytöstä", -"Case insensitve LDAP server (Windows)" => "Kirjainkoosta piittamaton LDAP-palvelin (Windows)", "Turn off SSL certificate validation." => "Poista käytöstä SSL-varmenteen vahvistus", "in seconds. A change empties the cache." => "sekunneissa. Muutos tyhjentää välimuistin.", "Directory Settings" => "Hakemistoasetukset", diff --git a/apps/user_ldap/l10n/fr.php b/apps/user_ldap/l10n/fr.php index 39e7d2ae429..468297ca1f3 100644 --- a/apps/user_ldap/l10n/fr.php +++ b/apps/user_ldap/l10n/fr.php @@ -70,7 +70,6 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Port du serveur de backup (réplique)", "Disable Main Server" => "Désactiver le serveur principal", "Only connect to the replica server." => "Se connecter uniquement au serveur de replica.", -"Case insensitve LDAP server (Windows)" => "Serveur LDAP insensible à la casse (Windows)", "Turn off SSL certificate validation." => "Désactiver la validation du certificat SSL.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Non recommandé, à utiliser à des fins de tests uniquement. Si la connexion ne fonctionne qu'avec cette option, importez le certificat SSL du serveur LDAP dans le serveur %s.", "Cache Time-To-Live" => "Durée de vie du cache", diff --git a/apps/user_ldap/l10n/gl.php b/apps/user_ldap/l10n/gl.php index c3524453899..f27f8eb7bb1 100644 --- a/apps/user_ldap/l10n/gl.php +++ b/apps/user_ldap/l10n/gl.php @@ -70,7 +70,6 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Porto da copia de seguranza (Réplica)", "Disable Main Server" => "Desactivar o servidor principal", "Only connect to the replica server." => "Conectar só co servidor de réplica.", -"Case insensitve LDAP server (Windows)" => "Servidor LDAP que non distingue entre maiúsculas e minúsculas (Windows)", "Turn off SSL certificate validation." => "Desactiva a validación do certificado SSL.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Non recomendado, utilizar só para probas! Se a conexión só funciona con esta opción importa o certificado SSL do servidor LDAP no seu servidor %s.", "Cache Time-To-Live" => "Tempo de persistencia da caché", diff --git a/apps/user_ldap/l10n/hu_HU.php b/apps/user_ldap/l10n/hu_HU.php index 277ae96fcd4..34daa25ce68 100644 --- a/apps/user_ldap/l10n/hu_HU.php +++ b/apps/user_ldap/l10n/hu_HU.php @@ -67,7 +67,6 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "A másodkiszolgáló (replika) portszáma", "Disable Main Server" => "A fő szerver kihagyása", "Only connect to the replica server." => "Csak a másodlagos (másolati) kiszolgálóhoz kapcsolódjunk.", -"Case insensitve LDAP server (Windows)" => "Az LDAP-kiszolgáló nem tesz különbséget a kis- és nagybetűk között (Windows)", "Turn off SSL certificate validation." => "Ne ellenőrizzük az SSL-tanúsítvány érvényességét", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Használata nem javasolt (kivéve tesztelési céllal). Ha a kapcsolat csak ezzel a beállítással működik, akkor importálja az LDAP-kiszolgáló SSL tanúsítványát a(z) %s kiszolgálóra!", "Cache Time-To-Live" => "A gyorsítótár tárolási időtartama", diff --git a/apps/user_ldap/l10n/id.php b/apps/user_ldap/l10n/id.php index 03071bb1d0f..1d42031a498 100644 --- a/apps/user_ldap/l10n/id.php +++ b/apps/user_ldap/l10n/id.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "Give an optional backup host. It must be a replica of the main LDAP/AD server." => "Berikan pilihan host cadangan. Harus merupakan replika dari server LDAP/AD utama.", "Backup (Replica) Port" => "Port Cadangan (Replika)", "Disable Main Server" => "Nonaktifkan Server Utama", -"Case insensitve LDAP server (Windows)" => "Server LDAP dengan kapitalisasi tidak sensitif (Windows)", "Turn off SSL certificate validation." => "matikan validasi sertivikat SSL", "Cache Time-To-Live" => "Gunakan Tembolok untuk Time-To-Live", "in seconds. A change empties the cache." => "dalam detik. perubahan mengosongkan cache", diff --git a/apps/user_ldap/l10n/it.php b/apps/user_ldap/l10n/it.php index de540f22821..cd8c88814aa 100644 --- a/apps/user_ldap/l10n/it.php +++ b/apps/user_ldap/l10n/it.php @@ -70,7 +70,6 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Porta di backup (Replica)", "Disable Main Server" => "Disabilita server principale", "Only connect to the replica server." => "Collegati solo al server di replica.", -"Case insensitve LDAP server (Windows)" => "Case insensitve LDAP server (Windows)", "Turn off SSL certificate validation." => "Disattiva il controllo del certificato SSL.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Non consigliata, da utilizzare solo per test! Se la connessione funziona solo con questa opzione, importa il certificate SSL del server LDAP sul tuo server %s.", "Cache Time-To-Live" => "Tempo di vita della cache", diff --git a/apps/user_ldap/l10n/ja.php b/apps/user_ldap/l10n/ja.php index d13deafe6c3..e7e4706c46a 100644 --- a/apps/user_ldap/l10n/ja.php +++ b/apps/user_ldap/l10n/ja.php @@ -70,7 +70,6 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "バックアップ(レプリカ)ポート", "Disable Main Server" => "メインサーバーを無効にする", "Only connect to the replica server." => "レプリカサーバーにのみ接続します。", -"Case insensitve LDAP server (Windows)" => "大文字/小文字を区別しないLDAPサーバー(Windows)", "Turn off SSL certificate validation." => "SSL証明書の確認を無効にする。", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "推奨されません、テストにおいてのみ使用してください!このオプションでのみ接続が動作する場合は、LDAP サーバーのSSL証明書を %s サーバーにインポートしてください。", "Cache Time-To-Live" => "キャッシュのTTL", diff --git a/apps/user_ldap/l10n/ka_GE.php b/apps/user_ldap/l10n/ka_GE.php index ffdf7655517..3ee307b55cc 100644 --- a/apps/user_ldap/l10n/ka_GE.php +++ b/apps/user_ldap/l10n/ka_GE.php @@ -37,7 +37,6 @@ $TRANSLATIONS = array( "Give an optional backup host. It must be a replica of the main LDAP/AD server." => "მიუთითეთ რაიმე ბექაფ ჰოსტი. ის უნდა იყოს ძირითადი LDAP/AD სერვერის რეპლიკა.", "Backup (Replica) Port" => "ბექაფ (რეპლიკა) პორტი", "Disable Main Server" => "გამორთეთ ძირითადი სერვერი", -"Case insensitve LDAP server (Windows)" => "LDAP server (Windows)", "Turn off SSL certificate validation." => "გამორთეთ SSL სერთიფიკატის ვალიდაცია.", "Cache Time-To-Live" => "ქეშის სიცოცხლის ხანგრძლივობა", "in seconds. A change empties the cache." => "წამებში. ცვლილება ასუფთავებს ქეშს.", diff --git a/apps/user_ldap/l10n/ko.php b/apps/user_ldap/l10n/ko.php index 5dd2151a411..1ae63bd4d21 100644 --- a/apps/user_ldap/l10n/ko.php +++ b/apps/user_ldap/l10n/ko.php @@ -67,7 +67,6 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "백업 (복제) 포트", "Disable Main Server" => "주 서버 비활성화", "Only connect to the replica server." => "복제 서버에만 연결합니다.", -"Case insensitve LDAP server (Windows)" => "서버에서 대소문자를 구분하지 않음 (Windows)", "Turn off SSL certificate validation." => "SSL 인증서 유효성 검사를 해제합니다.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "테스트 목적으로만 사용하십시오! 이 옵션을 사용해야만 연결할 수 있으면 %s 서버에 LDAP 서버의 SSL 인증서를 설치하십시오.", "Cache Time-To-Live" => "캐시 유지 시간", diff --git a/apps/user_ldap/l10n/lv.php b/apps/user_ldap/l10n/lv.php index 769f17e6338..e3cb206e2d6 100644 --- a/apps/user_ldap/l10n/lv.php +++ b/apps/user_ldap/l10n/lv.php @@ -36,7 +36,6 @@ $TRANSLATIONS = array( "Give an optional backup host. It must be a replica of the main LDAP/AD server." => "Norādi rezerves serveri (nav obligāti). Tam ir jābūt galvenā LDAP/AD servera kopijai.", "Backup (Replica) Port" => "Rezerves (kopijas) ports", "Disable Main Server" => "Deaktivēt galveno serveri", -"Case insensitve LDAP server (Windows)" => "Reģistrnejutīgs LDAP serveris (Windows)", "Turn off SSL certificate validation." => "Izslēgt SSL sertifikātu validēšanu.", "Cache Time-To-Live" => "Kešatmiņas dzīvlaiks", "in seconds. A change empties the cache." => "sekundēs. Izmaiņas iztukšos kešatmiņu.", diff --git a/apps/user_ldap/l10n/nb_NO.php b/apps/user_ldap/l10n/nb_NO.php index 0b60752e9d9..dd4af3e759e 100644 --- a/apps/user_ldap/l10n/nb_NO.php +++ b/apps/user_ldap/l10n/nb_NO.php @@ -67,7 +67,6 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Reserve (Replika) Port", "Disable Main Server" => "Deaktiver hovedtjeneren", "Only connect to the replica server." => "Koble til bare replika-tjeneren.", -"Case insensitve LDAP server (Windows)" => "Case-insensitiv LDAP tjener (Windows)", "Turn off SSL certificate validation." => "Slå av SSL-sertifikat validering", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Ikke anbefalt, bruk kun for testing! Hvis tilkobling bare virker med dette valget, importer LDAP-tjenerens SSL-sertifikat i %s-serveren din.", "Cache Time-To-Live" => "Levetid i mellomlager", diff --git a/apps/user_ldap/l10n/nl.php b/apps/user_ldap/l10n/nl.php index d1ffd4f00d4..5698f8a6f1d 100644 --- a/apps/user_ldap/l10n/nl.php +++ b/apps/user_ldap/l10n/nl.php @@ -70,7 +70,6 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Backup (Replica) Poort", "Disable Main Server" => "Deactiveren hoofdserver", "Only connect to the replica server." => "Maak alleen een verbinding met de replica server.", -"Case insensitve LDAP server (Windows)" => "Niet-hoofdlettergevoelige LDAP server (Windows)", "Turn off SSL certificate validation." => "Schakel SSL certificaat validatie uit.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Niet aanbevolen, gebruik alleen om te testen! Als de connectie alleen werkt met deze optie, importeer dan het SSL-certificaat van de LDAP-server naar uw %s server.", "Cache Time-To-Live" => "Cache time-to-live", diff --git a/apps/user_ldap/l10n/pl.php b/apps/user_ldap/l10n/pl.php index 69a94ec693c..877dff4d97f 100644 --- a/apps/user_ldap/l10n/pl.php +++ b/apps/user_ldap/l10n/pl.php @@ -70,7 +70,6 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Kopia zapasowa (repliki) Port", "Disable Main Server" => "Wyłącz serwer główny", "Only connect to the replica server." => "Połącz tylko do repliki serwera.", -"Case insensitve LDAP server (Windows)" => "Wielkość liter serwera LDAP (Windows)", "Turn off SSL certificate validation." => "Wyłączyć sprawdzanie poprawności certyfikatu SSL.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Nie polecane, używać tylko w celu testowania! Jeśli połączenie działa tylko z tą opcją, zaimportuj certyfikat SSL serwera LDAP na swój %s.", "Cache Time-To-Live" => "Przechowuj czas życia", diff --git a/apps/user_ldap/l10n/pt_BR.php b/apps/user_ldap/l10n/pt_BR.php index 844024a953d..1cfdce7cabd 100644 --- a/apps/user_ldap/l10n/pt_BR.php +++ b/apps/user_ldap/l10n/pt_BR.php @@ -70,7 +70,6 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Porta do Backup (Réplica)", "Disable Main Server" => "Desativar Servidor Principal", "Only connect to the replica server." => "Conectar-se somente ao servidor de réplica.", -"Case insensitve LDAP server (Windows)" => "Servidor LDAP sensível à caixa alta (Windows)", "Turn off SSL certificate validation." => "Desligar validação de certificado SSL.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Não recomendado, use-o somente para teste! Se a conexão só funciona com esta opção, importar o certificado SSL do servidor LDAP em seu servidor %s.", "Cache Time-To-Live" => "Cache Time-To-Live", diff --git a/apps/user_ldap/l10n/pt_PT.php b/apps/user_ldap/l10n/pt_PT.php index 37142c8175a..e2754785c65 100644 --- a/apps/user_ldap/l10n/pt_PT.php +++ b/apps/user_ldap/l10n/pt_PT.php @@ -65,7 +65,6 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Porta do servidor de backup (Replica)", "Disable Main Server" => "Desactivar servidor principal", "Only connect to the replica server." => "Ligar apenas ao servidor de réplicas.", -"Case insensitve LDAP server (Windows)" => "Servidor LDAP (Windows) não sensível a maiúsculas.", "Turn off SSL certificate validation." => "Desligar a validação de certificado SSL.", "Cache Time-To-Live" => "Cache do tempo de vida dos objetos no servidor", "in seconds. A change empties the cache." => "em segundos. Uma alteração esvazia a cache.", diff --git a/apps/user_ldap/l10n/ro.php b/apps/user_ldap/l10n/ro.php index 0214be3f787..26394db0f85 100644 --- a/apps/user_ldap/l10n/ro.php +++ b/apps/user_ldap/l10n/ro.php @@ -19,7 +19,6 @@ $TRANSLATIONS = array( "Back" => "Înapoi", "Continue" => "Continuă", "Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "Atenție Modulul PHP LDAP nu este instalat, infrastructura nu va funcționa. Contactează administratorul sistemului pentru al instala.", -"Case insensitve LDAP server (Windows)" => "Server LDAP insensibil la majuscule (Windows)", "Turn off SSL certificate validation." => "Oprește validarea certificatelor SSL ", "in seconds. A change empties the cache." => "în secunde. O schimbare curăță memoria tampon.", "User Display Name Field" => "Câmpul cu numele vizibil al utilizatorului", diff --git a/apps/user_ldap/l10n/ru.php b/apps/user_ldap/l10n/ru.php index d9685368cbc..2cf331d24c0 100644 --- a/apps/user_ldap/l10n/ru.php +++ b/apps/user_ldap/l10n/ru.php @@ -67,7 +67,6 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Порт резервного сервера", "Disable Main Server" => "Отключить главный сервер", "Only connect to the replica server." => "Подключаться только к серверу-реплике.", -"Case insensitve LDAP server (Windows)" => "Нечувствительный к регистру сервер LDAP (Windows)", "Turn off SSL certificate validation." => "Отключить проверку сертификата SSL.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Не рекомендуется, используйте только в режиме тестирования! Если соединение работает только с этой опцией, импортируйте на ваш %s сервер SSL-сертификат сервера LDAP.", "Cache Time-To-Live" => "Кэш времени жизни", diff --git a/apps/user_ldap/l10n/sk_SK.php b/apps/user_ldap/l10n/sk_SK.php index 460064593ee..edda4244336 100644 --- a/apps/user_ldap/l10n/sk_SK.php +++ b/apps/user_ldap/l10n/sk_SK.php @@ -67,7 +67,6 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Záložný server (kópia) port", "Disable Main Server" => "Zakázať hlavný server", "Only connect to the replica server." => "Pripojiť sa len k záložnému serveru.", -"Case insensitve LDAP server (Windows)" => "LDAP server nerozlišuje veľkosť znakov (Windows)", "Turn off SSL certificate validation." => "Vypnúť overovanie SSL certifikátu.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Neodporúčané, použite iba pri testovaní! Pokiaľ spojenie funguje iba z daným nastavením, importujte SSL certifikát LDAP servera do vášho %s servera.", "Cache Time-To-Live" => "Životnosť objektov vo vyrovnávacej pamäti", diff --git a/apps/user_ldap/l10n/sl.php b/apps/user_ldap/l10n/sl.php index b6df62ffb79..54c91103a3e 100644 --- a/apps/user_ldap/l10n/sl.php +++ b/apps/user_ldap/l10n/sl.php @@ -67,7 +67,6 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Vrata varnostne kopije (replike)", "Disable Main Server" => "Onemogoči glavni strežnik", "Only connect to the replica server." => "Poveži le s podvojenim strežnikom.", -"Case insensitve LDAP server (Windows)" => "Strežnik LDAP ne upošteva velikosti črk (Windows)", "Turn off SSL certificate validation." => "Onemogoči določanje veljavnosti potrdila SSL.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Možnosti ni priporočljivo uporabiti; namenjena je zgolj preizkušanju! Če deluje povezava le s to možnostjo, je treba uvoziti potrdilo SSL strežnika LDAP na strežnik %s.", "Cache Time-To-Live" => "Predpomni podatke TTL", diff --git a/apps/user_ldap/l10n/sq.php b/apps/user_ldap/l10n/sq.php index 0f18ac02351..03ff204bbca 100644 --- a/apps/user_ldap/l10n/sq.php +++ b/apps/user_ldap/l10n/sq.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "Give an optional backup host. It must be a replica of the main LDAP/AD server." => "Jepni një pritës rezervë. Duhet të jetë replikimi i serverit AD/LDAP kryesor.", "Backup (Replica) Port" => "Porta rezervë (Replika)", "Disable Main Server" => "Ç'aktivizoni serverin kryesor", -"Case insensitve LDAP server (Windows)" => " Server LDAP i pavëmëndshëm ndaj gërmëzimit të madh apo jo (Windows)", "Turn off SSL certificate validation." => "Ç'aktivizoni kontrollin e certifikatës SSL.", "Cache Time-To-Live" => "Cache Time-To-Live", "in seconds. A change empties the cache." => "në sekonda Ndryshimi boshatis 'cache'-n.", diff --git a/apps/user_ldap/l10n/sr.php b/apps/user_ldap/l10n/sr.php index d2ce2cf08b6..fb016fdd17e 100644 --- a/apps/user_ldap/l10n/sr.php +++ b/apps/user_ldap/l10n/sr.php @@ -14,7 +14,6 @@ $TRANSLATIONS = array( "Password" => "Лозинка", "For anonymous access, leave DN and Password empty." => "За анониман приступ, оставите поља DN и лозинка празним.", "Back" => "Назад", -"Case insensitve LDAP server (Windows)" => "LDAP сервер осетљив на велика и мала слова (Windows)", "Turn off SSL certificate validation." => "Искључите потврду SSL сертификата.", "in seconds. A change empties the cache." => "у секундама. Промена испражњава кеш меморију.", "User Display Name Field" => "Име приказа корисника", diff --git a/apps/user_ldap/l10n/sv.php b/apps/user_ldap/l10n/sv.php index 6a4ed0c7204..1283b16c7d1 100644 --- a/apps/user_ldap/l10n/sv.php +++ b/apps/user_ldap/l10n/sv.php @@ -70,7 +70,6 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Säkerhetskopierins-port (Replika)", "Disable Main Server" => "Inaktivera huvudserver", "Only connect to the replica server." => "Anslut endast till replikaservern.", -"Case insensitve LDAP server (Windows)" => "LDAP-servern är okänslig för gemener och versaler (Windows)", "Turn off SSL certificate validation." => "Stäng av verifiering av SSL-certifikat.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Rekommenderas inte, använd endast för test! Om anslutningen bara fungerar med denna inställning behöver du importera LDAP-serverns SSL-certifikat till din %s server.", "Cache Time-To-Live" => "Cache Time-To-Live", diff --git a/apps/user_ldap/l10n/ta_LK.php b/apps/user_ldap/l10n/ta_LK.php index c7efcf05894..27a3068f963 100644 --- a/apps/user_ldap/l10n/ta_LK.php +++ b/apps/user_ldap/l10n/ta_LK.php @@ -13,7 +13,6 @@ $TRANSLATIONS = array( "Password" => "கடவுச்சொல்", "You can specify Base DN for users and groups in the Advanced tab" => "நீங்கள் பயனாளர்களுக்கும் மேன்மை தத்தலில் உள்ள குழுவிற்கும் தள DN ஐ குறிப்பிடலாம் ", "Back" => "பின்னுக்கு", -"Case insensitve LDAP server (Windows)" => "உணர்ச்சியான LDAP சேவையகம் (சாளரங்கள்)", "Turn off SSL certificate validation." => "SSL சான்றிதழின் செல்லுபடியை நிறுத்திவிடவும்", "in seconds. A change empties the cache." => "செக்கன்களில். ஒரு மாற்றம் இடைமாற்றுநினைவகத்தை வெற்றிடமாக்கும்.", "User Display Name Field" => "பயனாளர் காட்சிப்பெயர் புலம்", diff --git a/apps/user_ldap/l10n/th_TH.php b/apps/user_ldap/l10n/th_TH.php index 2202a2f0a83..1c6dbe0473f 100644 --- a/apps/user_ldap/l10n/th_TH.php +++ b/apps/user_ldap/l10n/th_TH.php @@ -31,7 +31,6 @@ $TRANSLATIONS = array( "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" => "ตั้งค่าการเชื่อมต่อ", "Disable Main Server" => "ปิดใช้งานเซิร์ฟเวอร์หลัก", -"Case insensitve LDAP server (Windows)" => "เซิร์ฟเวอร์ LDAP ประเภท Case insensitive (วินโดวส์)", "Turn off SSL certificate validation." => "ปิดใช้งานการตรวจสอบความถูกต้องของใบรับรองความปลอดภัย SSL", "in seconds. A change empties the cache." => "ในอีกไม่กี่วินาที ระบบจะเปลี่ยนแปลงข้อมูลในแคชให้ว่างเปล่า", "Directory Settings" => "ตั้งค่าไดเร็กทอรี่", diff --git a/apps/user_ldap/l10n/tr.php b/apps/user_ldap/l10n/tr.php index d654b4e2416..fde3db85d48 100644 --- a/apps/user_ldap/l10n/tr.php +++ b/apps/user_ldap/l10n/tr.php @@ -45,48 +45,47 @@ $TRANSLATIONS = array( "LDAP Email Address:" => "LDAP E-posta Adresi:", "Other Attributes:" => "Diğer Nitelikler", "Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action. Example: \"uid=%%uid\"" => "Oturum açma girişimi olduğunda uygulanacak filtreyi tanımlar. %%uid, oturum işleminde kullanıcı adı ile değiştirilir. Örneğin: \"uid=%%uid\"", -"Add Server Configuration" => "Sunucu Uyunlama birlemek ", +"Add Server Configuration" => "Sunucu Yapılandırması Ekle", "Host" => "Sunucu", -"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Protokol atlamak edesin, sadece SSL istiyorsaniz. O zaman, idapsile baslamak. ", +"You can omit the protocol, except you require SSL. Then start with ldaps://" => "SSL gerektirmediğiniz takdirde protokol belirtmeyebilirsiniz. Ardından ldaps:// ile başlayın", "Port" => "Port", "User DN" => "Kullanıcı DN", -"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "DN musterinin, kimle baglamaya yapacagiz,meselâ uid=agent.dc mesela, dc=com Gecinme adisiz ici, DN ve Parola bos birakmak. ", +"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "İstemci kullanıcısının yapılacağı atamanın DN'i örn. uid=agent,dc=örnek,dc=com. Anonim erişim için DN ve Parolayı boş bırakın.", "Password" => "Parola", "For anonymous access, leave DN and Password empty." => "Anonim erişim için DN ve Parola alanlarını boş bırakın.", -"One Base DN per line" => "Bir Tabani DN herbir dizi. ", -"You can specify Base DN for users and groups in the Advanced tab" => "Base DN kullanicileri ve kaynaklari icin tablosu Advanced tayin etmek ederiz. ", +"One Base DN per line" => "Her satırda tek bir Base DN", +"You can specify Base DN for users and groups in the Advanced tab" => "Gelişmiş sekmesinde kullanıcılar ve gruplar için Base DN belirtebilirsiniz.", "Limit %s access to users meeting these criteria:" => "%s erişimini, şu kriterle eşleşen kullanıcılara sınırla:", "The filter specifies which LDAP users shall have access to the %s instance." => "Filtre, %s örneğine erişmesi gereken LDAP kullanıcılarını belirtir.", "users found" => "kullanıcı bulundu", "Back" => "Geri", "Continue" => "Devam et", "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." => "Uyarı: user_ldap ve user_webdavauth uygulamaları uyumlu değil. Beklenmedik bir davranışla karşılaşabilirsiniz. Lütfen ikisinden birini devre dışı bırakmak için sistem yöneticinizle iletişime geçin.", -"Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "Ihbar Modulu PHP LDAP yuklemdi degil, backend calismacak. Lutfen sistem yonetici sormak yuklemek icin.", +"Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "Uyarı: PHP LDAP modülü kurulu değil, arka uç çalışmayacak. Lütfen kurulumu için sistem yöneticinizle iletişime geçin.", "Connection Settings" => "Bağlantı ayarları", "Configuration Active" => "Yapılandırma Etkin", -"When unchecked, this configuration will be skipped." => "Ne zaman iptal, bu uynnlama isletici ", -"Backup (Replica) Host" => "Sigorta Kopya Cephe ", -"Give an optional backup host. It must be a replica of the main LDAP/AD server." => "Bir kopya cevre vermek, kopya sunucu onemli olmali. ", -"Backup (Replica) Port" => "Kopya Port ", +"When unchecked, this configuration will be skipped." => "İşaretli değilse, bu yapılandırma atlanacaktır.", +"Backup (Replica) Host" => "Yedek (Replica) Sunucu", +"Give an optional backup host. It must be a replica of the main LDAP/AD server." => "İsteğe bağlı bir yedek sunucusu belirtin. Ana LDAP/AD sunucusunun bir kopyası olmalıdır.", +"Backup (Replica) Port" => "Yedek (Replica) Bağlantı Noktası", "Disable Main Server" => "Ana sunucuyu devredışı birak", "Only connect to the replica server." => "Sadece kopya sunucuya bağlan.", -"Case insensitve LDAP server (Windows)" => "Dusme sunucu LDAP zor degil. (Windows)", "Turn off SSL certificate validation." => "SSL sertifika doğrulamasını kapat.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Önerilmez, sadece test için kullanın! Eğer bağlantı sadece bu seçenekle çalışıyorsa %s sunucunuza LDAP sunucusunun SSL sertifikasını ekleyin.", -"Cache Time-To-Live" => "Cache Time-To-Live ", +"Cache Time-To-Live" => "Önbellek Time-To-Live Değeri", "in seconds. A change empties the cache." => "saniye cinsinden. Bir değişiklik önbelleği temizleyecektir.", -"Directory Settings" => "Parametrar Listesin Adresinin ", -"User Display Name Field" => "Ekran Adi Kullanici, (Alan Adi Kullanici Ekrane)", +"Directory Settings" => "Dizin Ayarları", +"User Display Name Field" => "Kullanıcı Görünen Ad Alanı", "The LDAP attribute to use to generate the user's display name." => "Kullanıcının görünen adını oluşturmak için kullanılacak LDAP niteliği.", "Base User Tree" => "Temel Kullanıcı Ağacı", -"One User Base DN per line" => "Bir Temel Kullanici DN her dizgi ", -"User Search Attributes" => "Kategorii Arama Kullanici ", +"One User Base DN per line" => "Her satırda Tek Kullanıcı Base DN'i", +"User Search Attributes" => "Kullanıcı Arama Nitelikleri", "Optional; one attribute per line" => "Tercihe bağlı; her bir satırda bir öznitelik", -"Group Display Name Field" => "Grub Ekrane Alani Adi", +"Group Display Name Field" => "Grup Görünen Ad Alanı", "The LDAP attribute to use to generate the groups's display name." => "Grubun görünen adını oluşturmak için kullanılacak LDAP niteliği.", "Base Group Tree" => "Temel Grup Ağacı", -"One Group Base DN per line" => "Bir Grubu Tabani DN her dizgi. ", -"Group Search Attributes" => "Kategorii Arama Grubu", +"One Group Base DN per line" => "Her satırda Tek Grup Base DN'i", +"Group Search Attributes" => "Grup Arama Nitelikleri", "Group-Member association" => "Grup-Üye işbirliği", "Nested Groups" => "İç içe Gruplar", "When switched on, groups that contain groups are supported. (Only works if the group member attribute contains DNs.)" => "Etkinleştirildiğinde, grup içeren gruplar desteklenir (Sadece grup üyesi DN niteliği içeriyorsa çalışır).", diff --git a/apps/user_ldap/l10n/uk.php b/apps/user_ldap/l10n/uk.php index e87348ec44d..5f4db6d5a03 100644 --- a/apps/user_ldap/l10n/uk.php +++ b/apps/user_ldap/l10n/uk.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "Give an optional backup host. It must be a replica of the main LDAP/AD server." => "Вкажіть додатковий резервний сервер. Він повинен бути копією головного LDAP/AD сервера.", "Backup (Replica) Port" => "Порт сервера для резервних копій", "Disable Main Server" => "Вимкнути Головний Сервер", -"Case insensitve LDAP server (Windows)" => "Нечутливий до регістру LDAP сервер (Windows)", "Turn off SSL certificate validation." => "Вимкнути перевірку SSL сертифіката.", "Cache Time-To-Live" => "Час актуальності Кеша", "in seconds. A change empties the cache." => "в секундах. Зміна очищує кеш.", diff --git a/apps/user_ldap/l10n/vi.php b/apps/user_ldap/l10n/vi.php index 84d001cb596..21b9783897e 100644 --- a/apps/user_ldap/l10n/vi.php +++ b/apps/user_ldap/l10n/vi.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Connection Settings" => "Connection Settings", "Backup (Replica) Port" => "Cổng sao lưu (Replica)", "Disable Main Server" => "Tắt máy chủ chính", -"Case insensitve LDAP server (Windows)" => "Trường hợp insensitve LDAP máy chủ (Windows)", "Turn off SSL certificate validation." => "Tắt xác thực chứng nhận SSL", "in seconds. A change empties the cache." => "trong vài giây. Một sự thay đổi bộ nhớ cache.", "Directory Settings" => "Directory Settings", diff --git a/apps/user_ldap/l10n/zh_CN.php b/apps/user_ldap/l10n/zh_CN.php index aae100ef9ad..d56f394f644 100644 --- a/apps/user_ldap/l10n/zh_CN.php +++ b/apps/user_ldap/l10n/zh_CN.php @@ -42,7 +42,6 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "备份 (镜像) 端口", "Disable Main Server" => "禁用主服务器", "Only connect to the replica server." => "只能连接到复制服务器", -"Case insensitve LDAP server (Windows)" => "大小写敏感LDAP服务器(Windows)", "Turn off SSL certificate validation." => "关闭SSL证书验证", "Cache Time-To-Live" => "缓存存活时间", "in seconds. A change empties the cache." => "以秒计。修改将清空缓存。", diff --git a/apps/user_ldap/l10n/zh_TW.php b/apps/user_ldap/l10n/zh_TW.php index a7ae04cd167..a0975b92238 100644 --- a/apps/user_ldap/l10n/zh_TW.php +++ b/apps/user_ldap/l10n/zh_TW.php @@ -41,7 +41,6 @@ $TRANSLATIONS = array( "Give an optional backup host. It must be a replica of the main LDAP/AD server." => "可以選擇性設定備用主機,必須是 LDAP/AD 中央伺服器的複本。", "Backup (Replica) Port" => "備用(複本)連接埠", "Disable Main Server" => "停用主伺服器", -"Case insensitve LDAP server (Windows)" => "不區分大小寫的 LDAP 伺服器 (Windows)", "Turn off SSL certificate validation." => "關閉 SSL 憑證檢查", "Cache Time-To-Live" => "快取的存活時間", "in seconds. A change empties the cache." => "以秒為單位。變更後會清空快取。", diff --git a/l10n/ach/settings.po b/l10n/ach/settings.po index ebba9b13098..155b27a4f72 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: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "" @@ -84,6 +84,20 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -126,32 +140,32 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +217,7 @@ msgstr "" msgid "Error" msgstr "" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "" @@ -211,31 +225,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +298,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "" @@ -589,11 +603,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "" @@ -664,108 +678,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/ach/user_ldap.po b/l10n/ach/user_ldap.po index 8ca354d2020..5b84c3724ba 100644 --- a/l10n/ach/user_ldap.po +++ b/l10n/ach/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -144,7 +144,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -335,7 +335,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/ady/settings.po b/l10n/ady/settings.po index 334e9c42e7f..4a8e95a3bed 100644 --- a/l10n/ady/settings.po +++ b/l10n/ady/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "" @@ -84,6 +84,20 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -126,32 +140,32 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +217,7 @@ msgstr "" msgid "Error" msgstr "" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "" @@ -211,31 +225,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +298,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "" @@ -589,11 +603,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "" @@ -664,108 +678,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/ady/user_ldap.po b/l10n/ady/user_ldap.po index 04cdd0397c4..d4f2a71490e 100644 --- a/l10n/ady/user_ldap.po +++ b/l10n/ady/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" "MIME-Version: 1.0\n" @@ -144,7 +144,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -335,7 +335,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/af/settings.po b/l10n/af/settings.po index d312d89bbf6..a8e15047a71 100644 --- a/l10n/af/settings.po +++ b/l10n/af/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "" @@ -84,6 +84,20 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -126,32 +140,32 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +217,7 @@ msgstr "" msgid "Error" msgstr "" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "" @@ -211,31 +225,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +298,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "" @@ -589,11 +603,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "" @@ -664,108 +678,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/af/user_ldap.po b/l10n/af/user_ldap.po index b0e9bc1b3ab..f4e1df7a951 100644 --- a/l10n/af/user_ldap.po +++ b/l10n/af/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" @@ -144,7 +144,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -335,7 +335,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/af_ZA/settings.po b/l10n/af_ZA/settings.po index 92e777a3d53..de9915079a2 100644 --- a/l10n/af_ZA/settings.po +++ b/l10n/af_ZA/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "" @@ -84,6 +84,20 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -126,32 +140,32 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +217,7 @@ msgstr "" msgid "Error" msgstr "" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "" @@ -211,31 +225,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +298,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "" @@ -589,11 +603,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "" @@ -664,108 +678,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Wagwoord" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "Nuwe wagwoord" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/af_ZA/user_ldap.po b/l10n/af_ZA/user_ldap.po index 581eb34d236..a22ec0c215a 100644 --- a/l10n/af_ZA/user_ldap.po +++ b/l10n/af_ZA/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -144,7 +144,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -335,7 +335,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/ak/settings.po b/l10n/ak/settings.po index cb7953cc98c..27711c91512 100644 --- a/l10n/ak/settings.po +++ b/l10n/ak/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "" @@ -84,6 +84,20 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -126,32 +140,32 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +217,7 @@ msgstr "" msgid "Error" msgstr "" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "" @@ -211,31 +225,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +298,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "" @@ -589,11 +603,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "" @@ -664,108 +678,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/ak/user_ldap.po b/l10n/ak/user_ldap.po index 2dae2aaf95c..8e625a32174 100644 --- a/l10n/ak/user_ldap.po +++ b/l10n/ak/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" @@ -144,7 +144,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -335,7 +335,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/am_ET/settings.po b/l10n/am_ET/settings.po index f2886d1023c..6aa770b32ef 100644 --- a/l10n/am_ET/settings.po +++ b/l10n/am_ET/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "" @@ -84,6 +84,20 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -126,32 +140,32 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +217,7 @@ msgstr "" msgid "Error" msgstr "" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "" @@ -211,31 +225,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +298,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "" @@ -589,11 +603,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "" @@ -664,108 +678,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/am_ET/user_ldap.po b/l10n/am_ET/user_ldap.po index 0dc3459fe7e..ba789c234bc 100644 --- a/l10n/am_ET/user_ldap.po +++ b/l10n/am_ET/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" "MIME-Version: 1.0\n" @@ -144,7 +144,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -335,7 +335,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 9a4af6d1886..a060a79595e 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" @@ -87,6 +87,20 @@ msgstr "المجموعة موجودة مسبقاً" msgid "Unable to add group" msgstr "فشل إضافة المجموعة" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "تم حفظ البريد الإلكتروني" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index 3b92bebccea..099e7c57dbb 100644 --- a/l10n/ar/user_ldap.po +++ b/l10n/ar/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -153,7 +153,7 @@ msgstr[5] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -344,7 +344,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/ast/settings.po b/l10n/ast/settings.po index 0c2cf566e17..4213935f560 100644 --- a/l10n/ast/settings.po +++ b/l10n/ast/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 21:20+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -84,6 +84,20 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" diff --git a/l10n/ast/user_ldap.po b/l10n/ast/user_ldap.po index 2ee3b4bb024..b5982a3e6ee 100644 --- a/l10n/ast/user_ldap.po +++ b/l10n/ast/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 21:20+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -335,7 +335,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/az/settings.po b/l10n/az/settings.po index b43ce968a40..fbc31d71164 100644 --- a/l10n/az/settings.po +++ b/l10n/az/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "" @@ -84,6 +84,20 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -126,32 +140,32 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +217,7 @@ msgstr "" msgid "Error" msgstr "" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "" @@ -211,31 +225,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +298,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "" @@ -589,11 +603,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "" @@ -664,108 +678,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/az/user_ldap.po b/l10n/az/user_ldap.po index df36a475ca0..1da919a2bd9 100644 --- a/l10n/az/user_ldap.po +++ b/l10n/az/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" @@ -144,7 +144,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -335,7 +335,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/be/settings.po b/l10n/be/settings.po index 1209b101c88..5e4b84e7979 100644 --- a/l10n/be/settings.po +++ b/l10n/be/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "" @@ -84,6 +84,20 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -126,32 +140,32 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +217,7 @@ msgstr "" msgid "Error" msgstr "Памылка" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "" @@ -211,31 +225,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +298,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "" @@ -589,11 +603,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "" @@ -664,108 +678,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/be/user_ldap.po b/l10n/be/user_ldap.po index ba05cf01fbb..1f41c805ed0 100644 --- a/l10n/be/user_ldap.po +++ b/l10n/be/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -148,7 +148,7 @@ msgstr[3] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -339,7 +339,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 1b3b08d1c86..2664120b65b 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "Криптиране" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Възникна проблем с идентификацията" @@ -84,6 +84,20 @@ msgstr "Групата вече съществува" msgid "Unable to add group" msgstr "Невъзможно добавяне на група" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Email адреса е записан" @@ -126,32 +140,32 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +217,7 @@ msgstr "" msgid "Error" msgstr "Грешка" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "Обновяване" @@ -211,31 +225,31 @@ msgstr "Обновяване" msgid "Updated" msgstr "Обновено" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +298,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "__language_name__" @@ -589,11 +603,11 @@ msgstr "Още" msgid "Less" msgstr "По-малко" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "Версия" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "" @@ -664,108 +678,108 @@ msgstr "Покажи настройките за първоначално зар msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Парола" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "Промяната на паролата не беше извършена" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "Текуща парола" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "Нова парола" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "Промяна на паролата" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "E-mail" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "Вашия email адрес" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Отказ" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "Език" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "Помогнете с превода" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index 240293f936f..8d6fc125002 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -144,7 +144,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -335,7 +335,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index 6262dfa6513..714eea5d5db 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "সংকেতায়ন" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "অ্যাপস্টোর থেকে তালিকা লোড করতে সক্ষম নয়" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "অনুমোদন ঘটিত সমস্যা" @@ -84,6 +84,20 @@ msgstr "গোষ্ঠীটি পূর্ব থেকেই বিদ্য msgid "Unable to add group" msgstr "গোষ্ঠী যোগ করা সম্ভব হলো না" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "ই-মেইল সংরক্ষন করা হয়েছে" @@ -126,32 +140,32 @@ msgstr "%s গোষ্ঠী থেকে ব্যবহারকারীক msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +217,7 @@ msgstr "" msgid "Error" msgstr "সমস্যা" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "পরিবর্ধন" @@ -211,31 +225,31 @@ msgstr "পরিবর্ধন" msgid "Updated" msgstr "" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +298,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "__language_name__" @@ -589,11 +603,11 @@ msgstr "বেশী" msgid "Less" msgstr "কম" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "ভার্সন" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "-লাইসেন্সধারী " @@ -664,108 +678,108 @@ msgstr "প্রথমবার চালানোর যাদুকর পূ msgid "You have used %s of the available %s" msgstr "আপনি ব্যবহার করছেন %s, সুলভ %s এর মধ্যে।" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "কূটশব্দ" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "আপনার কূটশব্দটি পরিবর্তন করা হয়েছে " -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "আপনার কূটশব্দটি পরিবর্তন করতে সক্ষম নয়" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "বর্তমান কূটশব্দ" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "নতুন কূটশব্দ" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "কূটশব্দ পরিবর্তন করুন" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "ইমেইল" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "আপনার ই-মেইল ঠিকানা" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "বাতির" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "ভাষা" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "অনুবাদ করতে সহায়তা করুন" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index 4c9a205b7bf..fc175fe7b19 100644 --- a/l10n/bn_BD/user_ldap.po +++ b/l10n/bn_BD/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -144,7 +144,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -335,8 +335,8 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr "বর্ণ অসংবেদী LDAP সার্ভার (উইন্ডোজ)" +msgid "Case insensitive LDAP server (Windows)" +msgstr "" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/bs/settings.po b/l10n/bs/settings.po index 42c0053daf9..8ec5e987328 100644 --- a/l10n/bs/settings.po +++ b/l10n/bs/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "" @@ -84,6 +84,20 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -126,32 +140,32 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +217,7 @@ msgstr "" msgid "Error" msgstr "" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "" @@ -211,31 +225,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +298,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "" @@ -589,11 +603,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "" @@ -664,108 +678,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/bs/user_ldap.po b/l10n/bs/user_ldap.po index b4625092d33..e1eafb2bda3 100644 --- a/l10n/bs/user_ldap.po +++ b/l10n/bs/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -146,7 +146,7 @@ msgstr[2] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -337,7 +337,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index ec8cf451845..7ffe58d8430 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" -"Last-Translator: Josep Torné \n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"Last-Translator: I Robot\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" @@ -87,6 +87,20 @@ msgstr "El grup ja existeix" msgid "Unable to add group" msgstr "No es pot afegir el grup" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "S'ha desat el correu electrònic" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index 30ed5e7f450..aef03207a47 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -147,7 +147,7 @@ msgstr[1] "S'han trobat %s usuaris" msgid "Invalid Host" msgstr "Ordinador central no vàlid" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "La característica desitjada no s'ha trobat" @@ -338,8 +338,8 @@ msgid "Only connect to the replica server." msgstr "Connecta només al servidor rèplica." #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr "Servidor LDAP sense distinció entre majúscules i minúscules (Windows)" +msgid "Case insensitive LDAP server (Windows)" +msgstr "" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index b9a259d6d43..bec55e22dce 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" -"Last-Translator: m23 \n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" @@ -91,6 +91,20 @@ msgstr "Skupina již existuje" msgid "Unable to add group" msgstr "Nelze přidat skupinu" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "E-mail uložen" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index c2845ec7a58..43b906dd51f 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -152,7 +152,7 @@ msgstr[2] "nalezeno %s uživatelů" msgid "Invalid Host" msgstr "Neplatný hostitel" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "Nelze nalézt požadovanou vlastnost" @@ -343,8 +343,8 @@ msgid "Only connect to the replica server." msgstr "Připojit jen k záložnímu serveru." #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr "LDAP server nerozlišující velikost znaků (Windows)" +msgid "Case insensitive LDAP server (Windows)" +msgstr "" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index d9646c0cc2e..b87749dd3cc 100644 --- a/l10n/cy_GB/settings.po +++ b/l10n/cy_GB/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "Amgryptiad" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Gwall dilysu" @@ -84,6 +84,20 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -126,32 +140,32 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +217,7 @@ msgstr "" msgid "Error" msgstr "Gwall" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "" @@ -211,31 +225,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +298,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "" @@ -589,11 +603,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "" @@ -664,108 +678,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Cyfrinair" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "Cyfrinair newydd" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "E-bost" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Diddymu" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po index e7a8c333fd3..63aa7c5f7f0 100644 --- a/l10n/cy_GB/user_ldap.po +++ b/l10n/cy_GB/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -148,7 +148,7 @@ msgstr[3] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -339,7 +339,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 2841b8d5188..9ca89c1f9f6 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" -"Last-Translator: Sappe\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -88,6 +88,20 @@ msgstr "Gruppen findes allerede" msgid "Unable to add group" msgstr "Gruppen kan ikke oprettes" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Email adresse gemt" diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index d97bda300db..0ad1952c0f8 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -145,7 +145,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -336,8 +336,8 @@ msgid "Only connect to the replica server." msgstr "Forbind kun til replika serveren." #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr "Ikke versalfølsom LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" +msgstr "" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/de/settings.po b/l10n/de/settings.po index bee681657b5..36bbb05b66f 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" -"Last-Translator: kabum \n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" @@ -93,6 +93,20 @@ msgstr "Gruppe existiert bereits" msgid "Unable to add group" msgstr "Gruppe konnte nicht angelegt werden" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "E-Mail Adresse gespeichert" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index 527d5f8dce6..a91c8c7e8ef 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-11 01:54-0400\n" -"PO-Revision-Date: 2014-04-10 18:40+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -339,8 +339,8 @@ msgid "Only connect to the replica server." msgstr "Nur zum Replikat-Server verbinden." #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr "LDAP-Server (Windows: Groß- und Kleinschreibung bleibt unbeachtet)" +msgid "Case insensitive LDAP server (Windows)" +msgstr "" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/de_AT/settings.po b/l10n/de_AT/settings.po index 567f670a464..83997bae597 100644 --- a/l10n/de_AT/settings.po +++ b/l10n/de_AT/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -52,7 +52,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "" @@ -65,7 +65,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "" @@ -85,6 +85,20 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -127,32 +141,32 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -204,7 +218,7 @@ msgstr "" msgid "Error" msgstr "" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "" @@ -212,31 +226,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -285,7 +299,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "Deutsch (Österreich)" @@ -590,11 +604,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "" @@ -665,108 +679,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Passwort" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "E-Mail" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Abbrechen" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/de_AT/user_ldap.po b/l10n/de_AT/user_ldap.po index 23ae3177db3..9b848e6179d 100644 --- a/l10n/de_AT/user_ldap.po +++ b/l10n/de_AT/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -144,7 +144,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -335,7 +335,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/de_CH/settings.po b/l10n/de_CH/settings.po index adc54611f07..5ed5677b350 100644 --- a/l10n/de_CH/settings.po +++ b/l10n/de_CH/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" @@ -93,6 +93,20 @@ msgstr "Die Gruppe existiert bereits" msgid "Unable to add group" msgstr "Die Gruppe konnte nicht angelegt werden" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "E-Mail-Adresse gespeichert" diff --git a/l10n/de_CH/user_ldap.po b/l10n/de_CH/user_ldap.po index 2ae224c6325..58abb62b246 100644 --- a/l10n/de_CH/user_ldap.po +++ b/l10n/de_CH/user_ldap.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -152,7 +152,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -343,8 +343,8 @@ msgid "Only connect to the replica server." msgstr "Nur zum Replikat-Server verbinden." #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr "LDAP-Server (Windows: Gross- und Kleinschreibung bleibt unbeachtet)" +msgid "Case insensitive LDAP server (Windows)" +msgstr "" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 6dfc08877fd..cfca7fb3af9 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" -"Last-Translator: kabum \n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" @@ -93,6 +93,20 @@ msgstr "Die Gruppe existiert bereits" msgid "Unable to add group" msgstr "Die Gruppe konnte nicht angelegt werden" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "E-Mail-Adresse gespeichert" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index cfcb1ae0423..f82937c17bb 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-11 01:54-0400\n" -"PO-Revision-Date: 2014-04-10 18:40+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -341,8 +341,8 @@ msgid "Only connect to the replica server." msgstr "Nur zum Replikat-Server verbinden." #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr "LDAP-Server (Windows: Groß- und Kleinschreibung bleibt unbeachtet)" +msgid "Case insensitive LDAP server (Windows)" +msgstr "" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/el/settings.po b/l10n/el/settings.po index e59b95e37c3..1c0ee4b025c 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" -"Last-Translator: pe_ppe \n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -93,6 +93,20 @@ msgstr "Η ομάδα υπάρχει ήδη" msgid "Unable to add group" msgstr "Αδυναμία προσθήκης ομάδας" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Το email αποθηκεύτηκε " diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index 690afb7856d..b4d3fa0005e 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -147,7 +147,7 @@ msgstr[1] "%s χρήστες βρέθηκαν" msgid "Invalid Host" msgstr "Άκυρος εξυπηρετητής" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "Αδυναμία εύρεσης επιθυμητου χαρακτηριστικού" @@ -338,8 +338,8 @@ msgid "Only connect to the replica server." msgstr "Σύνδεση μόνο με το διακομιστή-αντίγραφο." #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr "LDAP server (Windows) με διάκριση πεζών-ΚΕΦΑΛΑΙΩΝ" +msgid "Case insensitive LDAP server (Windows)" +msgstr "" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/en@pirate/settings.po b/l10n/en@pirate/settings.po index 5860fa8a930..a654ee294bc 100644 --- a/l10n/en@pirate/settings.po +++ b/l10n/en@pirate/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "" @@ -84,6 +84,20 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -126,32 +140,32 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +217,7 @@ msgstr "" msgid "Error" msgstr "" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "" @@ -211,31 +225,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +298,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "" @@ -589,11 +603,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "" @@ -664,108 +678,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Passcode" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/en@pirate/user_ldap.po b/l10n/en@pirate/user_ldap.po index dc0cd36afee..68f450bd8db 100644 --- a/l10n/en@pirate/user_ldap.po +++ b/l10n/en@pirate/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -144,7 +144,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -335,7 +335,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/en_GB/settings.po b/l10n/en_GB/settings.po index 5d7ff3543fd..33774c3efd8 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: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" -"Last-Translator: mnestis \n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" @@ -85,6 +85,20 @@ msgstr "Group already exists" msgid "Unable to add group" msgstr "Unable to add group" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Email saved" diff --git a/l10n/en_GB/user_ldap.po b/l10n/en_GB/user_ldap.po index 005aa3cebae..eafbc2431a7 100644 --- a/l10n/en_GB/user_ldap.po +++ b/l10n/en_GB/user_ldap.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 12:10+0000\n" -"Last-Translator: mnestis \n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -145,7 +145,7 @@ msgstr[1] "%s users found" msgid "Invalid Host" msgstr "Invalid Host" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "Could not find the desired feature" @@ -336,8 +336,8 @@ msgid "Only connect to the replica server." msgstr "Only connect to the replica server." #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" +msgstr "" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 74f444b43e9..1e6a1f5730c 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "Ĉifrado" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "Ne eblis ŝargi liston el aplikaĵovendejo" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Aŭtentiga eraro" @@ -84,6 +84,20 @@ msgstr "La grupo jam ekzistas" msgid "Unable to add group" msgstr "Ne eblis aldoni la grupon" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "La retpoŝtadreso konserviĝis" @@ -126,32 +140,32 @@ msgstr "Ne eblis forigi la uzantan el la grupo %s" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +217,7 @@ msgstr "" msgid "Error" msgstr "Eraro" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "Ĝisdatigi" @@ -211,31 +225,31 @@ msgstr "Ĝisdatigi" msgid "Updated" msgstr "" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +298,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "Esperanto" @@ -589,11 +603,11 @@ msgstr "Pli" msgid "Less" msgstr "Malpli" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "Eldono" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "-permesilhavigita de " @@ -664,108 +678,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "Vi uzas %s el la haveblaj %s" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Pasvorto" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "Via pasvorto ŝanĝiĝis" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "Ne eblis ŝanĝi vian pasvorton" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "Nuna pasvorto" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "Nova pasvorto" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "Ŝanĝi la pasvorton" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "Retpoŝto" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "Via retpoŝta adreso" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "Profila bildo" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Nuligi" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "Lingvo" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "Helpu traduki" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index 83e2dc3b628..4f72ee12141 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -145,7 +145,7 @@ msgstr[1] "%s uzanto troviĝis" msgid "Invalid Host" msgstr "Nevalida gastigo" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -336,8 +336,8 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr "LDAP-servilo blinda je litergrandeco (Vindozo)" +msgid "Case insensitive LDAP server (Windows)" +msgstr "" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 058eac2fa3c..1f0cc298254 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" -"Last-Translator: juanman \n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" @@ -98,6 +98,20 @@ msgstr "El grupo ya existe" msgid "Unable to add group" msgstr "No se pudo añadir el grupo" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Correo electrónico guardado" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index 836a65c92ac..bad5b163ae3 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -153,7 +153,7 @@ msgstr[1] "Usuarios %s encontrados" msgid "Invalid Host" msgstr "Host inválido" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "No se puede encontrar la función deseada." @@ -344,8 +344,8 @@ msgid "Only connect to the replica server." msgstr "Conectar sólo con el servidor de réplica." #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr "Servidor de LDAP no sensible a mayúsculas/minúsculas (Windows)" +msgid "Case insensitive LDAP server (Windows)" +msgstr "" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index 3b2f8487931..9b4824686fb 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" @@ -87,6 +87,20 @@ msgstr "El grupo ya existe" msgid "Unable to add group" msgstr "No fue posible añadir el grupo" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "e-mail guardado" diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index 797a098e3a8..73731cacaba 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -146,7 +146,7 @@ msgstr[1] "%s usuarios encontrados" msgid "Invalid Host" msgstr "Host inválido" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "No se pudo encontrar la característica deseada" @@ -337,8 +337,8 @@ msgid "Only connect to the replica server." msgstr "Conectarse únicamente al servidor de réplica." #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr "Servidor de LDAP sensible a mayúsculas/minúsculas (Windows)" +msgid "Case insensitive LDAP server (Windows)" +msgstr "" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/es_CL/settings.po b/l10n/es_CL/settings.po index 602def0e1ee..872b1688798 100644 --- a/l10n/es_CL/settings.po +++ b/l10n/es_CL/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "" @@ -84,6 +84,20 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -126,32 +140,32 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +217,7 @@ msgstr "" msgid "Error" msgstr "Error" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "" @@ -211,31 +225,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +298,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "" @@ -589,11 +603,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "" @@ -664,108 +678,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Clave" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Cancelar" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/es_CL/user_ldap.po b/l10n/es_CL/user_ldap.po index f1d3cad48fb..2885d87d485 100644 --- a/l10n/es_CL/user_ldap.po +++ b/l10n/es_CL/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -144,7 +144,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -335,7 +335,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/es_MX/settings.po b/l10n/es_MX/settings.po index a2f997aea52..1e159b062bf 100644 --- a/l10n/es_MX/settings.po +++ b/l10n/es_MX/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -84,6 +84,20 @@ msgstr "El grupo ya existe" msgid "Unable to add group" msgstr "No se pudo añadir el grupo" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Correo electrónico guardado" diff --git a/l10n/es_MX/user_ldap.po b/l10n/es_MX/user_ldap.po index 7687611cb1c..d38b34e41c1 100644 --- a/l10n/es_MX/user_ldap.po +++ b/l10n/es_MX/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -144,7 +144,7 @@ msgstr[1] "Usuarios %s encontrados" msgid "Invalid Host" msgstr "Host inválido" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "No se puede encontrar la función deseada." @@ -335,8 +335,8 @@ msgid "Only connect to the replica server." msgstr "Conectar sólo con el servidor de réplica." #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr "Servidor de LDAP no sensible a mayúsculas/minúsculas (Windows)" +msgid "Case insensitive LDAP server (Windows)" +msgstr "" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 031b5521718..9da15a03581 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,6 +86,20 @@ msgstr "Grupp on juba olemas" msgid "Unable to add group" msgstr "Keela grupi lisamine" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Kiri on salvestatud" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index 01175efd2a3..fbb1bfb0860 100644 --- a/l10n/et_EE/user_ldap.po +++ b/l10n/et_EE/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -146,7 +146,7 @@ msgstr[1] "%s kasutajat leitud" msgid "Invalid Host" msgstr "Vigane server" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "Ei suuda leida soovitud funktsioonaalsust" @@ -337,8 +337,8 @@ msgid "Only connect to the replica server." msgstr "Ühendu ainult replitseeriva serveriga." #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr "Mittetõstutundlik LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" +msgstr "" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index 136a7c70e61..f9c9078b716 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" @@ -87,6 +87,20 @@ msgstr "Taldea dagoeneko existitzenda" msgid "Unable to add group" msgstr "Ezin izan da taldea gehitu" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Eposta gorde da" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 2b4fbff486d..980129d3920 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -145,7 +145,7 @@ msgstr[1] "%s erabiltzaile aurkitu dira" msgid "Invalid Host" msgstr "Baliogabeko hostalaria" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "Ezin izan da nahi zen ezaugarria aurkitu" @@ -336,8 +336,8 @@ msgid "Only connect to the replica server." msgstr "Konektatu bakarrik erreplika zerbitzarira" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr "Maiuskulak eta minuskulak ezberditzen ez dituen LDAP zerbitzaria (windows)" +msgid "Case insensitive LDAP server (Windows)" +msgstr "" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/eu_ES/settings.po b/l10n/eu_ES/settings.po index 4aa0c3e54f7..e0571110ac9 100644 --- a/l10n/eu_ES/settings.po +++ b/l10n/eu_ES/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "" @@ -84,6 +84,20 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -126,32 +140,32 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +217,7 @@ msgstr "" msgid "Error" msgstr "" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "" @@ -211,31 +225,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +298,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "" @@ -589,11 +603,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "" @@ -664,108 +678,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Ezeztatu" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/eu_ES/user_ldap.po b/l10n/eu_ES/user_ldap.po index 8e28c9a6557..2b77e0e7f41 100644 --- a/l10n/eu_ES/user_ldap.po +++ b/l10n/eu_ES/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -144,7 +144,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -335,7 +335,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index f963e25c9aa..7ca8e8d50e6 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" @@ -87,6 +87,20 @@ msgstr "این گروه در حال حاضر موجود است" msgid "Unable to add group" msgstr "افزودن گروه امکان پذیر نیست" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "ایمیل ذخیره شد" diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index 1a904629e87..4067fcff5aa 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -143,7 +143,7 @@ msgstr[0] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -334,8 +334,8 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr "غیر حساس به بزرگی و کوچکی حروف LDAP سرور (ویندوز)" +msgid "Case insensitive LDAP server (Windows)" +msgstr "" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 12029fb7fc9..b5422267fb5 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: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"Last-Translator: I Robot\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" @@ -85,6 +85,20 @@ msgstr "Ryhmä on jo olemassa" msgid "Unable to add group" msgstr "Ryhmän lisäys epäonnistui" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Sähköposti tallennettu" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index 4bd3ca6c6ae..a407df61fba 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -144,7 +144,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -335,8 +335,8 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr "Kirjainkoosta piittamaton LDAP-palvelin (Windows)" +msgid "Case insensitive LDAP server (Windows)" +msgstr "" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 364745b1f33..858a81483c6 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" -"Last-Translator: Christophe Lherieau \n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" @@ -95,6 +95,20 @@ msgstr "Ce groupe existe déjà" msgid "Unable to add group" msgstr "Impossible d'ajouter le groupe" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "E-mail sauvegardé" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index fb2c06ad2d8..7d63bd7bc47 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-11 01:54-0400\n" -"PO-Revision-Date: 2014-04-10 12:40+0000\n" -"Last-Translator: Christophe Lherieau \n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -338,8 +338,8 @@ msgid "Only connect to the replica server." msgstr "Se connecter uniquement au serveur de replica." #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr "Serveur LDAP insensible à la casse (Windows)" +msgid "Case insensitive LDAP server (Windows)" +msgstr "" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/fr_CA/settings.po b/l10n/fr_CA/settings.po index 845f2fc237a..dab733306ef 100644 --- a/l10n/fr_CA/settings.po +++ b/l10n/fr_CA/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (Canada) (http://www.transifex.com/projects/p/owncloud/language/fr_CA/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "" @@ -84,6 +84,20 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -126,32 +140,32 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +217,7 @@ msgstr "" msgid "Error" msgstr "" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "" @@ -211,31 +225,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +298,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "" @@ -589,11 +603,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "" @@ -664,108 +678,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/fr_CA/user_ldap.po b/l10n/fr_CA/user_ldap.po index 193204b8c23..2c1745b5fce 100644 --- a/l10n/fr_CA/user_ldap.po +++ b/l10n/fr_CA/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (Canada) (http://www.transifex.com/projects/p/owncloud/language/fr_CA/)\n" "MIME-Version: 1.0\n" @@ -144,7 +144,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -335,7 +335,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index c89f5caaf81..e3e5afbf144 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" @@ -86,6 +86,20 @@ msgstr "O grupo xa existe" msgid "Unable to add group" msgstr "Non é posíbel engadir o grupo" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Correo gardado" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index f9723ef2270..cf1287f612b 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 11:00+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -146,7 +146,7 @@ msgstr[1] "Atopáronse %s usuarios" msgid "Invalid Host" msgstr "Máquina incorrecta" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "Non foi posíbel atopar a función desexada" @@ -337,8 +337,8 @@ msgid "Only connect to the replica server." msgstr "Conectar só co servidor de réplica." #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr "Servidor LDAP que non distingue entre maiúsculas e minúsculas (Windows)" +msgid "Case insensitive LDAP server (Windows)" +msgstr "" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 1fa7bd0336e..81b69cc64db 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" @@ -85,6 +85,20 @@ msgstr "הקבוצה כבר קיימת" msgid "Unable to add group" msgstr "לא ניתן להוסיף קבוצה" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "הדוא״ל נשמר" diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index 761cc4181c9..5f680c4b2df 100644 --- a/l10n/he/user_ldap.po +++ b/l10n/he/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -145,7 +145,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -336,7 +336,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index 9b0da8d64aa..5bf71a571fd 100644 --- a/l10n/hi/settings.po +++ b/l10n/hi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "" @@ -84,6 +84,20 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -126,32 +140,32 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +217,7 @@ msgstr "" msgid "Error" msgstr "त्रुटि" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "अद्यतन" @@ -211,31 +225,31 @@ msgstr "अद्यतन" msgid "Updated" msgstr "" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +298,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "" @@ -589,11 +603,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "" @@ -664,108 +678,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "पासवर्ड" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "नया पासवर्ड" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/hi/user_ldap.po b/l10n/hi/user_ldap.po index 904a9c1fab6..5cf8c009329 100644 --- a/l10n/hi/user_ldap.po +++ b/l10n/hi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -144,7 +144,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -335,7 +335,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index c1b59f382cd..0fa0737b754 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "Nemogićnost učitavanja liste sa Apps Stora" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Greška kod autorizacije" @@ -84,6 +84,20 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Email spremljen" @@ -126,32 +140,32 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +217,7 @@ msgstr "" msgid "Error" msgstr "Greška" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "" @@ -211,31 +225,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +298,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "__ime_jezika__" @@ -589,11 +603,11 @@ msgstr "više" msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "" @@ -664,108 +678,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Lozinka" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "Nemoguće promijeniti lozinku" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "Trenutna lozinka" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "Nova lozinka" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "Izmjena lozinke" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "e-mail adresa" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "Vaša e-mail adresa" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Odustani" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "Jezik" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "Pomoć prevesti" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index 110b3e10c6c..d2da2123936 100644 --- a/l10n/hr/user_ldap.po +++ b/l10n/hr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -146,7 +146,7 @@ msgstr[2] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -337,7 +337,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index e0457774ded..0f77a8e7a02 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" @@ -88,6 +88,20 @@ msgstr "A csoport már létezik" msgid "Unable to add group" msgstr "A csoport nem hozható létre" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Email mentve" diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index 47568fd0f88..09f453e54f1 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -146,7 +146,7 @@ msgstr[1] "%s felhasználó van" msgid "Invalid Host" msgstr "Érvénytelen gépnév" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "A kívánt funkció nem található" @@ -337,8 +337,8 @@ msgid "Only connect to the replica server." msgstr "Csak a másodlagos (másolati) kiszolgálóhoz kapcsolódjunk." #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr "Az LDAP-kiszolgáló nem tesz különbséget a kis- és nagybetűk között (Windows)" +msgid "Case insensitive LDAP server (Windows)" +msgstr "" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index 5d2492a437c..b2d395b9e79 100644 --- a/l10n/hy/settings.po +++ b/l10n/hy/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "" @@ -84,6 +84,20 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -126,32 +140,32 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +217,7 @@ msgstr "" msgid "Error" msgstr "" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "" @@ -211,31 +225,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +298,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "" @@ -589,11 +603,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "" @@ -664,108 +678,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/hy/user_ldap.po b/l10n/hy/user_ldap.po index 21b936379d0..62b00150312 100644 --- a/l10n/hy/user_ldap.po +++ b/l10n/hy/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -144,7 +144,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -335,7 +335,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index e3e14d2e0b2..29fa98e3ad4 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "" @@ -84,6 +84,20 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -126,32 +140,32 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +217,7 @@ msgstr "" msgid "Error" msgstr "Error" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "Actualisar" @@ -211,31 +225,31 @@ msgstr "Actualisar" msgid "Updated" msgstr "" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +298,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "Interlingua" @@ -589,11 +603,11 @@ msgstr "Plus" msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "" @@ -664,108 +678,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Contrasigno" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "Non pote cambiar tu contrasigno" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "Contrasigno currente" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "Nove contrasigno" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "Cambiar contrasigno" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "E-posta" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "Tu adresse de e-posta" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "Imagine de profilo" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Cancellar" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "Linguage" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "Adjuta a traducer" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index 6109e27e981..eba9f5be06a 100644 --- a/l10n/ia/user_ldap.po +++ b/l10n/ia/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -144,7 +144,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -335,7 +335,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 551731125a2..e5b36822dfa 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" @@ -84,6 +84,20 @@ msgstr "Grup sudah ada" msgid "Unable to add group" msgstr "Tidak dapat menambah grup" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Email disimpan" diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index 8317de9115d..9ddcdfa9c68 100644 --- a/l10n/id/user_ldap.po +++ b/l10n/id/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -142,7 +142,7 @@ msgstr[0] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -333,8 +333,8 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr "Server LDAP dengan kapitalisasi tidak sensitif (Windows)" +msgid "Case insensitive LDAP server (Windows)" +msgstr "" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 0d1a019ba82..835206d3ff5 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" @@ -52,7 +52,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "Dulkóðun" @@ -65,7 +65,7 @@ msgid "Unable to load list from App Store" msgstr "Ekki tókst að hlaða lista frá forrita síðu" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Villa við auðkenningu" @@ -85,6 +85,20 @@ msgstr "Hópur er þegar til" msgid "Unable to add group" msgstr "Ekki tókst að bæta við hóp" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Netfang vistað" @@ -127,32 +141,32 @@ msgstr "Ekki tókst að fjarlægja notanda úr hópnum %s" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -204,7 +218,7 @@ msgstr "" msgid "Error" msgstr "Villa" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "Uppfæra" @@ -212,31 +226,31 @@ msgstr "Uppfæra" msgid "Updated" msgstr "Uppfært" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -285,7 +299,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "__nafn_tungumáls__" @@ -590,11 +604,11 @@ msgstr "Meira" msgid "Less" msgstr "Minna" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "Útgáfa" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "-leyfi skráð af " @@ -665,108 +679,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "Þú hefur notað %s af tiltæku %s" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Lykilorð" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "Lykilorði þínu hefur verið breytt" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "Ekki tókst að breyta lykilorðinu þínu" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "Núverandi lykilorð" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "Nýtt lykilorð" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "Breyta lykilorði" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "Netfang" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "Netfangið þitt" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Hætta við" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "Tungumál" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "Hjálpa við þýðingu" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index 71cca1d2e03..b33abc1b2b6 100644 --- a/l10n/is/user_ldap.po +++ b/l10n/is/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -145,7 +145,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -336,7 +336,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 358818292cb..a2a0ae488f7 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: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -88,6 +88,20 @@ msgstr "Il gruppo esiste già" msgid "Unable to add group" msgstr "Impossibile aggiungere il gruppo" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Email salvata" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index b7958a71cae..ef4f4d218f6 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-11 01:54-0400\n" -"PO-Revision-Date: 2014-04-10 22:50+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -338,8 +338,8 @@ msgid "Only connect to the replica server." msgstr "Collegati solo al server di replica." #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" +msgstr "" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/ja/settings.po b/l10n/ja/settings.po index 539a9c1e798..ae2dcf59d1d 100644 --- a/l10n/ja/settings.po +++ b/l10n/ja/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" @@ -89,6 +89,20 @@ msgstr "グループはすでに存在します" msgid "Unable to add group" msgstr "グループを追加できません" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "メールアドレスを保存しました" diff --git a/l10n/ja/user_ldap.po b/l10n/ja/user_ldap.po index 3a893d0ed2c..f5a0f629f92 100644 --- a/l10n/ja/user_ldap.po +++ b/l10n/ja/user_ldap.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -146,7 +146,7 @@ msgstr[0] "%s ユーザーが見つかりました" msgid "Invalid Host" msgstr "無効なホスト" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "望ましい機能は見つかりませんでした" @@ -337,8 +337,8 @@ msgid "Only connect to the replica server." msgstr "レプリカサーバーにのみ接続します。" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr "大文字/小文字を区別しないLDAPサーバー(Windows)" +msgid "Case insensitive LDAP server (Windows)" +msgstr "" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/jv/settings.po b/l10n/jv/settings.po index 7cba8a701d0..fad4b719109 100644 --- a/l10n/jv/settings.po +++ b/l10n/jv/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-07 17:00+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Javanese (http://www.transifex.com/projects/p/owncloud/language/jv/)\n" "MIME-Version: 1.0\n" @@ -84,6 +84,20 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" diff --git a/l10n/jv/user_ldap.po b/l10n/jv/user_ldap.po index 2371aadaeb6..78b1071347a 100644 --- a/l10n/jv/user_ldap.po +++ b/l10n/jv/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Javanese (http://www.transifex.com/projects/p/owncloud/language/jv/)\n" "MIME-Version: 1.0\n" @@ -144,7 +144,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -335,7 +335,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index deed78e7873..6f126c61254 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" @@ -85,6 +85,20 @@ msgstr "ჯგუფი უკვე არსებობს" msgid "Unable to add group" msgstr "ჯგუფის დამატება ვერ მოხერხდა" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "იმეილი შენახულია" diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index 5dc273c6b7e..35cef142b50 100644 --- a/l10n/ka_GE/user_ldap.po +++ b/l10n/ka_GE/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -142,7 +142,7 @@ msgstr[0] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -333,8 +333,8 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr "LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" +msgstr "" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/km/settings.po b/l10n/km/settings.po index f551450fbe0..6df2774fdeb 100644 --- a/l10n/km/settings.po +++ b/l10n/km/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -86,6 +86,20 @@ msgstr "មាន​ក្រុម​នេះ​រួច​ហើយ" msgid "Unable to add group" msgstr "មិន​អាច​បន្ថែម​ក្រុម" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "បាន​រក្សា​ទុក​អ៊ីមែល" diff --git a/l10n/km/user_ldap.po b/l10n/km/user_ldap.po index 5a41e124531..22fd03e089d 100644 --- a/l10n/km/user_ldap.po +++ b/l10n/km/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -143,7 +143,7 @@ msgstr[0] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -334,7 +334,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/kn/settings.po b/l10n/kn/settings.po index cfb8736938b..c8d82c665e4 100644 --- a/l10n/kn/settings.po +++ b/l10n/kn/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "" @@ -84,6 +84,20 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -126,32 +140,32 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +217,7 @@ msgstr "" msgid "Error" msgstr "" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "" @@ -211,31 +225,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +298,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "" @@ -589,11 +603,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "" @@ -664,108 +678,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/kn/user_ldap.po b/l10n/kn/user_ldap.po index 4c39375aee3..9254257e36c 100644 --- a/l10n/kn/user_ldap.po +++ b/l10n/kn/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -142,7 +142,7 @@ msgstr[0] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -333,7 +333,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 7ede0d46667..e056694af0a 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" @@ -89,6 +89,20 @@ msgstr "그룹이 이미 존재함" msgid "Unable to add group" msgstr "그룹을 추가할 수 없음" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "이메일 저장됨" diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index b8de7e931fc..0c91c72192d 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -145,7 +145,7 @@ msgstr[0] "사용자 %s명 찾음" msgid "Invalid Host" msgstr "잘못된 호스트" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "필요한 기능을 찾을 수 없음" @@ -336,8 +336,8 @@ msgid "Only connect to the replica server." msgstr "복제 서버에만 연결합니다." #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr "서버에서 대소문자를 구분하지 않음 (Windows)" +msgid "Case insensitive LDAP server (Windows)" +msgstr "" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index 2ce49de9cc1..5947cd8a09f 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: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "نهێنیکردن" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "" @@ -84,6 +84,20 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -126,32 +140,32 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +217,7 @@ msgstr "" msgid "Error" msgstr "هه‌ڵه" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "نوێکردنه‌وه" @@ -211,31 +225,31 @@ msgstr "نوێکردنه‌وه" msgid "Updated" msgstr "" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +298,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "" @@ -589,11 +603,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "" @@ -664,108 +678,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "وشەی تێپەربو" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "وشەی نهێنی نوێ" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "ئیمه‌یل" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "لابردن" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index e006b5932ac..a7fb0b19ba6 100644 --- a/l10n/ku_IQ/user_ldap.po +++ b/l10n/ku_IQ/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -144,7 +144,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -335,7 +335,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index dc9db7025c8..8555b5acccb 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -52,7 +52,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "" @@ -65,7 +65,7 @@ msgid "Unable to load list from App Store" msgstr "Konnt Lescht net vum App Store lueden" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Authentifikatioun's Fehler" @@ -85,6 +85,20 @@ msgstr "Group existeiert schon." msgid "Unable to add group" msgstr "Onmeiglech Grupp beizefügen." +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "E-mail gespäichert" @@ -127,32 +141,32 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -204,7 +218,7 @@ msgstr "" msgid "Error" msgstr "Fehler" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "Update" @@ -212,31 +226,31 @@ msgstr "Update" msgid "Updated" msgstr "" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -285,7 +299,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "__language_name__" @@ -590,11 +604,11 @@ msgstr "Méi" msgid "Less" msgstr "Manner" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "" @@ -665,108 +679,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Passwuert" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "Konnt däin Passwuert net änneren" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "Momentan 't Passwuert" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "Neit Passwuert" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "Passwuert änneren" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "Email" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "Deng Email Adress" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Ofbriechen" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "Sprooch" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "Hëllef iwwersetzen" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index 7ffaec0adf3..0489c90be38 100644 --- a/l10n/lb/user_ldap.po +++ b/l10n/lb/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -144,7 +144,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -335,7 +335,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 4b4e306f816..a3da64d25e4 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" @@ -89,6 +89,20 @@ msgstr "Grupė jau egzistuoja" msgid "Unable to add group" msgstr "Nepavyko pridėti grupės" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "El. paštas išsaugotas" diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index 1e9fab49ec4..9ea5c5787b7 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -148,7 +148,7 @@ msgstr[2] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -339,7 +339,7 @@ msgid "Only connect to the replica server." msgstr "Tik prisijungti prie reprodukcinio (replica) serverio." #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 13c92ee1a70..2c0d304b01d 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" @@ -85,6 +85,20 @@ msgstr "Grupa jau eksistē" msgid "Unable to add group" msgstr "Nevar pievienot grupu" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "E-pasts tika saglabāts" diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index 6861a984e01..1b2ef1684bd 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -146,7 +146,7 @@ msgstr[2] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -337,8 +337,8 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr "Reģistrnejutīgs LDAP serveris (Windows)" +msgid "Case insensitive LDAP server (Windows)" +msgstr "" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index e6096b1af4f..4808e45f47e 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" @@ -85,6 +85,20 @@ msgstr "Групата веќе постои" msgid "Unable to add group" msgstr "Неможе да додадам група" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Електронската пошта е снимена" diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index 5550ed99dd9..1fdce7b75a4 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -145,7 +145,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -336,7 +336,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/ml/settings.po b/l10n/ml/settings.po index 49290f8d798..648904e1221 100644 --- a/l10n/ml/settings.po +++ b/l10n/ml/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "" @@ -84,6 +84,20 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -126,32 +140,32 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +217,7 @@ msgstr "" msgid "Error" msgstr "" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "" @@ -211,31 +225,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +298,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "" @@ -589,11 +603,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "" @@ -664,108 +678,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/ml/user_ldap.po b/l10n/ml/user_ldap.po index 74e585ae93b..51de77c3900 100644 --- a/l10n/ml/user_ldap.po +++ b/l10n/ml/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" "MIME-Version: 1.0\n" @@ -144,7 +144,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -335,7 +335,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/ml_IN/settings.po b/l10n/ml_IN/settings.po index 5a9922292b9..31883d001e2 100644 --- a/l10n/ml_IN/settings.po +++ b/l10n/ml_IN/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "" @@ -84,6 +84,20 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -126,32 +140,32 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +217,7 @@ msgstr "" msgid "Error" msgstr "" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "" @@ -211,31 +225,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +298,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "" @@ -589,11 +603,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "" @@ -664,108 +678,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/ml_IN/user_ldap.po b/l10n/ml_IN/user_ldap.po index 39c0ec79a26..90c87e5cabf 100644 --- a/l10n/ml_IN/user_ldap.po +++ b/l10n/ml_IN/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -144,7 +144,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -335,7 +335,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/mn/settings.po b/l10n/mn/settings.po index f2b9550b985..122a7b465ec 100644 --- a/l10n/mn/settings.po +++ b/l10n/mn/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "" @@ -84,6 +84,20 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -126,32 +140,32 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +217,7 @@ msgstr "" msgid "Error" msgstr "" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "" @@ -211,31 +225,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +298,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "" @@ -589,11 +603,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "" @@ -664,108 +678,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/mn/user_ldap.po b/l10n/mn/user_ldap.po index 51f10319473..57ae6aeee20 100644 --- a/l10n/mn/user_ldap.po +++ b/l10n/mn/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" "MIME-Version: 1.0\n" @@ -144,7 +144,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -335,7 +335,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index e76e534f068..7c28e4cd32c 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Ralat pengesahan" @@ -84,6 +84,20 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Emel disimpan" @@ -126,32 +140,32 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +217,7 @@ msgstr "" msgid "Error" msgstr "Ralat" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "Kemaskini" @@ -211,31 +225,31 @@ msgstr "Kemaskini" msgid "Updated" msgstr "" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +298,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "_nama_bahasa_" @@ -589,11 +603,11 @@ msgstr "Lanjutan" msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "" @@ -664,108 +678,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Kata laluan" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "Gagal mengubah kata laluan anda " -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "Kata laluan semasa" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "Kata laluan baru" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "Ubah kata laluan" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "Email" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "Alamat emel anda" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "Gambar profil" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Batal" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "Bahasa" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "Bantu terjemah" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index f99f0580f35..d1462e5a4ba 100644 --- a/l10n/ms_MY/user_ldap.po +++ b/l10n/ms_MY/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -142,7 +142,7 @@ msgstr[0] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -333,7 +333,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/my_MM/settings.po b/l10n/my_MM/settings.po index e40126e75ae..0776a88e668 100644 --- a/l10n/my_MM/settings.po +++ b/l10n/my_MM/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "ခွင့်ပြုချက်မအောင်မြင်" @@ -84,6 +84,20 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -126,32 +140,32 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +217,7 @@ msgstr "" msgid "Error" msgstr "" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "" @@ -211,31 +225,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +298,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "" @@ -589,11 +603,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "" @@ -664,108 +678,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "စကားဝှက်" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "စကားဝှက်အသစ်" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "ပယ်ဖျက်မည်" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/my_MM/user_ldap.po b/l10n/my_MM/user_ldap.po index e251fa3611f..fa01baccda3 100644 --- a/l10n/my_MM/user_ldap.po +++ b/l10n/my_MM/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -142,7 +142,7 @@ msgstr[0] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -333,7 +333,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 5a36f04ddb2..6943f76fe20 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" -"Last-Translator: espenbye \n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -88,6 +88,20 @@ msgstr "Gruppen finnes allerede" msgid "Unable to add group" msgstr "Kan ikke legge til gruppe" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Epost lagret" diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index 50adfe578c7..c2097b948ff 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -145,7 +145,7 @@ msgstr[1] "%s brukere funnet" msgid "Invalid Host" msgstr "Ugyldig tjener" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "Fant ikke den ønskede funksjonaliteten" @@ -336,8 +336,8 @@ msgid "Only connect to the replica server." msgstr "Koble til bare replika-tjeneren." #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr "Case-insensitiv LDAP tjener (Windows)" +msgid "Case insensitive LDAP server (Windows)" +msgstr "" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/nds/settings.po b/l10n/nds/settings.po index 5224f83aa48..bf175932a29 100644 --- a/l10n/nds/settings.po +++ b/l10n/nds/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Low German (http://www.transifex.com/projects/p/owncloud/language/nds/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "" @@ -84,6 +84,20 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -126,32 +140,32 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +217,7 @@ msgstr "" msgid "Error" msgstr "" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "" @@ -211,31 +225,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +298,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "" @@ -589,11 +603,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "" @@ -664,108 +678,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/nds/user_ldap.po b/l10n/nds/user_ldap.po index 87f72df86c2..6ad765a099a 100644 --- a/l10n/nds/user_ldap.po +++ b/l10n/nds/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Low German (http://www.transifex.com/projects/p/owncloud/language/nds/)\n" "MIME-Version: 1.0\n" @@ -144,7 +144,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -335,7 +335,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/ne/settings.po b/l10n/ne/settings.po index 45cc088491c..e84cb840e89 100644 --- a/l10n/ne/settings.po +++ b/l10n/ne/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "" @@ -84,6 +84,20 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -126,32 +140,32 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +217,7 @@ msgstr "" msgid "Error" msgstr "" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "" @@ -211,31 +225,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +298,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "" @@ -589,11 +603,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "" @@ -664,108 +678,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/ne/user_ldap.po b/l10n/ne/user_ldap.po index 2837bbbb4c5..da064c9e5fa 100644 --- a/l10n/ne/user_ldap.po +++ b/l10n/ne/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -144,7 +144,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -335,7 +335,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 0c10ccf3c4d..c766add1cc7 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" @@ -88,6 +88,20 @@ msgstr "Groep bestaat al" msgid "Unable to add group" msgstr "Niet in staat om groep toe te voegen" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "E-mail bewaard" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index 9a66b674e93..37767238162 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 08:10+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -147,7 +147,7 @@ msgstr[1] "%s gebruikers gevonden" msgid "Invalid Host" msgstr "Ongeldige server" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "Kon de gewenste functie niet vinden" @@ -338,8 +338,8 @@ msgid "Only connect to the replica server." msgstr "Maak alleen een verbinding met de replica server." #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr "Niet-hoofdlettergevoelige LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" +msgstr "" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index f0a4f6ec449..ca46e7a70f7 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" @@ -87,6 +87,20 @@ msgstr "Gruppa finst allereie" msgid "Unable to add group" msgstr "Klarte ikkje leggja til gruppa" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "E-postadresse lagra" diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index 403a8918af4..0061f938c03 100644 --- a/l10n/nn_NO/user_ldap.po +++ b/l10n/nn_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -144,7 +144,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -335,7 +335,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/nqo/settings.po b/l10n/nqo/settings.po index 9845d1695c9..5dcb3b4cdb9 100644 --- a/l10n/nqo/settings.po +++ b/l10n/nqo/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "" @@ -84,6 +84,20 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -126,32 +140,32 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +217,7 @@ msgstr "" msgid "Error" msgstr "" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "" @@ -211,31 +225,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +298,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "" @@ -589,11 +603,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "" @@ -664,108 +678,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/nqo/user_ldap.po b/l10n/nqo/user_ldap.po index aa3ecec450f..ea2c1a10a68 100644 --- a/l10n/nqo/user_ldap.po +++ b/l10n/nqo/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -142,7 +142,7 @@ msgstr[0] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -333,7 +333,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index d71b89eca0a..2b6ea533467 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "Pas possible de cargar la tièra dempuèi App Store" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Error d'autentificacion" @@ -84,6 +84,20 @@ msgstr "Lo grop existís ja" msgid "Unable to add group" msgstr "Pas capable d'apondre un grop" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Corrièl enregistrat" @@ -126,32 +140,32 @@ msgstr "Pas capable de tira un usancièr del grop %s" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +217,7 @@ msgstr "" msgid "Error" msgstr "Error" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "" @@ -211,31 +225,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +298,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "__language_name__" @@ -589,11 +603,11 @@ msgstr "Mai d'aquò" msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "-licençiat per " @@ -664,108 +678,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Senhal" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "Ton senhal a cambiat" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "Pas possible de cambiar ton senhal" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "Senhal en cors" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "Senhal novèl" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "Cambia lo senhal" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "Corrièl" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "Ton adreiça de corrièl" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Annula" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "Lenga" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "Ajuda a la revirada" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index 5bf21b613f8..3a32a009110 100644 --- a/l10n/oc/user_ldap.po +++ b/l10n/oc/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -144,7 +144,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -335,7 +335,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/pa/settings.po b/l10n/pa/settings.po index 8f1df1750df..aecc54150c8 100644 --- a/l10n/pa/settings.po +++ b/l10n/pa/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -52,7 +52,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "" @@ -65,7 +65,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "" @@ -85,6 +85,20 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -127,32 +141,32 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -204,7 +218,7 @@ msgstr "" msgid "Error" msgstr "ਗਲਤੀ" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "" @@ -212,31 +226,31 @@ msgstr "" msgid "Updated" msgstr "ਅੱਪਡੇਟ ਕੀਤਾ" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -285,7 +299,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "__ਭਾਸ਼ਾ_ਨਾਂ__" @@ -590,11 +604,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "" @@ -665,108 +679,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "ਪਾਸਵਰ" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "ਪਾਸਵਰਡ ਬਦਲੋ" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "ਰੱਦ ਕਰੋ" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/pa/user_ldap.po b/l10n/pa/user_ldap.po index 37579bfed80..5cabb027e07 100644 --- a/l10n/pa/user_ldap.po +++ b/l10n/pa/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -144,7 +144,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -335,7 +335,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 8c1c418c8e7..ef51e8010b7 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" -"Last-Translator: bobie \n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -87,6 +87,20 @@ msgstr "Grupa już istnieje" msgid "Unable to add group" msgstr "Nie można dodać grupy" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "E-mail zapisany" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index 498a323e540..2009fd7cc60 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 06:02+0000\n" -"Last-Translator: bobie \n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -151,7 +151,7 @@ msgstr[2] "%s znalezionych użytkowników" msgid "Invalid Host" msgstr "Niepoprawny Host" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "Nie można znaleźć żądanej funkcji" @@ -342,8 +342,8 @@ msgid "Only connect to the replica server." msgstr "Połącz tylko do repliki serwera." #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr "Wielkość liter serwera LDAP (Windows)" +msgid "Case insensitive LDAP server (Windows)" +msgstr "" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index c94e167dc92..cc7719d2303 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: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" @@ -86,6 +86,20 @@ msgstr "Grupo já existe" msgid "Unable to add group" msgstr "Não foi possível adicionar grupo" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "E-mail salvo" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index a50f34a3474..887cae75e9b 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 10:51+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -146,7 +146,7 @@ msgstr[1] "usuários %s encontrados" msgid "Invalid Host" msgstr "Host inválido" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "Não foi possível encontrar a função desejada" @@ -337,8 +337,8 @@ msgid "Only connect to the replica server." msgstr "Conectar-se somente ao servidor de réplica." #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr "Servidor LDAP sensível à caixa alta (Windows)" +msgid "Case insensitive LDAP server (Windows)" +msgstr "" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index ea6ff1bc02c..a1b1ad3373b 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" @@ -91,6 +91,20 @@ msgstr "O grupo já existe" msgid "Unable to add group" msgstr "Impossível acrescentar o grupo" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Email guardado" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index 24be2d824ab..ca466d20d14 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -148,7 +148,7 @@ msgstr[1] "%s utilizadores encontrados" msgid "Invalid Host" msgstr "Hospedeiro Inválido" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "Não se encontrou a função desejada" @@ -339,8 +339,8 @@ msgid "Only connect to the replica server." msgstr "Ligar apenas ao servidor de réplicas." #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr "Servidor LDAP (Windows) não sensível a maiúsculas." +msgid "Case insensitive LDAP server (Windows)" +msgstr "" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 7358fd44fc6..8e050f69398 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: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" @@ -86,6 +86,20 @@ msgstr "Grupul există deja" msgid "Unable to add group" msgstr "Nu s-a putut adăuga grupul" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "E-mail salvat" diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index 8d75f9248c8..83048aebc9f 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -146,7 +146,7 @@ msgstr[2] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -337,8 +337,8 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr "Server LDAP insensibil la majuscule (Windows)" +msgid "Case insensitive LDAP server (Windows)" +msgstr "" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 4e3067464e0..70641d2e4e0 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -22,8 +22,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -99,6 +99,20 @@ msgstr "Группа уже существует" msgid "Unable to add group" msgstr "Невозможно добавить группу" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Email сохранен" diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index feb3e9d1eb9..82633992ec2 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -156,7 +156,7 @@ msgstr[2] "%s пользователей найдено" msgid "Invalid Host" msgstr "Неверный сервер" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "Не могу найти требуемой функциональности" @@ -347,8 +347,8 @@ msgid "Only connect to the replica server." msgstr "Подключаться только к серверу-реплике." #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr "Нечувствительный к регистру сервер LDAP (Windows)" +msgid "Case insensitive LDAP server (Windows)" +msgstr "" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index 6fd34786768..2b1066d995d 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "ගුප්ත කේතනය" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "සත්‍යාපන දෝෂයක්" @@ -84,6 +84,20 @@ msgstr "කණ්ඩායම දැනටමත් තිබේ" msgid "Unable to add group" msgstr "කාණඩයක් එක් කළ නොහැකි විය" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "වි-තැපෑල සුරකින ලදී" @@ -126,32 +140,32 @@ msgstr "පරිශීලකයා %s කණ්ඩායමින් ඉවත msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +217,7 @@ msgstr "" msgid "Error" msgstr "දෝෂයක්" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "යාවත්කාල කිරීම" @@ -211,31 +225,31 @@ msgstr "යාවත්කාල කිරීම" msgid "Updated" msgstr "" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +298,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "" @@ -589,11 +603,11 @@ msgstr "වැඩි" msgid "Less" msgstr "අඩු" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "" @@ -664,108 +678,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "මුර පදය" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "ඔබගේ මුර පදය වෙනස් කෙරුණි" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "මුර පදය වෙනස් කළ නොහැකි විය" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "වත්මන් මුරපදය" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "නව මුරපදය" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "මුරපදය වෙනස් කිරීම" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "විද්‍යුත් තැපෑල" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "ඔබගේ විද්‍යුත් තැපෑල" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "එපා" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "භාෂාව" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "පරිවර්ථන සහය" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index ed0af373d58..122cf026241 100644 --- a/l10n/si_LK/user_ldap.po +++ b/l10n/si_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -144,7 +144,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -335,7 +335,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/sk/settings.po b/l10n/sk/settings.po index c4904394fe3..bff1d720434 100644 --- a/l10n/sk/settings.po +++ b/l10n/sk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "" @@ -84,6 +84,20 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -126,32 +140,32 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +217,7 @@ msgstr "" msgid "Error" msgstr "" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "" @@ -211,31 +225,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +298,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "" @@ -589,11 +603,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "" @@ -664,108 +678,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Zrušiť" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/sk/user_ldap.po b/l10n/sk/user_ldap.po index 76ac5cd2ac8..bc1a911c868 100644 --- a/l10n/sk/user_ldap.po +++ b/l10n/sk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -146,7 +146,7 @@ msgstr[2] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -337,7 +337,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 8aecaab335b..7b4826cc736 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" @@ -86,6 +86,20 @@ msgstr "Skupina už existuje" msgid "Unable to add group" msgstr "Nie je možné pridať skupinu" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Email uložený" diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index 38484ed97b5..cc437b8734b 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -148,7 +148,7 @@ msgstr[2] "%s nájdených používateľov" msgid "Invalid Host" msgstr "Neplatný hostiteľ" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "Nemožno nájsť požadovanú funkciu" @@ -339,8 +339,8 @@ msgid "Only connect to the replica server." msgstr "Pripojiť sa len k záložnému serveru." #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr "LDAP server nerozlišuje veľkosť znakov (Windows)" +msgid "Case insensitive LDAP server (Windows)" +msgstr "" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 23a92432934..fcc8f3ca12d 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: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" @@ -86,6 +86,20 @@ msgstr "Skupina že obstaja" msgid "Unable to add group" msgstr "Skupine ni mogoče dodati" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Elektronski naslov je shranjen" diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index ecfe45ca6b2..aeb27061fcb 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -150,7 +150,7 @@ msgstr[3] "%s najdenih uporabnikov" msgid "Invalid Host" msgstr "Neveljaven gostitelj" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "Želene zmožnosti ni mogoče najti" @@ -341,8 +341,8 @@ msgid "Only connect to the replica server." msgstr "Poveži le s podvojenim strežnikom." #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr "Strežnik LDAP ne upošteva velikosti črk (Windows)" +msgid "Case insensitive LDAP server (Windows)" +msgstr "" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index 8d2970bcdc2..f837939e7b7 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" @@ -84,6 +84,20 @@ msgstr "Grupi ekziston" msgid "Unable to add group" msgstr "E pamundur të shtohet grupi" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Email u ruajt" diff --git a/l10n/sq/user_ldap.po b/l10n/sq/user_ldap.po index 963d74c361b..af3fdebe113 100644 --- a/l10n/sq/user_ldap.po +++ b/l10n/sq/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -144,7 +144,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -335,8 +335,8 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr " Server LDAP i pavëmëndshëm ndaj gërmëzimit të madh apo jo (Windows)" +msgid "Case insensitive LDAP server (Windows)" +msgstr "" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index ad83bcb144a..339f9626c26 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" @@ -84,6 +84,20 @@ msgstr "Група већ постоји" msgid "Unable to add group" msgstr "Не могу да додам групу" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Е-порука сачувана" diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index 3e050f44943..e0f3aec7e6c 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -146,7 +146,7 @@ msgstr[2] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -337,8 +337,8 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr "LDAP сервер осетљив на велика и мала слова (Windows)" +msgid "Case insensitive LDAP server (Windows)" +msgstr "" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index 61ac8239bce..8a850e96d0d 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Greška pri autentifikaciji" @@ -84,6 +84,20 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -126,32 +140,32 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +217,7 @@ msgstr "" msgid "Error" msgstr "Greška" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "" @@ -211,31 +225,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +298,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "" @@ -589,11 +603,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "" @@ -664,108 +678,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Lozinka" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "Ne mogu da izmenim vašu lozinku" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "Trenutna lozinka" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "Nova lozinka" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "Izmeni lozinku" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "E-mail" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Otkaži" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "Jezik" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/sr@latin/user_ldap.po b/l10n/sr@latin/user_ldap.po index ff6b66a5c7d..82538a4f5e3 100644 --- a/l10n/sr@latin/user_ldap.po +++ b/l10n/sr@latin/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -146,7 +146,7 @@ msgstr[2] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -337,7 +337,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/su/settings.po b/l10n/su/settings.po index f93147a8bca..b5fd5ad46fd 100644 --- a/l10n/su/settings.po +++ b/l10n/su/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "" @@ -84,6 +84,20 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -126,32 +140,32 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +217,7 @@ msgstr "" msgid "Error" msgstr "" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "" @@ -211,31 +225,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +298,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "" @@ -589,11 +603,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "" @@ -664,108 +678,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/su/user_ldap.po b/l10n/su/user_ldap.po index b7878fb8312..9265d4f0983 100644 --- a/l10n/su/user_ldap.po +++ b/l10n/su/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" "MIME-Version: 1.0\n" @@ -142,7 +142,7 @@ msgstr[0] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -333,7 +333,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index af537045197..8cd4062d844 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" -"Last-Translator: AsavarTzeth \n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -94,6 +94,20 @@ msgstr "Gruppen finns redan" msgid "Unable to add group" msgstr "Kan inte lägga till grupp" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "E-post sparad" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index dc65893d02e..5a1b50527e2 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 17:30+0000\n" -"Last-Translator: AsavarTzeth \n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -153,7 +153,7 @@ msgstr[1] "%s användare hittade" msgid "Invalid Host" msgstr "Felaktig Host" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "Det gick inte hitta den önskade funktionen" @@ -344,8 +344,8 @@ msgid "Only connect to the replica server." msgstr "Anslut endast till replikaservern." #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr "LDAP-servern är okänslig för gemener och versaler (Windows)" +msgid "Case insensitive LDAP server (Windows)" +msgstr "" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/sw_KE/settings.po b/l10n/sw_KE/settings.po index 2703facb88a..51475acbd40 100644 --- a/l10n/sw_KE/settings.po +++ b/l10n/sw_KE/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "" @@ -84,6 +84,20 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -126,32 +140,32 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +217,7 @@ msgstr "" msgid "Error" msgstr "" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "" @@ -211,31 +225,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +298,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "" @@ -589,11 +603,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "" @@ -664,108 +678,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/sw_KE/user_ldap.po b/l10n/sw_KE/user_ldap.po index 3dffd9f58ac..2249c487160 100644 --- a/l10n/sw_KE/user_ldap.po +++ b/l10n/sw_KE/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -144,7 +144,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -335,7 +335,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index aec5ad9de2f..df61ff7f5b4 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "மறைக்குறியீடு" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "செயலி சேமிப்பிலிருந்து பட்டியலை ஏற்றமுடியாதுள்ளது" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "அத்தாட்சிப்படுத்தலில் வழு" @@ -84,6 +84,20 @@ msgstr "குழு ஏற்கனவே உள்ளது" msgid "Unable to add group" msgstr "குழுவை சேர்க்க முடியாது" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "மின்னஞ்சல் சேமிக்கப்பட்டது" @@ -126,32 +140,32 @@ msgstr "குழு %s இலிருந்து பயனாளரை நீ msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +217,7 @@ msgstr "" msgid "Error" msgstr "வழு" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "இற்றைப்படுத்தல்" @@ -211,31 +225,31 @@ msgstr "இற்றைப்படுத்தல்" msgid "Updated" msgstr "" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +298,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "_மொழி_பெயர்_" @@ -589,11 +603,11 @@ msgstr "மேலதிக" msgid "Less" msgstr "குறைவான" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "-அனுமதி பெற்ற " @@ -664,108 +678,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "நீங்கள் %s இலுள்ள %sபயன்படுத்தியுள்ளீர்கள்" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "கடவுச்சொல்" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "உங்களுடைய கடவுச்சொல் மாற்றப்பட்டுள்ளது" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "உங்களுடைய கடவுச்சொல்லை மாற்றமுடியாது" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "தற்போதைய கடவுச்சொல்" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "புதிய கடவுச்சொல்" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "கடவுச்சொல்லை மாற்றுக" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "மின்னஞ்சல்" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "உங்களுடைய மின்னஞ்சல் முகவரி" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "இரத்து செய்க" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "மொழி" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "மொழிபெயர்க்க உதவி" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index 4e168a7dcc4..df71f1244bf 100644 --- a/l10n/ta_LK/user_ldap.po +++ b/l10n/ta_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -144,7 +144,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -335,8 +335,8 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr "உணர்ச்சியான LDAP சேவையகம் (சாளரங்கள்)" +msgid "Case insensitive LDAP server (Windows)" +msgstr "" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/te/settings.po b/l10n/te/settings.po index b8c07e59ad2..ba7e8d94181 100644 --- a/l10n/te/settings.po +++ b/l10n/te/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "" @@ -84,6 +84,20 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -126,32 +140,32 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +217,7 @@ msgstr "" msgid "Error" msgstr "పొరపాటు" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "" @@ -211,31 +225,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +298,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "" @@ -589,11 +603,11 @@ msgstr "మరిన్ని" msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "" @@ -664,108 +678,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "సంకేతపదం" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "కొత్త సంకేతపదం" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "ఈమెయిలు" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "మీ ఈమెయిలు చిరునామా" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "రద్దుచేయి" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "భాష" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/te/user_ldap.po b/l10n/te/user_ldap.po index 515b88f3503..65ed23e9c53 100644 --- a/l10n/te/user_ldap.po +++ b/l10n/te/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -144,7 +144,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -335,7 +335,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 5c36d44feb1..3c44e623bf1 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: 2014-04-11 01:54-0400\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\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.pot b/l10n/templates/files.pot index 97d8aaf0ab0..64c808c5c7a 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: 2014-04-11 01:54-0400\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\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 09f5900a03a..4b990827d0d 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: 2014-04-11 01:54-0400\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\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 446829a7066..1a4337a741e 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: 2014-04-11 01:54-0400\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\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 335843470ba..6b65617ab19 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: 2014-04-11 01:54-0400\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\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 9800a9ad3f7..0bbe995ada6 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: 2014-04-11 01:54-0400\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\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 eca1e25e0df..a15d33b1b93 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: 2014-04-11 01:54-0400\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\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 df8dcaa8041..b13e7788d02 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: 2014-04-11 01:54-0400\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\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 c7c39e54af5..fe151138b41 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: 2014-04-11 01:54-0400\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\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 9095c16f9f7..4691fc81540 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: 2014-04-11 01:54-0400\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -84,6 +84,20 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 9418a90de14..a1bd167ca18 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: 2014-04-11 01:54-0400\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -335,7 +335,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index e858ef7740c..25424884d02 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: 2014-04-11 01:54-0400\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\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 050e1588f9d..8e0b4bf03ec 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: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "การเข้ารหัส" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "ไม่สามารถโหลดรายการจาก App Store ได้" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "เกิดข้อผิดพลาดในสิทธิ์การเข้าใช้งาน" @@ -84,6 +84,20 @@ msgstr "มีกลุ่มดังกล่าวอยู่ในระบ msgid "Unable to add group" msgstr "ไม่สามารถเพิ่มกลุ่มได้" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "อีเมลถูกบันทึกแล้ว" @@ -126,32 +140,32 @@ msgstr "ไม่สามารถลบผู้ใช้งานออกจ msgid "Couldn't update app." msgstr "ไม่สามารถอัพเดทแอปฯ" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +217,7 @@ msgstr "เกิดข้อผิดพลาดในระหว่างก msgid "Error" msgstr "ข้อผิดพลาด" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "อัพเดท" @@ -211,31 +225,31 @@ msgstr "อัพเดท" msgid "Updated" msgstr "อัพเดทแล้ว" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +298,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "ภาษาไทย" @@ -589,11 +603,11 @@ msgstr "มาก" msgid "Less" msgstr "น้อย" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "รุ่น" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "-ลิขสิทธิ์การใช้งานโดย " @@ -664,108 +678,108 @@ msgstr "แสดงหน้าจอวิซาร์ดนำทางคร msgid "You have used %s of the available %s" msgstr "คุณได้ใช้งานไปแล้ว %s จากจำนวนที่สามารถใช้ได้ %s" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "รหัสผ่าน" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "รหัสผ่านของคุณถูกเปลี่ยนแล้ว" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "ไม่สามารถเปลี่ยนรหัสผ่านของคุณได้" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "รหัสผ่านปัจจุบัน" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "รหัสผ่านใหม่" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "เปลี่ยนรหัสผ่าน" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "อีเมล" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "ที่อยู่อีเมล์ของคุณ" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "รูปภาพโปรไฟล์" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "ยกเลิก" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "ภาษา" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "ช่วยกันแปล" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index 1dd27e0b070..bf395b92e17 100644 --- a/l10n/th_TH/user_ldap.po +++ b/l10n/th_TH/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -142,7 +142,7 @@ msgstr[0] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -333,8 +333,8 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr "เซิร์ฟเวอร์ LDAP ประเภท Case insensitive (วินโดวส์)" +msgid "Case insensitive LDAP server (Windows)" +msgstr "" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index f067d809632..fa1e63236ea 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 21:00+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-11 14:15+0000\n" "Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -199,7 +199,7 @@ msgstr "MS SQL kullanıcı adı ve/veya parolası geçersiz: %s" #: private/setup/oci.php:114 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." -msgstr "Bir konto veya kullanici birlemek ihtiyacin. " +msgstr "Siz veya yönetici mevcut bir hesap girmeli." #: private/setup/mysql.php:12 msgid "MySQL/MariaDB username and/or password not valid" @@ -215,7 +215,7 @@ msgstr "MySQL/MariaDB kullanıcı adı ve/veya parolası geçersiz" #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" -msgstr "DB Hata: ''%s''" +msgstr "VT Hatası: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 #: private/setup/oci.php:122 private/setup/oci.php:145 @@ -226,7 +226,7 @@ msgstr "DB Hata: ''%s''" #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" -msgstr "Komut rahasiz ''%s''. " +msgstr "Saldırgan komut: \"%s\"" #: private/setup/mysql.php:85 #, php-format @@ -252,7 +252,7 @@ msgstr "Oracle bağlantısı kurulamadı" #: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" -msgstr "Adi klullanici ve/veya parola Oracle mantikli değildir. " +msgstr "Oracle kullanıcı adı ve/veya parolası geçerli değil" #: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format @@ -261,15 +261,15 @@ msgstr "Hatalı komut: \"%s\", ad: %s, parola: %s" #: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" -msgstr "PostgreSQL adi kullanici ve/veya parola yasal degildir. " +msgstr "PostgreSQL kullanıcı adı ve/veya parolası geçerli değil" #: private/setup.php:28 msgid "Set an admin username." -msgstr "Bir adi kullanici vermek. " +msgstr "Bir yönetici kullanıcı adı ayarlayın." #: private/setup.php:31 msgid "Set an admin password." -msgstr "Parola yonetici birlemek. " +msgstr "Bir yönetici kullanıcı parolası ayarlayın." #: private/setup.php:202 msgid "" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 3f8e26a01f5..d69df3145be 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: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" -"Last-Translator: volkangezer \n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" @@ -88,6 +88,20 @@ msgstr "Grup zaten mevcut" msgid "Unable to add group" msgstr "Gruba eklenemiyor" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "E-posta kaydedildi" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 612e836a609..2617ea1b58f 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 23:30+0000\n" -"Last-Translator: volkangezer \n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -147,7 +147,7 @@ msgstr[1] "%s kullanıcı bulundu" msgid "Invalid Host" msgstr "Geçersiz Makine" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "İstenen özellik bulunamadı" @@ -225,7 +225,7 @@ msgstr "Oturum açma girişimi olduğunda uygulanacak filtreyi tanımlar. %%uid, #: templates/part.wizard-server.php:18 msgid "Add Server Configuration" -msgstr "Sunucu Uyunlama birlemek " +msgstr "Sunucu Yapılandırması Ekle" #: templates/part.wizard-server.php:30 msgid "Host" @@ -234,7 +234,7 @@ msgstr "Sunucu" #: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "Protokol atlamak edesin, sadece SSL istiyorsaniz. O zaman, idapsile baslamak. " +msgstr "SSL gerektirmediğiniz takdirde protokol belirtmeyebilirsiniz. Ardından ldaps:// ile başlayın" #: templates/part.wizard-server.php:36 msgid "Port" @@ -249,7 +249,7 @@ msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "DN musterinin, kimle baglamaya yapacagiz,meselâ uid=agent.dc mesela, dc=com Gecinme adisiz ici, DN ve Parola bos birakmak. " +msgstr "İstemci kullanıcısının yapılacağı atamanın DN'i örn. uid=agent,dc=örnek,dc=com. Anonim erişim için DN ve Parolayı boş bırakın." #: templates/part.wizard-server.php:52 msgid "Password" @@ -261,11 +261,11 @@ msgstr "Anonim erişim için DN ve Parola alanlarını boş bırakın." #: templates/part.wizard-server.php:60 msgid "One Base DN per line" -msgstr "Bir Tabani DN herbir dizi. " +msgstr "Her satırda tek bir Base DN" #: templates/part.wizard-server.php:61 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Base DN kullanicileri ve kaynaklari icin tablosu Advanced tayin etmek ederiz. " +msgstr "Gelişmiş sekmesinde kullanıcılar ve gruplar için Base DN belirtebilirsiniz." #: templates/part.wizard-userfilter.php:4 #, php-format @@ -301,7 +301,7 @@ msgstr "Uyarı: user_ldap ve user_webdavauth uygulamaları uyumlu değil. msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "Ihbar Modulu PHP LDAP yuklemdi degil, backend calismacak. Lutfen sistem yonetici sormak yuklemek icin." +msgstr "Uyarı: PHP LDAP modülü kurulu değil, arka uç çalışmayacak. Lütfen kurulumu için sistem yöneticinizle iletişime geçin." #: templates/settings.php:20 msgid "Connection Settings" @@ -313,21 +313,21 @@ msgstr "Yapılandırma Etkin" #: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." -msgstr "Ne zaman iptal, bu uynnlama isletici " +msgstr "İşaretli değilse, bu yapılandırma atlanacaktır." #: templates/settings.php:23 msgid "Backup (Replica) Host" -msgstr "Sigorta Kopya Cephe " +msgstr "Yedek (Replica) Sunucu" #: templates/settings.php:23 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "Bir kopya cevre vermek, kopya sunucu onemli olmali. " +msgstr "İsteğe bağlı bir yedek sunucusu belirtin. Ana LDAP/AD sunucusunun bir kopyası olmalıdır." #: templates/settings.php:24 msgid "Backup (Replica) Port" -msgstr "Kopya Port " +msgstr "Yedek (Replica) Bağlantı Noktası" #: templates/settings.php:25 msgid "Disable Main Server" @@ -338,8 +338,8 @@ msgid "Only connect to the replica server." msgstr "Sadece kopya sunucuya bağlan." #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr "Dusme sunucu LDAP zor degil. (Windows)" +msgid "Case insensitive LDAP server (Windows)" +msgstr "" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." @@ -354,7 +354,7 @@ msgstr "Önerilmez, sadece test için kullanın! Eğer bağlantı sadece bu seç #: templates/settings.php:28 msgid "Cache Time-To-Live" -msgstr "Cache Time-To-Live " +msgstr "Önbellek Time-To-Live Değeri" #: templates/settings.php:28 msgid "in seconds. A change empties the cache." @@ -362,11 +362,11 @@ msgstr "saniye cinsinden. Bir değişiklik önbelleği temizleyecektir." #: templates/settings.php:30 msgid "Directory Settings" -msgstr "Parametrar Listesin Adresinin " +msgstr "Dizin Ayarları" #: templates/settings.php:32 msgid "User Display Name Field" -msgstr "Ekran Adi Kullanici, (Alan Adi Kullanici Ekrane)" +msgstr "Kullanıcı Görünen Ad Alanı" #: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." @@ -378,11 +378,11 @@ msgstr "Temel Kullanıcı Ağacı" #: templates/settings.php:33 msgid "One User Base DN per line" -msgstr "Bir Temel Kullanici DN her dizgi " +msgstr "Her satırda Tek Kullanıcı Base DN'i" #: templates/settings.php:34 msgid "User Search Attributes" -msgstr "Kategorii Arama Kullanici " +msgstr "Kullanıcı Arama Nitelikleri" #: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" @@ -390,7 +390,7 @@ msgstr "Tercihe bağlı; her bir satırda bir öznitelik" #: templates/settings.php:35 msgid "Group Display Name Field" -msgstr "Grub Ekrane Alani Adi" +msgstr "Grup Görünen Ad Alanı" #: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." @@ -402,11 +402,11 @@ msgstr "Temel Grup Ağacı" #: templates/settings.php:36 msgid "One Group Base DN per line" -msgstr "Bir Grubu Tabani DN her dizgi. " +msgstr "Her satırda Tek Grup Base DN'i" #: templates/settings.php:37 msgid "Group Search Attributes" -msgstr "Kategorii Arama Grubu" +msgstr "Grup Arama Nitelikleri" #: templates/settings.php:38 msgid "Group-Member association" diff --git a/l10n/tzm/settings.po b/l10n/tzm/settings.po index c8ed5177a5a..614dba76775 100644 --- a/l10n/tzm/settings.po +++ b/l10n/tzm/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Central Atlas Tamazight (http://www.transifex.com/projects/p/owncloud/language/tzm/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "" @@ -84,6 +84,20 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -126,32 +140,32 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +217,7 @@ msgstr "" msgid "Error" msgstr "" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "" @@ -211,31 +225,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +298,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "" @@ -589,11 +603,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "" @@ -664,108 +678,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/tzm/user_ldap.po b/l10n/tzm/user_ldap.po index 33f053cd3f6..3a134d5e973 100644 --- a/l10n/tzm/user_ldap.po +++ b/l10n/tzm/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Central Atlas Tamazight (http://www.transifex.com/projects/p/owncloud/language/tzm/)\n" "MIME-Version: 1.0\n" @@ -144,7 +144,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -335,7 +335,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index 384a913c7f0..cea36863190 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -85,6 +85,20 @@ msgstr "گۇرۇپپا مەۋجۇت" msgid "Unable to add group" msgstr "گۇرۇپپا قوشقىلى بولمايدۇ" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "تورخەت ساقلاندى" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index 31a16bcc3d1..a2512c6187a 100644 --- a/l10n/ug/user_ldap.po +++ b/l10n/ug/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -142,7 +142,7 @@ msgstr[0] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -333,7 +333,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 5408c4789aa..79039c8f7df 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: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" @@ -85,6 +85,20 @@ msgstr "Група вже існує" msgid "Unable to add group" msgstr "Не вдалося додати групу" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Адресу збережено" diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index 189454a8bba..dd1dd64f7db 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -146,7 +146,7 @@ msgstr[2] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -337,8 +337,8 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr "Нечутливий до регістру LDAP сервер (Windows)" +msgid "Case insensitive LDAP server (Windows)" +msgstr "" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/ur/settings.po b/l10n/ur/settings.po index 4461002aca5..ce88154e1b7 100644 --- a/l10n/ur/settings.po +++ b/l10n/ur/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "" @@ -84,6 +84,20 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -126,32 +140,32 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +217,7 @@ msgstr "" msgid "Error" msgstr "" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "" @@ -211,31 +225,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +298,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "" @@ -589,11 +603,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "" @@ -664,108 +678,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/ur/user_ldap.po b/l10n/ur/user_ldap.po index 5cac65d044b..1483a29d7a1 100644 --- a/l10n/ur/user_ldap.po +++ b/l10n/ur/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -144,7 +144,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -335,7 +335,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index 302512f11a2..bb3d35d7437 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: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "" @@ -84,6 +84,20 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -126,32 +140,32 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +217,7 @@ msgstr "" msgid "Error" msgstr "ایرر" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "" @@ -211,31 +225,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +298,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "" @@ -589,11 +603,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "" @@ -664,108 +678,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "پاسورڈ" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "نیا پاسورڈ" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "منسوخ کریں" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/ur_PK/user_ldap.po b/l10n/ur_PK/user_ldap.po index 7fcccee2a11..8e90c3b5bc8 100644 --- a/l10n/ur_PK/user_ldap.po +++ b/l10n/ur_PK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -144,7 +144,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -335,7 +335,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/uz/settings.po b/l10n/uz/settings.po index 0e253ad5c70..bd278d7cf08 100644 --- a/l10n/uz/settings.po +++ b/l10n/uz/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uzbek (http://www.transifex.com/projects/p/owncloud/language/uz/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "" @@ -84,6 +84,20 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -126,32 +140,32 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +217,7 @@ msgstr "" msgid "Error" msgstr "" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "" @@ -211,31 +225,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +298,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "" @@ -589,11 +603,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "" @@ -664,108 +678,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/uz/user_ldap.po b/l10n/uz/user_ldap.po index 33dee47c293..d76bcd178b7 100644 --- a/l10n/uz/user_ldap.po +++ b/l10n/uz/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uzbek (http://www.transifex.com/projects/p/owncloud/language/uz/)\n" "MIME-Version: 1.0\n" @@ -142,7 +142,7 @@ msgstr[0] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -333,7 +333,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index fb289628500..6095c604043 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" @@ -52,7 +52,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "Mã hóa" @@ -65,7 +65,7 @@ msgid "Unable to load list from App Store" msgstr "Không thể tải danh sách ứng dụng từ App Store" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Lỗi xác thực" @@ -85,6 +85,20 @@ msgstr "Nhóm đã tồn tại" msgid "Unable to add group" msgstr "Không thể thêm nhóm" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Lưu email" @@ -127,32 +141,32 @@ msgstr "Không thể xóa người dùng từ nhóm %s" msgid "Couldn't update app." msgstr "Không thể cập nhật ứng dụng" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -204,7 +218,7 @@ msgstr "Lỗi khi cập nhật ứng dụng" msgid "Error" msgstr "Lỗi" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "Cập nhật" @@ -212,31 +226,31 @@ msgstr "Cập nhật" msgid "Updated" msgstr "Đã cập nhật" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -285,7 +299,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "__Ngôn ngữ___" @@ -590,11 +604,11 @@ msgstr "hơn" msgid "Less" msgstr "ít" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "Phiên bản" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "-Giấy phép được cấp bởi " @@ -665,108 +679,108 @@ msgstr "Hiện lại việc chạy đồ thuật khởi đầu" msgid "You have used %s of the available %s" msgstr "Bạn đã sử dụng %s có sẵn %s " -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Mật khẩu" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "Mật khẩu của bạn đã được thay đổi." -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "Không thể đổi mật khẩu" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "Mật khẩu cũ" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "Mật khẩu mới" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "Đổi mật khẩu" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "Họ và tên" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "Email" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "Email của bạn" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "Tải lên" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "Xóa " -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "Hủy" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "Chọn hình ảnh như hồ sơ cá nhân" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "Ngôn ngữ" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "Hỗ trợ dịch thuật" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index 04ba1f8caa4..5cdee3dcf77 100644 --- a/l10n/vi/user_ldap.po +++ b/l10n/vi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -142,7 +142,7 @@ msgstr[0] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -333,8 +333,8 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr "Trường hợp insensitve LDAP máy chủ (Windows)" +msgid "Case insensitive LDAP server (Windows)" +msgstr "" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 4b19e0c792f..5ef03b66e03 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" @@ -91,6 +91,20 @@ msgstr "已存在该组" msgid "Unable to add group" msgstr "无法添加组" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "电子邮件已保存" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index d58c0a99e59..1cf0e124432 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -144,7 +144,7 @@ msgstr[0] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -335,8 +335,8 @@ msgid "Only connect to the replica server." msgstr "只能连接到复制服务器" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr "大小写敏感LDAP服务器(Windows)" +msgid "Case insensitive LDAP server (Windows)" +msgstr "" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index abc1f449b54..378dc0a4b10 100644 --- a/l10n/zh_HK/settings.po +++ b/l10n/zh_HK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" msgstr "加密" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "" @@ -84,6 +84,20 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -126,32 +140,32 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -203,7 +217,7 @@ msgstr "" msgid "Error" msgstr "錯誤" -#: js/apps.js:153 templates/apps.php:54 +#: js/apps.js:153 templates/apps.php:55 msgid "Update" msgstr "" @@ -211,31 +225,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:246 +#: js/personal.js:243 msgid "Select a profile picture" msgstr "" -#: js/personal.js:277 +#: js/personal.js:274 msgid "Very weak password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:275 msgid "Weak password" msgstr "" -#: js/personal.js:279 +#: js/personal.js:276 msgid "So-so password" msgstr "" -#: js/personal.js:280 +#: js/personal.js:277 msgid "Good password" msgstr "" -#: js/personal.js:281 +#: js/personal.js:278 msgid "Strong password" msgstr "" -#: js/personal.js:316 +#: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -284,7 +298,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "" @@ -589,11 +603,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " msgstr "" @@ -664,108 +678,108 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "密碼" -#: templates/personal.php:40 +#: templates/personal.php:39 msgid "Your password was changed" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:40 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:45 msgid "New password" msgstr "新密碼" -#: templates/personal.php:50 +#: templates/personal.php:49 msgid "Change password" msgstr "" -#: templates/personal.php:64 templates/users.php:86 +#: templates/personal.php:61 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:81 +#: templates/personal.php:76 msgid "Email" msgstr "電郵" -#: templates/personal.php:83 +#: templates/personal.php:78 msgid "Your email address" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:81 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:96 +#: templates/personal.php:89 msgid "Profile picture" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:94 msgid "Upload new" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:96 msgid "Select new from Files" msgstr "" -#: templates/personal.php:104 +#: templates/personal.php:97 msgid "Remove image" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:100 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:111 +#: templates/personal.php:104 msgid "Cancel" msgstr "取消" -#: templates/personal.php:112 +#: templates/personal.php:105 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:120 templates/personal.php:121 +#: templates/personal.php:111 templates/personal.php:112 msgid "Language" msgstr "" -#: templates/personal.php:140 +#: templates/personal.php:131 msgid "Help translate" msgstr "" -#: templates/personal.php:147 +#: templates/personal.php:137 msgid "WebDAV" msgstr "" -#: templates/personal.php:149 +#: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:161 +#: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:167 +#: templates/personal.php:157 msgid "Log-in password" msgstr "" -#: templates/personal.php:172 +#: templates/personal.php:162 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index 96105f465a5..b2f150dcbf3 100644 --- a/l10n/zh_HK/user_ldap.po +++ b/l10n/zh_HK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -142,7 +142,7 @@ msgstr[0] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -333,7 +333,7 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" +msgid "Case insensitive LDAP server (Windows)" msgstr "" #: templates/settings.php:27 diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index df741fa89fc..fe7643d20dc 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:54+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" @@ -85,6 +85,20 @@ msgstr "群組已存在" msgid "Unable to add group" msgstr "群組增加失敗" +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Email已儲存" diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index 8f76848a295..dd95586e561 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-12 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 05:55+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" @@ -144,7 +144,7 @@ msgstr[0] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:963 +#: lib/wizard.php:983 msgid "Could not find the desired feature" msgstr "" @@ -335,8 +335,8 @@ msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr "不區分大小寫的 LDAP 伺服器 (Windows)" +msgid "Case insensitive LDAP server (Windows)" +msgstr "" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/lib/l10n/tr.php b/lib/l10n/tr.php index 83dc1e0ac8c..0be1c4b186a 100644 --- a/lib/l10n/tr.php +++ b/lib/l10n/tr.php @@ -39,20 +39,20 @@ $TRANSLATIONS = array( "%s enter the database name." => "%s veritabanı adını girin.", "%s you may not use dots in the database name" => "%s veritabanı adında nokta kullanamayabilirsiniz", "MS SQL username and/or password not valid: %s" => "MS SQL kullanıcı adı ve/veya parolası geçersiz: %s", -"You need to enter either an existing account or the administrator." => "Bir konto veya kullanici birlemek ihtiyacin. ", +"You need to enter either an existing account or the administrator." => "Siz veya yönetici mevcut bir hesap girmeli.", "MySQL/MariaDB username and/or password not valid" => "MySQL/MariaDB kullanıcı adı ve/veya parolası geçersiz", -"DB Error: \"%s\"" => "DB Hata: ''%s''", -"Offending command was: \"%s\"" => "Komut rahasiz ''%s''. ", +"DB Error: \"%s\"" => "VT Hatası: \"%s\"", +"Offending command was: \"%s\"" => "Saldırgan komut: \"%s\"", "MySQL/MariaDB user '%s'@'localhost' exists already." => "MySQL/MariaDB kullanıcı '%s'@'localhost' zaten mevcut.", "Drop this user from MySQL/MariaDB" => "Bu kullanıcıyı MySQL/MariaDB'dan at (drop)", "MySQL/MariaDB user '%s'@'%%' already exists" => "MySQL/MariaDB kullanıcısı '%s'@'%%' zaten mevcut", "Drop this user from MySQL/MariaDB." => "Bu kullanıcıyı MySQL/MariaDB'dan at (drop)", "Oracle connection could not be established" => "Oracle bağlantısı kurulamadı", -"Oracle username and/or password not valid" => "Adi klullanici ve/veya parola Oracle mantikli değildir. ", +"Oracle username and/or password not valid" => "Oracle kullanıcı adı ve/veya parolası geçerli değil", "Offending command was: \"%s\", name: %s, password: %s" => "Hatalı komut: \"%s\", ad: %s, parola: %s", -"PostgreSQL username and/or password not valid" => "PostgreSQL adi kullanici ve/veya parola yasal degildir. ", -"Set an admin username." => "Bir adi kullanici vermek. ", -"Set an admin password." => "Parola yonetici birlemek. ", +"PostgreSQL username and/or password not valid" => "PostgreSQL kullanıcı adı ve/veya parolası geçerli değil", +"Set an admin username." => "Bir yönetici kullanıcı adı ayarlayın.", +"Set an admin password." => "Bir yönetici kullanıcı parolası ayarlayın.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web sunucunuz dosya aktarımı için düzgün bir şekilde yapılandırılmamış. WevDAV arayüzü sorunlu görünüyor.", "Please double check the installation guides." => "Lütfen kurulum kılavuzlarını iki kez kontrol edin.", "%s shared »%s« with you" => "%s sizinle »%s« paylaşımında bulundu", -- GitLab From e7fa2790f39a5c120d4f935139c1210258a1472a Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Sat, 12 Apr 2014 15:02:19 +0200 Subject: [PATCH 279/296] Correctly process request parameters other than GET or POST, dont use globals in the class but inject it --- lib/private/appframework/http/request.php | 80 +++++++++-------------- lib/private/server.php | 9 ++- 2 files changed, 39 insertions(+), 50 deletions(-) diff --git a/lib/private/appframework/http/request.php b/lib/private/appframework/http/request.php index 40f47a7bd2f..43631697d3a 100644 --- a/lib/private/appframework/http/request.php +++ b/lib/private/appframework/http/request.php @@ -60,7 +60,10 @@ class Request implements \ArrayAccess, \Countable, IRequest { * @param string|false 'requesttoken' the requesttoken or false when not available * @see http://www.php.net/manual/en/reserved.variables.php */ - public function __construct(array $vars=array()) { + public function __construct(array $vars=array(), $stream='php://input') { + + $this->inputStream = $stream; + $this->items['params'] = array(); foreach($this->allowedKeys as $name) { $this->items[$name] = isset($vars[$name]) @@ -68,25 +71,29 @@ class Request implements \ArrayAccess, \Countable, IRequest { : array(); } - if (defined('PHPUNIT_RUN') && PHPUNIT_RUN - && in_array('fakeinput', stream_get_wrappers())) { - $this->inputStream = 'fakeinput://data'; - } else { - $this->inputStream = 'php://input'; - } - - // Only 'application/x-www-form-urlencoded' requests are automatically - // transformed by PHP, 'application/json' must be decoded manually. - if ($this->method === 'POST' - && strpos($this->getHeader('Content-Type'), 'application/json') !== false - ) { - $this->items['params'] = $this->items['post'] = json_decode(file_get_contents($this->inputStream), true); - } + // 'application/json' must be decoded manually. + if (strpos($this->getHeader('Content-Type'), 'application/json') !== false) { + $params = json_decode(file_get_contents($this->inputStream), true); + if(count($params) > 0) { + $this->items['params'] = $params; + } + // Handle application/x-www-form-urlencoded for methods other than GET + // or post correctly + } elseif($vars['method'] !== 'GET' + && $vars['method'] !== 'POST' + && strpos($this->getHeader('Content-Type'), 'application/x-www-form-urlencoded') !== false) { + + parse_str(file_get_contents($this->inputStream), $params); + if(is_array($params)) { + $this->items['params'] = $params; + } + } $this->items['parameters'] = array_merge( $this->items['get'], $this->items['post'], - $this->items['urlParams'] + $this->items['urlParams'], + $this->items['params'] ); } @@ -313,47 +320,22 @@ class Request implements \ArrayAccess, \Countable, IRequest { * @throws \LogicException */ protected function getContent() { - if ($this->content === false && $this->method === 'PUT') { - throw new \LogicException( - '"put" can only be accessed once if not ' - . 'application/x-www-form-urlencoded or application/json.' - ); - } - // If the content can't be parsed into an array then return a stream resource. if ($this->method === 'PUT' && strpos($this->getHeader('Content-Type'), 'application/x-www-form-urlencoded') === false && strpos($this->getHeader('Content-Type'), 'application/json') === false ) { + if ($this->content === false) { + throw new \LogicException( + '"put" can only be accessed once if not ' + . 'application/x-www-form-urlencoded or application/json.' + ); + } $this->content = false; return fopen($this->inputStream, 'rb'); + } else { + return $this->parameters; } - - if (is_null($this->content)) { - $this->content = file_get_contents($this->inputStream); - - /* - * Normal jquery ajax requests are sent as application/x-www-form-urlencoded - * and in $_GET and $_POST PHP transformes the data into an array. - * The first condition mimics this. - * The second condition allows for sending raw application/json data while - * still getting the result as an array. - * - */ - if (strpos($this->getHeader('Content-Type'), 'application/x-www-form-urlencoded') !== false) { - parse_str($this->content, $content); - if(is_array($content)) { - $this->content = $content; - } - } elseif (strpos($this->getHeader('Content-Type'), 'application/json') !== false) { - $content = json_decode($this->content, true); - if(is_array($content)) { - $this->content = $content; - } - } - } - - return $this->content; } /** diff --git a/lib/private/server.php b/lib/private/server.php index 3517d7b3548..5d90a0b19fc 100644 --- a/lib/private/server.php +++ b/lib/private/server.php @@ -35,6 +35,13 @@ class Server extends SimpleContainer implements IServerContainer { $requesttoken = false; } + if (defined('PHPUNIT_RUN') && PHPUNIT_RUN + && in_array('fakeinput', stream_get_wrappers())) { + $stream = 'fakeinput://data'; + } else { + $stream = 'php://input'; + } + return new Request( array( 'get' => $_GET, @@ -48,7 +55,7 @@ class Server extends SimpleContainer implements IServerContainer { : null, 'urlParams' => $urlParams, 'requesttoken' => $requesttoken, - ) + ), $stream ); }); $this->registerService('PreviewManager', function($c) { -- GitLab From 62cce982bbd66c11ddb7867b516bc13f95eaf9a5 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Sat, 12 Apr 2014 16:17:49 +0200 Subject: [PATCH 280/296] default to GET request when no method is set to fix unittests, also set parsed json parameters on the post attribute --- lib/private/appframework/http/request.php | 7 +++++ .../dependencyinjection/DIContainerTest.php | 2 +- tests/lib/appframework/http/RequestTest.php | 28 +++++++++++-------- .../middleware/MiddlewareDispatcherTest.php | 2 +- 4 files changed, 25 insertions(+), 14 deletions(-) diff --git a/lib/private/appframework/http/request.php b/lib/private/appframework/http/request.php index 43631697d3a..643fa685adc 100644 --- a/lib/private/appframework/http/request.php +++ b/lib/private/appframework/http/request.php @@ -65,6 +65,10 @@ class Request implements \ArrayAccess, \Countable, IRequest { $this->inputStream = $stream; $this->items['params'] = array(); + if(!array_key_exists('method', $vars)) { + $vars['method'] = 'GET'; + } + foreach($this->allowedKeys as $name) { $this->items[$name] = isset($vars[$name]) ? $vars[$name] @@ -76,6 +80,9 @@ class Request implements \ArrayAccess, \Countable, IRequest { $params = json_decode(file_get_contents($this->inputStream), true); if(count($params) > 0) { $this->items['params'] = $params; + if($vars['method'] === 'POST') { + $this->items['post'] = $params; + } } // Handle application/x-www-form-urlencoded for methods other than GET // or post correctly diff --git a/tests/lib/appframework/dependencyinjection/DIContainerTest.php b/tests/lib/appframework/dependencyinjection/DIContainerTest.php index f3ebff0207f..d1bc900fb28 100644 --- a/tests/lib/appframework/dependencyinjection/DIContainerTest.php +++ b/tests/lib/appframework/dependencyinjection/DIContainerTest.php @@ -70,7 +70,7 @@ class DIContainerTest extends \PHPUnit_Framework_TestCase { public function testMiddlewareDispatcherIncludesSecurityMiddleware(){ - $this->container['Request'] = new Request(); + $this->container['Request'] = new Request(array('method' => 'GET')); $security = $this->container['SecurityMiddleware']; $dispatcher = $this->container['MiddlewareDispatcher']; diff --git a/tests/lib/appframework/http/RequestTest.php b/tests/lib/appframework/http/RequestTest.php index 00473a8c44f..58828d17bb2 100644 --- a/tests/lib/appframework/http/RequestTest.php +++ b/tests/lib/appframework/http/RequestTest.php @@ -18,6 +18,7 @@ class RequestTest extends \PHPUnit_Framework_TestCase { stream_wrapper_unregister('fakeinput'); } stream_wrapper_register('fakeinput', 'RequestStream'); + $this->stream = 'fakeinput://data'; } public function tearDown() { @@ -30,7 +31,7 @@ class RequestTest extends \PHPUnit_Framework_TestCase { 'method' => 'GET', ); - $request = new Request($vars); + $request = new Request($vars, $this->stream); // Countable $this->assertEquals(2, count($request)); @@ -54,9 +55,10 @@ class RequestTest extends \PHPUnit_Framework_TestCase { 'get' => array('name' => 'John Q. Public', 'nickname' => 'Joey'), 'post' => array('name' => 'Jane Doe', 'nickname' => 'Janey'), 'urlParams' => array('user' => 'jw', 'name' => 'Johnny Weissmüller'), + 'method' => 'GET' ); - $request = new Request($vars); + $request = new Request($vars, $this->stream); $this->assertEquals(3, count($request)); $this->assertEquals('Janey', $request->{'nickname'}); @@ -70,9 +72,10 @@ class RequestTest extends \PHPUnit_Framework_TestCase { public function testImmutableArrayAccess() { $vars = array( 'get' => array('name' => 'John Q. Public', 'nickname' => 'Joey'), + 'method' => 'GET' ); - $request = new Request($vars); + $request = new Request($vars, $this->stream); $request['nickname'] = 'Janey'; } @@ -82,9 +85,10 @@ class RequestTest extends \PHPUnit_Framework_TestCase { public function testImmutableMagicAccess() { $vars = array( 'get' => array('name' => 'John Q. Public', 'nickname' => 'Joey'), + 'method' => 'GET' ); - $request = new Request($vars); + $request = new Request($vars, $this->stream); $request->{'nickname'} = 'Janey'; } @@ -97,7 +101,7 @@ class RequestTest extends \PHPUnit_Framework_TestCase { 'method' => 'GET', ); - $request = new Request($vars); + $request = new Request($vars, $this->stream); $result = $request->post; } @@ -107,7 +111,7 @@ class RequestTest extends \PHPUnit_Framework_TestCase { 'method' => 'GET', ); - $request = new Request($vars); + $request = new Request($vars, $this->stream); $this->assertEquals('GET', $request->method); $result = $request->get; $this->assertEquals('John Q. Public', $result['name']); @@ -119,10 +123,10 @@ class RequestTest extends \PHPUnit_Framework_TestCase { $data = '{"name": "John Q. Public", "nickname": "Joey"}'; $vars = array( 'method' => 'POST', - 'server' => array('CONTENT_TYPE' => 'application/json; utf-8'), + 'server' => array('CONTENT_TYPE' => 'application/json; utf-8') ); - $request = new Request($vars); + $request = new Request($vars, $this->stream); $this->assertEquals('POST', $request->method); $result = $request->post; $this->assertEquals('John Q. Public', $result['name']); @@ -140,7 +144,7 @@ class RequestTest extends \PHPUnit_Framework_TestCase { 'server' => array('CONTENT_TYPE' => 'application/x-www-form-urlencoded'), ); - $request = new Request($vars); + $request = new Request($vars, $this->stream); $this->assertEquals('PATCH', $request->method); $result = $request->patch; @@ -159,7 +163,7 @@ class RequestTest extends \PHPUnit_Framework_TestCase { 'server' => array('CONTENT_TYPE' => 'application/json; utf-8'), ); - $request = new Request($vars); + $request = new Request($vars, $this->stream); $this->assertEquals('PUT', $request->method); $result = $request->put; @@ -174,7 +178,7 @@ class RequestTest extends \PHPUnit_Framework_TestCase { 'server' => array('CONTENT_TYPE' => 'application/json; utf-8'), ); - $request = new Request($vars); + $request = new Request($vars, $this->stream); $this->assertEquals('PATCH', $request->method); $result = $request->patch; @@ -193,7 +197,7 @@ class RequestTest extends \PHPUnit_Framework_TestCase { 'server' => array('CONTENT_TYPE' => 'image/png'), ); - $request = new Request($vars); + $request = new Request($vars, $this->stream); $this->assertEquals('PUT', $request->method); $resource = $request->put; $contents = stream_get_contents($resource); diff --git a/tests/lib/appframework/middleware/MiddlewareDispatcherTest.php b/tests/lib/appframework/middleware/MiddlewareDispatcherTest.php index f16b14150c3..935f97d2a6f 100644 --- a/tests/lib/appframework/middleware/MiddlewareDispatcherTest.php +++ b/tests/lib/appframework/middleware/MiddlewareDispatcherTest.php @@ -132,7 +132,7 @@ class MiddlewareDispatcherTest extends \PHPUnit_Framework_TestCase { private function getControllerMock(){ return $this->getMock('OCP\AppFramework\Controller', array('method'), - array($this->getAPIMock(), new Request())); + array($this->getAPIMock(), new Request(array('method' => 'GET')))); } -- GitLab From 4d4db237458d4c05de868ab99b7f44af6e67d02b Mon Sep 17 00:00:00 2001 From: Volkan Gezer Date: Sat, 12 Apr 2014 23:47:32 +0200 Subject: [PATCH 281/296] fix contribute link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 032a7e987f2..56fd9942c16 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Quality: [![Scrutinizer Quality Score](https://scrutinizer-ci.com/g/owncloud/cor http://doc.owncloud.org/server/6.0/developer_manual/app/index.html ### Contribution Guidelines -http://owncloud.org/dev/contribute/ +http://owncloud.org/contribute/ ### Get in touch * [Forum](http://forum.owncloud.org) -- GitLab From b92f411a366a2f150ad9c4405e60d3a73d69ddf8 Mon Sep 17 00:00:00 2001 From: Volkan Gezer Date: Sun, 13 Apr 2014 01:45:10 +0200 Subject: [PATCH 282/296] upda mailinglist address --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 56fd9942c16..23a2563e895 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ http://owncloud.org/contribute/ ### Get in touch * [Forum](http://forum.owncloud.org) -* [Mailing list](https://mail.kde.org/mailman/listinfo/owncloud) +* [Mailing list](http://mailman.owncloud.org/mailman/listinfo) * [IRC channel](https://webchat.freenode.net/?channels=owncloud) * [Twitter](https://twitter.com/ownClouders) -- GitLab From 7fa0c3b7b72acdc0bf7321827a5195cc2a8af1e1 Mon Sep 17 00:00:00 2001 From: Volkan Gezer Date: Sun, 13 Apr 2014 01:47:03 +0200 Subject: [PATCH 283/296] fix translation link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 23a2563e895..618aa8d2009 100644 --- a/README.md +++ b/README.md @@ -25,4 +25,4 @@ Please submit translations via Transifex: https://www.transifex.com/projects/p/owncloud/ For more detailed information about translations: -http://owncloud.org/dev/translation/ +http://doc.owncloud.org/server/6.0/developer_manual/core/translation.html -- GitLab From d98ae4f9b25db6c3aa40ca254bc079ace710d0c0 Mon Sep 17 00:00:00 2001 From: kondou Date: Sun, 13 Apr 2014 05:21:29 +0200 Subject: [PATCH 284/296] Fix a wrong WebDAV Warning with self-signed-certs Occuring in the admin interface --- lib/private/davclient.php | 13 +++++++++++++ lib/private/util.php | 2 ++ 2 files changed, 15 insertions(+) diff --git a/lib/private/davclient.php b/lib/private/davclient.php index afa4e1103b4..916dc11d17a 100644 --- a/lib/private/davclient.php +++ b/lib/private/davclient.php @@ -29,6 +29,8 @@ class OC_DAVClient extends \Sabre_DAV_Client { protected $requestTimeout; + protected $verifyHost; + /** * @brief Sets the request timeout or 0 to disable timeout. * @param integer $timeout in seconds or 0 to disable @@ -37,10 +39,21 @@ class OC_DAVClient extends \Sabre_DAV_Client { $this->requestTimeout = (int)$timeout; } + /** + * @brief Sets the CURLOPT_SSL_VERIFYHOST setting + * @param integer $value value to set CURLOPT_SSL_VERIFYHOST to + */ + public function setVerifyHost($value) { + $this->verifyHost = $value; + } + protected function curlRequest($url, $settings) { if ($this->requestTimeout > 0) { $settings[CURLOPT_TIMEOUT] = $this->requestTimeout; } + if (!is_null($this->verifyHost)) { + $settings[CURLOPT_SSL_VERIFYHOST] = $this->verifyHost; + } return parent::curlRequest($url, $settings); } } diff --git a/lib/private/util.php b/lib/private/util.php index a744644b39c..e20de308e87 100755 --- a/lib/private/util.php +++ b/lib/private/util.php @@ -902,6 +902,8 @@ class OC_Util { // for this self test we don't care if the ssl certificate is self signed and the peer cannot be verified. $client->setVerifyPeer(false); + // also don't care if the host can't be verified + $client->setVerifyHost(0); $return = true; try { -- GitLab From 982d2bcc5b829e7d9e8db5f1111570d80f537c5f Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sun, 13 Apr 2014 01:55:12 -0400 Subject: [PATCH 285/296] [tx-robot] updated from transifex --- apps/files_external/l10n/sv.php | 5 ++ apps/user_ldap/l10n/de.php | 1 + apps/user_ldap/l10n/de_DE.php | 1 + apps/user_ldap/l10n/es.php | 1 + apps/user_ldap/l10n/fr.php | 1 + apps/user_ldap/l10n/gl.php | 1 + apps/user_ldap/l10n/it.php | 1 + apps/user_ldap/l10n/pl.php | 1 + apps/user_ldap/l10n/pt_BR.php | 1 + apps/user_ldap/l10n/sv.php | 1 + apps/user_ldap/l10n/tr.php | 1 + l10n/de/settings.po | 12 ++-- l10n/de/user_ldap.po | 8 +-- l10n/de_DE/settings.po | 12 ++-- l10n/de_DE/user_ldap.po | 8 +-- l10n/es/settings.po | 12 ++-- l10n/es/user_ldap.po | 9 +-- l10n/fi_FI/settings.po | 12 ++-- l10n/fr/settings.po | 14 ++--- l10n/fr/user_ldap.po | 9 +-- l10n/gl/settings.po | 12 ++-- l10n/gl/user_ldap.po | 8 +-- l10n/it/settings.po | 12 ++-- l10n/it/user_ldap.po | 8 +-- l10n/pl/settings.po | 12 ++-- l10n/pl/user_ldap.po | 8 +-- l10n/pt_BR/core.po | 98 ++++++++++++++--------------- l10n/pt_BR/settings.po | 12 ++-- l10n/pt_BR/user_ldap.po | 8 +-- l10n/sv/files_external.po | 17 ++--- l10n/sv/lib.po | 11 ++-- l10n/sv/settings.po | 13 ++-- l10n/sv/user_ldap.po | 9 +-- l10n/templates/core.pot | 2 +- 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/tr/settings.po | 12 ++-- l10n/tr/user_ldap.po | 8 +-- lib/l10n/sv.php | 4 +- settings/l10n/de.php | 3 + settings/l10n/de_DE.php | 3 + settings/l10n/es.php | 3 + settings/l10n/fi_FI.php | 3 + settings/l10n/fr.php | 3 + settings/l10n/gl.php | 3 + settings/l10n/it.php | 3 + settings/l10n/pl.php | 3 + settings/l10n/pt_BR.php | 3 + settings/l10n/sv.php | 3 + settings/l10n/tr.php | 3 + 59 files changed, 238 insertions(+), 182 deletions(-) diff --git a/apps/files_external/l10n/sv.php b/apps/files_external/l10n/sv.php index ad5e6ad050c..2992460d283 100644 --- a/apps/files_external/l10n/sv.php +++ b/apps/files_external/l10n/sv.php @@ -6,6 +6,11 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Ange en giltig Dropbox nyckel och hemlighet.", "Error configuring Google Drive storage" => "Fel vid konfigurering av Google Drive", "Saved" => "Sparad", +"Note: " => " OBS: ", +" and " => "och", +"Note: The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => " OBS: cURL stöd i PHP inte är aktiverat eller installeras. Montering av %s är inte möjlig. Be din systemadministratör för att installera det.", +"Note: The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => " OBS: Den FTP-stöd i PHP inte är aktiverat eller installeras. Montering av %s är inte möjlig. Be din systemadministratör för att installera det.", +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." => " OBS: \"%s\" är inte installerat. Montering av %s är inte möjlig. Be din systemadministratör för att installera det.", "External Storage" => "Extern lagring", "Folder name" => "Mappnamn", "External storage" => "Extern lagring", diff --git a/apps/user_ldap/l10n/de.php b/apps/user_ldap/l10n/de.php index 15c8d21687d..43336520739 100644 --- a/apps/user_ldap/l10n/de.php +++ b/apps/user_ldap/l10n/de.php @@ -70,6 +70,7 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Backup Port", "Disable Main Server" => "Hauptserver deaktivieren", "Only connect to the replica server." => "Nur zum Replikat-Server verbinden.", +"Case insensitive LDAP server (Windows)" => "LDAP-Server (Windows - Groß- und Kleinschreibung bleibt unbeachtet)", "Turn off SSL certificate validation." => "Schalte die SSL-Zertifikatsprüfung aus.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Nur für Testzwecke geeignet, sollte Standardmäßig nicht verwendet werden. Falls die Verbindung nur mit dieser Option funktioniert, importiere das SSL-Zertifikat des LDAP-Servers in deinen %s Server.", "Cache Time-To-Live" => "Speichere Time-To-Live zwischen", diff --git a/apps/user_ldap/l10n/de_DE.php b/apps/user_ldap/l10n/de_DE.php index 60d52cd30f6..21c149d1a1d 100644 --- a/apps/user_ldap/l10n/de_DE.php +++ b/apps/user_ldap/l10n/de_DE.php @@ -70,6 +70,7 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Backup Port", "Disable Main Server" => "Hauptserver deaktivieren", "Only connect to the replica server." => "Nur zum Replikat-Server verbinden.", +"Case insensitive LDAP server (Windows)" => "LDAP-Server (Windows: Groß- und Kleinschreibung bleibt unbeachtet)", "Turn off SSL certificate validation." => "Schalten Sie die SSL-Zertifikatsprüfung aus.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Nur für Testzwecke geeignet, sollte Standardmäßig nicht verwendet werden. Falls die Verbindung nur mit dieser Option funktioniert, importieren Sie das SSL-Zertifikat des LDAP-Servers in Ihren %s Server.", "Cache Time-To-Live" => "Speichere Time-To-Live zwischen", diff --git a/apps/user_ldap/l10n/es.php b/apps/user_ldap/l10n/es.php index 6034b4fb635..2c294aff785 100644 --- a/apps/user_ldap/l10n/es.php +++ b/apps/user_ldap/l10n/es.php @@ -70,6 +70,7 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Puerto para copias de seguridad (Replica)", "Disable Main Server" => "Deshabilitar servidor principal", "Only connect to the replica server." => "Conectar sólo con el servidor de réplica.", +"Case insensitive LDAP server (Windows)" => "Servidor de LDAP insensible a mayúsculas/minúsculas (Windows)", "Turn off SSL certificate validation." => "Apagar la validación por certificado SSL.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "No se recomienda, ¡utilízalo únicamente para pruebas! Si la conexión únicamente funciona con esta opción, importa el certificado SSL del servidor LDAP en tu servidor %s.", "Cache Time-To-Live" => "Cache TTL", diff --git a/apps/user_ldap/l10n/fr.php b/apps/user_ldap/l10n/fr.php index 468297ca1f3..44b92077b92 100644 --- a/apps/user_ldap/l10n/fr.php +++ b/apps/user_ldap/l10n/fr.php @@ -70,6 +70,7 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Port du serveur de backup (réplique)", "Disable Main Server" => "Désactiver le serveur principal", "Only connect to the replica server." => "Se connecter uniquement au serveur de replica.", +"Case insensitive LDAP server (Windows)" => "Serveur LDAP insensible à la casse (Windows)", "Turn off SSL certificate validation." => "Désactiver la validation du certificat SSL.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Non recommandé, à utiliser à des fins de tests uniquement. Si la connexion ne fonctionne qu'avec cette option, importez le certificat SSL du serveur LDAP dans le serveur %s.", "Cache Time-To-Live" => "Durée de vie du cache", diff --git a/apps/user_ldap/l10n/gl.php b/apps/user_ldap/l10n/gl.php index f27f8eb7bb1..82c484bb95d 100644 --- a/apps/user_ldap/l10n/gl.php +++ b/apps/user_ldap/l10n/gl.php @@ -70,6 +70,7 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Porto da copia de seguranza (Réplica)", "Disable Main Server" => "Desactivar o servidor principal", "Only connect to the replica server." => "Conectar só co servidor de réplica.", +"Case insensitive LDAP server (Windows)" => "Servidor LDAP non sensíbel a maiúsculas (Windows)", "Turn off SSL certificate validation." => "Desactiva a validación do certificado SSL.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Non recomendado, utilizar só para probas! Se a conexión só funciona con esta opción importa o certificado SSL do servidor LDAP no seu servidor %s.", "Cache Time-To-Live" => "Tempo de persistencia da caché", diff --git a/apps/user_ldap/l10n/it.php b/apps/user_ldap/l10n/it.php index cd8c88814aa..095a0619ee1 100644 --- a/apps/user_ldap/l10n/it.php +++ b/apps/user_ldap/l10n/it.php @@ -70,6 +70,7 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Porta di backup (Replica)", "Disable Main Server" => "Disabilita server principale", "Only connect to the replica server." => "Collegati solo al server di replica.", +"Case insensitive LDAP server (Windows)" => "Server LDAP non sensibile alle maiuscole (Windows)", "Turn off SSL certificate validation." => "Disattiva il controllo del certificato SSL.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Non consigliata, da utilizzare solo per test! Se la connessione funziona solo con questa opzione, importa il certificate SSL del server LDAP sul tuo server %s.", "Cache Time-To-Live" => "Tempo di vita della cache", diff --git a/apps/user_ldap/l10n/pl.php b/apps/user_ldap/l10n/pl.php index 877dff4d97f..988e44dbe38 100644 --- a/apps/user_ldap/l10n/pl.php +++ b/apps/user_ldap/l10n/pl.php @@ -70,6 +70,7 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Kopia zapasowa (repliki) Port", "Disable Main Server" => "Wyłącz serwer główny", "Only connect to the replica server." => "Połącz tylko do repliki serwera.", +"Case insensitive LDAP server (Windows)" => "Serwer LDAP nie rozróżniający wielkości liter (Windows)", "Turn off SSL certificate validation." => "Wyłączyć sprawdzanie poprawności certyfikatu SSL.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Nie polecane, używać tylko w celu testowania! Jeśli połączenie działa tylko z tą opcją, zaimportuj certyfikat SSL serwera LDAP na swój %s.", "Cache Time-To-Live" => "Przechowuj czas życia", diff --git a/apps/user_ldap/l10n/pt_BR.php b/apps/user_ldap/l10n/pt_BR.php index 1cfdce7cabd..0c15694e3ff 100644 --- a/apps/user_ldap/l10n/pt_BR.php +++ b/apps/user_ldap/l10n/pt_BR.php @@ -70,6 +70,7 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Porta do Backup (Réplica)", "Disable Main Server" => "Desativar Servidor Principal", "Only connect to the replica server." => "Conectar-se somente ao servidor de réplica.", +"Case insensitive LDAP server (Windows)" => "Servidor LDAP(Windows) não distigue maiúscula de minúscula", "Turn off SSL certificate validation." => "Desligar validação de certificado SSL.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Não recomendado, use-o somente para teste! Se a conexão só funciona com esta opção, importar o certificado SSL do servidor LDAP em seu servidor %s.", "Cache Time-To-Live" => "Cache Time-To-Live", diff --git a/apps/user_ldap/l10n/sv.php b/apps/user_ldap/l10n/sv.php index 1283b16c7d1..2a4f8b19655 100644 --- a/apps/user_ldap/l10n/sv.php +++ b/apps/user_ldap/l10n/sv.php @@ -70,6 +70,7 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Säkerhetskopierins-port (Replika)", "Disable Main Server" => "Inaktivera huvudserver", "Only connect to the replica server." => "Anslut endast till replikaservern.", +"Case insensitive LDAP server (Windows)" => "om okänslig LDAP-server (Windows)", "Turn off SSL certificate validation." => "Stäng av verifiering av SSL-certifikat.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Rekommenderas inte, använd endast för test! Om anslutningen bara fungerar med denna inställning behöver du importera LDAP-serverns SSL-certifikat till din %s server.", "Cache Time-To-Live" => "Cache Time-To-Live", diff --git a/apps/user_ldap/l10n/tr.php b/apps/user_ldap/l10n/tr.php index fde3db85d48..48e39c8523c 100644 --- a/apps/user_ldap/l10n/tr.php +++ b/apps/user_ldap/l10n/tr.php @@ -70,6 +70,7 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Yedek (Replica) Bağlantı Noktası", "Disable Main Server" => "Ana sunucuyu devredışı birak", "Only connect to the replica server." => "Sadece kopya sunucuya bağlan.", +"Case insensitive LDAP server (Windows)" => "Büyük küçük harf duyarsız LDAP sunucusu (Windows)", "Turn off SSL certificate validation." => "SSL sertifika doğrulamasını kapat.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Önerilmez, sadece test için kullanın! Eğer bağlantı sadece bu seçenekle çalışıyorsa %s sunucunuza LDAP sunucusunun SSL sertifikasını ekleyin.", "Cache Time-To-Live" => "Önbellek Time-To-Live Değeri", diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 36bbb05b66f..8f73c65cc25 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-13 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 10:00+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" @@ -95,17 +95,17 @@ msgstr "Gruppe konnte nicht angelegt werden" #: ajax/decryptall.php:31 msgid "Files decrypted successfully" -msgstr "" +msgstr "Dateien erfolgreich entschlüsselt" #: ajax/decryptall.php:33 msgid "" "Couldn't decrypt your files, please check your owncloud.log or ask your " "administrator" -msgstr "" +msgstr "Dateien konnten nicht entschlüsselt werden, prüfe bitte Dein owncloud.log oder frage Deinen Administrator" #: ajax/decryptall.php:36 msgid "Couldn't decrypt your files, check your password and try again" -msgstr "" +msgstr "Dateien konnten nicht entschlüsselt werden, bitte prüfe Dein Passwort und versuche es erneut." #: ajax/lostpassword.php:12 msgid "Email saved" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index a91c8c7e8ef..f581aad6417 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-13 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 10:00+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" @@ -340,7 +340,7 @@ msgstr "Nur zum Replikat-Server verbinden." #: templates/settings.php:26 msgid "Case insensitive LDAP server (Windows)" -msgstr "" +msgstr "LDAP-Server (Windows - Groß- und Kleinschreibung bleibt unbeachtet)" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index cfca7fb3af9..a3d2c9d70a7 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-13 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 10:00+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" @@ -95,17 +95,17 @@ msgstr "Die Gruppe konnte nicht angelegt werden" #: ajax/decryptall.php:31 msgid "Files decrypted successfully" -msgstr "" +msgstr "Dateien erfolgreich entschlüsselt" #: ajax/decryptall.php:33 msgid "" "Couldn't decrypt your files, please check your owncloud.log or ask your " "administrator" -msgstr "" +msgstr "Dateien konnten nicht entschlüsselt werden, prüfen Sie bitte Ihre owncloud.log oder fragen Sie Ihren Administrator" #: ajax/decryptall.php:36 msgid "Couldn't decrypt your files, check your password and try again" -msgstr "" +msgstr "Dateien konnten nicht entschlüsselt werden, bitte prüfen Sie Ihr Passwort und versuchen Sie es erneut." #: ajax/lostpassword.php:12 msgid "Email saved" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index f82937c17bb..be3a9259eee 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-13 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 10:00+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" @@ -342,7 +342,7 @@ msgstr "Nur zum Replikat-Server verbinden." #: templates/settings.php:26 msgid "Case insensitive LDAP server (Windows)" -msgstr "" +msgstr "LDAP-Server (Windows: Groß- und Kleinschreibung bleibt unbeachtet)" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 1f0cc298254..dbe7b978706 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-13 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 17:10+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" @@ -100,17 +100,17 @@ msgstr "No se pudo añadir el grupo" #: ajax/decryptall.php:31 msgid "Files decrypted successfully" -msgstr "" +msgstr "Los archivos fueron descifrados" #: ajax/decryptall.php:33 msgid "" "Couldn't decrypt your files, please check your owncloud.log or ask your " "administrator" -msgstr "" +msgstr "No se pudo descifrar sus archivos. Revise el owncloud.log o consulte con su administrador" #: ajax/decryptall.php:36 msgid "Couldn't decrypt your files, check your password and try again" -msgstr "" +msgstr "No se pudo descifrar sus archivos. Revise su contraseña e inténtelo de nuevo" #: ajax/lostpassword.php:12 msgid "Email saved" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index bad5b163ae3..c666da13051 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -4,6 +4,7 @@ # # Translators: # Agustin Ferrario , 2013 +# Art O. Pal , 2014 # Jose Luis Tirado , 2014 # Maenso , 2013 # Raul Fernandez Garcia , 2013 @@ -16,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-13 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 17:10+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" @@ -345,7 +346,7 @@ msgstr "Conectar sólo con el servidor de réplica." #: templates/settings.php:26 msgid "Case insensitive LDAP server (Windows)" -msgstr "" +msgstr "Servidor de LDAP insensible a mayúsculas/minúsculas (Windows)" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index b5422267fb5..52eee42c968 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: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-13 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 15:20+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" @@ -87,17 +87,17 @@ msgstr "Ryhmän lisäys epäonnistui" #: ajax/decryptall.php:31 msgid "Files decrypted successfully" -msgstr "" +msgstr "Tiedostojen salaus purettiin onnistuneesti" #: ajax/decryptall.php:33 msgid "" "Couldn't decrypt your files, please check your owncloud.log or ask your " "administrator" -msgstr "" +msgstr "Tiedostojen salauksen purkaminen epäonnistui. Tarkista owncloud.log-tiedosto tai ota yhteys ylläpitäjään" #: ajax/decryptall.php:36 msgid "Couldn't decrypt your files, check your password and try again" -msgstr "" +msgstr "Tiedostojen salauksen purkaminen epäonnistui. Tarkista salasanasi ja yritä uudelleen" #: ajax/lostpassword.php:12 msgid "Email saved" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 858a81483c6..adcb6304380 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -11,16 +11,16 @@ # Mystyle , 2013 # ogre_sympathique , 2013 # red0ne , 2013 -# RyDroid , 2013 +# RyDroid , 2013-2014 # tcit , 2014 # PVince81 , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-13 01:54-0400\n" +"PO-Revision-Date: 2014-04-13 03:10+0000\n" +"Last-Translator: RyDroid \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" @@ -97,17 +97,17 @@ msgstr "Impossible d'ajouter le groupe" #: ajax/decryptall.php:31 msgid "Files decrypted successfully" -msgstr "" +msgstr "Fichiers décryptés avec succès" #: ajax/decryptall.php:33 msgid "" "Couldn't decrypt your files, please check your owncloud.log or ask your " "administrator" -msgstr "" +msgstr "Impossible de décrypter vos fichiers, veuillez vérifier votre owncloud.log ou demander à votre administrateur" #: ajax/decryptall.php:36 msgid "Couldn't decrypt your files, check your password and try again" -msgstr "" +msgstr "Impossible de décrypter vos fichiers, vérifiez votre mot de passe et essayez à nouveau" #: ajax/lostpassword.php:12 msgid "Email saved" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index 7d63bd7bc47..241e7c34217 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -6,13 +6,14 @@ # Christophe Lherieau , 2013-2014 # etiess , 2013 # plachance , 2013 +# RyDroid , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-13 01:54-0400\n" +"PO-Revision-Date: 2014-04-13 03:10+0000\n" +"Last-Translator: RyDroid \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" @@ -339,7 +340,7 @@ msgstr "Se connecter uniquement au serveur de replica." #: templates/settings.php:26 msgid "Case insensitive LDAP server (Windows)" -msgstr "" +msgstr "Serveur LDAP insensible à la casse (Windows)" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index e3e5afbf144..cccd98ddb2b 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-13 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 06:50+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" @@ -88,17 +88,17 @@ msgstr "Non é posíbel engadir o grupo" #: ajax/decryptall.php:31 msgid "Files decrypted successfully" -msgstr "" +msgstr "Ficheiros descifrados satisfactoriamente" #: ajax/decryptall.php:33 msgid "" "Couldn't decrypt your files, please check your owncloud.log or ask your " "administrator" -msgstr "" +msgstr "Non foi posíbel descifrar os seus ficheiros. revise o ficheiro de rexistro owncloud.log, ou pregúntelle ao administrador" #: ajax/decryptall.php:36 msgid "Couldn't decrypt your files, check your password and try again" -msgstr "" +msgstr "Non foi posíbel descifrar os seus ficheiros. revise o seu contrasinal e ténteo de novo" #: ajax/lostpassword.php:12 msgid "Email saved" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index cf1287f612b..572a9987f57 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-13 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 06:50+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" @@ -338,7 +338,7 @@ msgstr "Conectar só co servidor de réplica." #: templates/settings.php:26 msgid "Case insensitive LDAP server (Windows)" -msgstr "" +msgstr "Servidor LDAP non sensíbel a maiúsculas (Windows)" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/it/settings.po b/l10n/it/settings.po index a2a0ae488f7..0a00b4fb4f4 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: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-13 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 06:20+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" @@ -90,17 +90,17 @@ msgstr "Impossibile aggiungere il gruppo" #: ajax/decryptall.php:31 msgid "Files decrypted successfully" -msgstr "" +msgstr "File decifrato correttamente" #: ajax/decryptall.php:33 msgid "" "Couldn't decrypt your files, please check your owncloud.log or ask your " "administrator" -msgstr "" +msgstr "Impossibile decifrare i tuoi file, controlla il file owncloud.log o chiedi al tuo amministratore" #: ajax/decryptall.php:36 msgid "Couldn't decrypt your files, check your password and try again" -msgstr "" +msgstr "Impossibile decifrare i tuoi file, controlla la password e prova ancora" #: ajax/lostpassword.php:12 msgid "Email saved" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index ef4f4d218f6..f35b94fd38f 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-13 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 06:20+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" @@ -339,7 +339,7 @@ msgstr "Collegati solo al server di replica." #: templates/settings.php:26 msgid "Case insensitive LDAP server (Windows)" -msgstr "" +msgstr "Server LDAP non sensibile alle maiuscole (Windows)" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index ef51e8010b7..e82c049724d 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-13 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 15:10+0000\n" +"Last-Translator: bobie \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -89,17 +89,17 @@ msgstr "Nie można dodać grupy" #: ajax/decryptall.php:31 msgid "Files decrypted successfully" -msgstr "" +msgstr "Pliki zostały poprawnie zdeszyfrowane" #: ajax/decryptall.php:33 msgid "" "Couldn't decrypt your files, please check your owncloud.log or ask your " "administrator" -msgstr "" +msgstr "Nie można zdeszyfrować Twoich plików, proszę sprawdzić owncloud.log lub zapytać administratora" #: ajax/decryptall.php:36 msgid "Couldn't decrypt your files, check your password and try again" -msgstr "" +msgstr "Nie można zdeszyfrować Twoich plików, sprawdź swoje hasło i spróbuj ponownie" #: ajax/lostpassword.php:12 msgid "Email saved" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index 2009fd7cc60..b758ae5b78f 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-13 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 15:10+0000\n" +"Last-Translator: bobie \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -343,7 +343,7 @@ msgstr "Połącz tylko do repliki serwera." #: templates/settings.php:26 msgid "Case insensitive LDAP server (Windows)" -msgstr "" +msgstr "Serwer LDAP nie rozróżniający wielkości liter (Windows)" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index a48b9dd777a..6e559dd45ac 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 10:40+0000\n" +"POT-Creation-Date: 2014-04-13 01:54-0400\n" +"PO-Revision-Date: 2014-04-13 03:10+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" @@ -144,127 +144,127 @@ msgstr "Ajustes" msgid "Saving..." msgstr "Salvando..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] " ha %n minuto" msgstr[1] "ha %n minutos" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "ha %n hora" msgstr[1] "ha %n horas" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "hoje" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "ontem" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "ha %n dia" msgstr[1] "ha %n dias" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "último mês" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "ha %n mês" msgstr[1] "ha %n meses" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "meses atrás" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "último ano" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "anos atrás" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Escolha" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "Erro no seletor de carregamento modelo de arquivos: {error}" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Sim" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "Não" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "Ok" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "Erro no carregamento de modelo de mensagem: {error}" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "{count} conflito de arquivo" msgstr[1] "{count} conflitos de arquivos" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "Conflito em um arquivo" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "Novos Arquivos" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "Arquivos já existentes" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "Qual arquivo você quer manter?" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Se você selecionar ambas as versões, o arquivo copiado terá um número adicionado ao seu nome." -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Cancelar" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "Continuar" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "(todos os selecionados)" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:457 msgid "({count} selected)" msgstr "({count} selecionados)" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:465 msgid "Error loading file exists template" msgstr "Erro ao carregar arquivo existe modelo" @@ -296,12 +296,12 @@ msgstr "Compartilhados" msgid "Share" msgstr "Compartilhar" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Erro" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Erro ao compartilhar" @@ -365,71 +365,71 @@ msgstr "Compartilhar via e-mail:" msgid "No people found" msgstr "Nenhuma pessoa encontrada" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "grupo" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "Não é permitido re-compartilhar" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "Compartilhado em {item} com {user}" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Descompartilhar" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "notificar por e-mail" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "pode editar" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "controle de acesso" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "criar" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "atualizar" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "remover" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "compartilhar" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Protegido com senha" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "Erro ao remover data de expiração" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "Erro ao definir data de expiração" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "Enviando ..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "E-mail enviado" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "Aviso" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index cc7719d2303..3bf361c5433 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: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-13 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 16: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" @@ -88,17 +88,17 @@ msgstr "Não foi possível adicionar grupo" #: ajax/decryptall.php:31 msgid "Files decrypted successfully" -msgstr "" +msgstr "Arquivos descriptografados com sucesso" #: ajax/decryptall.php:33 msgid "" "Couldn't decrypt your files, please check your owncloud.log or ask your " "administrator" -msgstr "" +msgstr "Não foi possível descriptografar os arquivos, verifique a sua owncloud.log ou pergunte ao seu administrador" #: ajax/decryptall.php:36 msgid "Couldn't decrypt your files, check your password and try again" -msgstr "" +msgstr "Não foi possível descriptografar os arquivos, verifique sua senha e tente novamente" #: ajax/lostpassword.php:12 msgid "Email saved" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index 887cae75e9b..b86ca612be9 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-13 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 16: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" @@ -338,7 +338,7 @@ msgstr "Conectar-se somente ao servidor de réplica." #: templates/settings.php:26 msgid "Case insensitive LDAP server (Windows)" -msgstr "" +msgstr "Servidor LDAP(Windows) não distigue maiúscula de minúscula" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index a39d6384c3d..6fc4c5c725a 100644 --- a/l10n/sv/files_external.po +++ b/l10n/sv/files_external.po @@ -4,14 +4,15 @@ # # Translators: # AsavarTzeth , 2014 +# henrikhjelm , 2014 # medialabs, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-13 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 11:30+0000\n" +"Last-Translator: henrikhjelm \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -45,32 +46,32 @@ msgstr "Sparad" #: lib/config.php:592 msgid "Note: " -msgstr "" +msgstr " OBS: " #: lib/config.php:602 msgid " and " -msgstr "" +msgstr "och" #: lib/config.php:624 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr " OBS: cURL stöd i PHP inte är aktiverat eller installeras. Montering av %s är inte möjlig. Be din systemadministratör för att installera det." #: lib/config.php:626 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr " OBS: Den FTP-stöd i PHP inte är aktiverat eller installeras. Montering av %s är inte möjlig. Be din systemadministratör för att installera det." #: lib/config.php:628 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" " ask your system administrator to install it." -msgstr "" +msgstr " OBS: \"%s\" är inte installerat. Montering av %s är inte möjlig. Be din systemadministratör för att installera det." #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index 07600270a14..3516cdfdd77 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -5,6 +5,7 @@ # Translators: # AsavarTzeth , 2014 # Daniel Sandman , 2013 +# henrikhjelm , 2014 # medialabs, 2013 # kallemooo , 2013 # Magnus Höglund , 2013 @@ -13,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-13 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 11:20+0000\n" +"Last-Translator: henrikhjelm \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -347,7 +348,7 @@ msgstr "år sedan" msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" -msgstr "" +msgstr "Endast följande tecken är tillåtna i ett användarnamn: \"az\", \"AZ\", \"0-9\", och \"_ @ -.\"" #: private/user/manager.php:251 msgid "A valid username must be provided" @@ -359,4 +360,4 @@ msgstr "Ett giltigt lösenord måste anges" #: private/user/manager.php:260 msgid "The username is already being used" -msgstr "" +msgstr "Användarnamnet används redan" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 8cd4062d844..fee602b13ca 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -7,6 +7,7 @@ # Daniel Sandman , 2013 # Gunnar Norin , 2013 # Gustav Smedberg , 2013 +# henrikhjelm , 2014 # Jan Busk, 2013 # Jan Busk, 2013 # medialabs, 2013 @@ -17,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-13 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 11:20+0000\n" +"Last-Translator: henrikhjelm \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -96,17 +97,17 @@ msgstr "Kan inte lägga till grupp" #: ajax/decryptall.php:31 msgid "Files decrypted successfully" -msgstr "" +msgstr "Filer dekrypteras utan fel" #: ajax/decryptall.php:33 msgid "" "Couldn't decrypt your files, please check your owncloud.log or ask your " "administrator" -msgstr "" +msgstr "Det gick inte att dekryptera dina filer, kontrollera din owncloud.log eller fråga administratören" #: ajax/decryptall.php:36 msgid "Couldn't decrypt your files, check your password and try again" -msgstr "" +msgstr "Det gick inte att dekryptera filerna, kontrollera ditt lösenord och försök igen" #: ajax/lostpassword.php:12 msgid "Email saved" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index 5a1b50527e2..14716892026 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -6,6 +6,7 @@ # AsavarTzeth , 2014 # DanielMalmgren , 2013 # Gustav Smedberg , 2013 +# henrikhjelm , 2014 # Jan Busk, 2013 # Jonas Erlandsson , 2013 # kallemooo , 2013 @@ -16,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-13 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 11:43+0000\n" +"Last-Translator: henrikhjelm \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -345,7 +346,7 @@ msgstr "Anslut endast till replikaservern." #: templates/settings.php:26 msgid "Case insensitive LDAP server (Windows)" -msgstr "" +msgstr "om okänslig LDAP-server (Windows)" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 3c44e623bf1..41999c5c635 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: 2014-04-12 01:54-0400\n" +"POT-Creation-Date: 2014-04-13 01:54-0400\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.pot b/l10n/templates/files.pot index 64c808c5c7a..ad5a0f5cf2d 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: 2014-04-12 01:54-0400\n" +"POT-Creation-Date: 2014-04-13 01:54-0400\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 4b990827d0d..fbc14254acf 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: 2014-04-12 01:54-0400\n" +"POT-Creation-Date: 2014-04-13 01:54-0400\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 1a4337a741e..3310a94ddcc 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: 2014-04-12 01:54-0400\n" +"POT-Creation-Date: 2014-04-13 01:54-0400\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 6b65617ab19..d13ba28969c 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: 2014-04-12 01:54-0400\n" +"POT-Creation-Date: 2014-04-13 01:54-0400\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 0bbe995ada6..4d206960525 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: 2014-04-12 01:54-0400\n" +"POT-Creation-Date: 2014-04-13 01:54-0400\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 a15d33b1b93..5fb1e4f151a 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: 2014-04-12 01:54-0400\n" +"POT-Creation-Date: 2014-04-13 01:54-0400\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 b13e7788d02..bb59a77e49f 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: 2014-04-12 01:54-0400\n" +"POT-Creation-Date: 2014-04-13 01:54-0400\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 fe151138b41..81964303b21 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: 2014-04-12 01:54-0400\n" +"POT-Creation-Date: 2014-04-13 01:54-0400\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 4691fc81540..d89379830c4 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: 2014-04-12 01:54-0400\n" +"POT-Creation-Date: 2014-04-13 01:54-0400\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 a1bd167ca18..489bfbbbb8f 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: 2014-04-12 01:54-0400\n" +"POT-Creation-Date: 2014-04-13 01:54-0400\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 25424884d02..62ca0e1c873 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: 2014-04-12 01:54-0400\n" +"POT-Creation-Date: 2014-04-13 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index d69df3145be..68115565daa 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: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-13 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 13:40+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" @@ -90,17 +90,17 @@ msgstr "Gruba eklenemiyor" #: ajax/decryptall.php:31 msgid "Files decrypted successfully" -msgstr "" +msgstr "Dosya şifresi başarıyla çözüldü" #: ajax/decryptall.php:33 msgid "" "Couldn't decrypt your files, please check your owncloud.log or ask your " "administrator" -msgstr "" +msgstr "Dosyalarınızın şifresi kaldırılamadı, lütfen owncloud.log dosyasına bakın veya yöneticinizle iletişime geçin." #: ajax/decryptall.php:36 msgid "Couldn't decrypt your files, check your password and try again" -msgstr "" +msgstr "Dosyalarınızın şifresi kaldırılamadı, parolanızı denetleyip yeniden deneyin." #: ajax/lostpassword.php:12 msgid "Email saved" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 2617ea1b58f..d5252c96abb 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-13 01:54-0400\n" +"PO-Revision-Date: 2014-04-12 13:40+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" @@ -339,7 +339,7 @@ msgstr "Sadece kopya sunucuya bağlan." #: templates/settings.php:26 msgid "Case insensitive LDAP server (Windows)" -msgstr "" +msgstr "Büyük küçük harf duyarsız LDAP sunucusu (Windows)" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/lib/l10n/sv.php b/lib/l10n/sv.php index d8d47cc9666..70ca0bed383 100644 --- a/lib/l10n/sv.php +++ b/lib/l10n/sv.php @@ -67,7 +67,9 @@ $TRANSLATIONS = array( "_%n month ago_::_%n months ago_" => array("%n månad sedan","%n månader sedan"), "last year" => "förra året", "years ago" => "år sedan", +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-\"" => "Endast följande tecken är tillåtna i ett användarnamn: \"az\", \"AZ\", \"0-9\", och \"_ @ -.\"", "A valid username must be provided" => "Ett giltigt användarnamn måste anges", -"A valid password must be provided" => "Ett giltigt lösenord måste anges" +"A valid password must be provided" => "Ett giltigt lösenord måste anges", +"The username is already being used" => "Användarnamnet används redan" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/de.php b/settings/l10n/de.php index 5af482b51a5..13395d20523 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -16,6 +16,9 @@ $TRANSLATIONS = array( "Unable to change full name" => "Der vollständige Name konnte nicht geändert werden", "Group already exists" => "Gruppe existiert bereits", "Unable to add group" => "Gruppe konnte nicht angelegt werden", +"Files decrypted successfully" => "Dateien erfolgreich entschlüsselt", +"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Dateien konnten nicht entschlüsselt werden, prüfe bitte Dein owncloud.log oder frage Deinen Administrator", +"Couldn't decrypt your files, check your password and try again" => "Dateien konnten nicht entschlüsselt werden, bitte prüfe Dein Passwort und versuche es erneut.", "Email saved" => "E-Mail Adresse gespeichert", "Invalid email" => "Ungültige E-Mail Adresse", "Unable to delete group" => "Gruppe konnte nicht gelöscht werden", diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index f79a8f174b2..2cfffdd374d 100644 --- a/settings/l10n/de_DE.php +++ b/settings/l10n/de_DE.php @@ -16,6 +16,9 @@ $TRANSLATIONS = array( "Unable to change full name" => "Der vollständige Name konnte nicht geändert werden", "Group already exists" => "Die Gruppe existiert bereits", "Unable to add group" => "Die Gruppe konnte nicht angelegt werden", +"Files decrypted successfully" => "Dateien erfolgreich entschlüsselt", +"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Dateien konnten nicht entschlüsselt werden, prüfen Sie bitte Ihre owncloud.log oder fragen Sie Ihren Administrator", +"Couldn't decrypt your files, check your password and try again" => "Dateien konnten nicht entschlüsselt werden, bitte prüfen Sie Ihr Passwort und versuchen Sie es erneut.", "Email saved" => "E-Mail-Adresse gespeichert", "Invalid email" => "Ungültige E-Mail-Adresse", "Unable to delete group" => "Die Gruppe konnte nicht gelöscht werden", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index 5139b36e1b4..313808cdc78 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -16,6 +16,9 @@ $TRANSLATIONS = array( "Unable to change full name" => "No se puede cambiar el nombre completo", "Group already exists" => "El grupo ya existe", "Unable to add group" => "No se pudo añadir el grupo", +"Files decrypted successfully" => "Los archivos fueron descifrados", +"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "No se pudo descifrar sus archivos. Revise el owncloud.log o consulte con su administrador", +"Couldn't decrypt your files, check your password and try again" => "No se pudo descifrar sus archivos. Revise su contraseña e inténtelo de nuevo", "Email saved" => "Correo electrónico guardado", "Invalid email" => "Correo electrónico no válido", "Unable to delete group" => "No se pudo eliminar el grupo", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index 7bef4092a43..bbceeb1983f 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -16,6 +16,9 @@ $TRANSLATIONS = array( "Unable to change full name" => "Koko nimen muuttaminen epäonnistui", "Group already exists" => "Ryhmä on jo olemassa", "Unable to add group" => "Ryhmän lisäys epäonnistui", +"Files decrypted successfully" => "Tiedostojen salaus purettiin onnistuneesti", +"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Tiedostojen salauksen purkaminen epäonnistui. Tarkista owncloud.log-tiedosto tai ota yhteys ylläpitäjään", +"Couldn't decrypt your files, check your password and try again" => "Tiedostojen salauksen purkaminen epäonnistui. Tarkista salasanasi ja yritä uudelleen", "Email saved" => "Sähköposti tallennettu", "Invalid email" => "Virheellinen sähköposti", "Unable to delete group" => "Ryhmän poisto epäonnistui", diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index 5c48c7fd75f..9475f6017fa 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -16,6 +16,9 @@ $TRANSLATIONS = array( "Unable to change full name" => "Impossible de changer le nom complet", "Group already exists" => "Ce groupe existe déjà", "Unable to add group" => "Impossible d'ajouter le groupe", +"Files decrypted successfully" => "Fichiers décryptés avec succès", +"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Impossible de décrypter vos fichiers, veuillez vérifier votre owncloud.log ou demander à votre administrateur", +"Couldn't decrypt your files, check your password and try again" => "Impossible de décrypter vos fichiers, vérifiez votre mot de passe et essayez à nouveau", "Email saved" => "E-mail sauvegardé", "Invalid email" => "E-mail invalide", "Unable to delete group" => "Impossible de supprimer le groupe", diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php index 2d23efd96a3..e0abc8e95b8 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -16,6 +16,9 @@ $TRANSLATIONS = array( "Unable to change full name" => "Non é posíbel cambiar o nome completo", "Group already exists" => "O grupo xa existe", "Unable to add group" => "Non é posíbel engadir o grupo", +"Files decrypted successfully" => "Ficheiros descifrados satisfactoriamente", +"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Non foi posíbel descifrar os seus ficheiros. revise o ficheiro de rexistro owncloud.log, ou pregúntelle ao administrador", +"Couldn't decrypt your files, check your password and try again" => "Non foi posíbel descifrar os seus ficheiros. revise o seu contrasinal e ténteo de novo", "Email saved" => "Correo gardado", "Invalid email" => "Correo incorrecto", "Unable to delete group" => "Non é posíbel eliminar o grupo.", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index 12fa6d097af..dd32d4029de 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -16,6 +16,9 @@ $TRANSLATIONS = array( "Unable to change full name" => "Impossibile cambiare il nome completo", "Group already exists" => "Il gruppo esiste già", "Unable to add group" => "Impossibile aggiungere il gruppo", +"Files decrypted successfully" => "File decifrato correttamente", +"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Impossibile decifrare i tuoi file, controlla il file owncloud.log o chiedi al tuo amministratore", +"Couldn't decrypt your files, check your password and try again" => "Impossibile decifrare i tuoi file, controlla la password e prova ancora", "Email saved" => "Email salvata", "Invalid email" => "Email non valida", "Unable to delete group" => "Impossibile eliminare il gruppo", diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index 640e1df9585..15df48bb311 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -16,6 +16,9 @@ $TRANSLATIONS = array( "Unable to change full name" => "Nie można zmienić pełnej nazwy", "Group already exists" => "Grupa już istnieje", "Unable to add group" => "Nie można dodać grupy", +"Files decrypted successfully" => "Pliki zostały poprawnie zdeszyfrowane", +"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Nie można zdeszyfrować Twoich plików, proszę sprawdzić owncloud.log lub zapytać administratora", +"Couldn't decrypt your files, check your password and try again" => "Nie można zdeszyfrować Twoich plików, sprawdź swoje hasło i spróbuj ponownie", "Email saved" => "E-mail zapisany", "Invalid email" => "Nieprawidłowy e-mail", "Unable to delete group" => "Nie można usunąć grupy", diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php index dad6773d6af..bf15e99d426 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -16,6 +16,9 @@ $TRANSLATIONS = array( "Unable to change full name" => "Não é possível alterar o nome completo", "Group already exists" => "Grupo já existe", "Unable to add group" => "Não foi possível adicionar grupo", +"Files decrypted successfully" => "Arquivos descriptografados com sucesso", +"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Não foi possível descriptografar os arquivos, verifique a sua owncloud.log ou pergunte ao seu administrador", +"Couldn't decrypt your files, check your password and try again" => "Não foi possível descriptografar os arquivos, verifique sua senha e tente novamente", "Email saved" => "E-mail salvo", "Invalid email" => "E-mail inválido", "Unable to delete group" => "Não foi possível remover grupo", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index 48f4428303c..b5c87945580 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -16,6 +16,9 @@ $TRANSLATIONS = array( "Unable to change full name" => "Kunde inte ändra hela namnet", "Group already exists" => "Gruppen finns redan", "Unable to add group" => "Kan inte lägga till grupp", +"Files decrypted successfully" => "Filer dekrypteras utan fel", +"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Det gick inte att dekryptera dina filer, kontrollera din owncloud.log eller fråga administratören", +"Couldn't decrypt your files, check your password and try again" => "Det gick inte att dekryptera filerna, kontrollera ditt lösenord och försök igen", "Email saved" => "E-post sparad", "Invalid email" => "Ogiltig e-post", "Unable to delete group" => "Kan inte radera grupp", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index 728e573be2f..fa163ed137d 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -16,6 +16,9 @@ $TRANSLATIONS = array( "Unable to change full name" => "Tam adınız değiştirilirken hata", "Group already exists" => "Grup zaten mevcut", "Unable to add group" => "Gruba eklenemiyor", +"Files decrypted successfully" => "Dosya şifresi başarıyla çözüldü", +"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Dosyalarınızın şifresi kaldırılamadı, lütfen owncloud.log dosyasına bakın veya yöneticinizle iletişime geçin.", +"Couldn't decrypt your files, check your password and try again" => "Dosyalarınızın şifresi kaldırılamadı, parolanızı denetleyip yeniden deneyin.", "Email saved" => "E-posta kaydedildi", "Invalid email" => "Geçersiz e-posta", "Unable to delete group" => "Grup silinemiyor", -- GitLab From 2454759af785e89b1852e381ad9249db98dd304b Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Sun, 13 Apr 2014 11:01:50 +0200 Subject: [PATCH 286/296] Check whether the user has permissions to add personal storage backends --- apps/files_external/lib/config.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index 613f0b2609c..71f6ae78878 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -206,6 +206,12 @@ class OC_Mount_Config { */ public static function getPersonalBackends() { + // Check whether the user has permissions to add personal storage backends + // return an empty array if this is not the case + if(OCP\Config::getAppValue('files_external', 'allow_user_mounting', 'yes') !== 'yes') { + return array(); + } + $backEnds = self::getBackends(); // Remove local storage and other disabled storages -- GitLab From eecc40069822cc0be03c5521c67d22b08887c847 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Sun, 13 Apr 2014 16:18:05 +0200 Subject: [PATCH 287/296] p() and print_unescaped() also take arrays as parameter This fixes some scrutinizer issues. --- lib/private/template/functions.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/lib/private/template/functions.php b/lib/private/template/functions.php index a72d41f72da..3c42d441efa 100644 --- a/lib/private/template/functions.php +++ b/lib/private/template/functions.php @@ -7,16 +7,17 @@ */ /** - * Prints an XSS escaped string - * @param string $string the string which will be escaped and printed + * Prints a sanitized string + * @param string|array $string the string which will be escaped and printed */ function p($string) { print(OC_Util::sanitizeHTML($string)); } /** - * Prints an unescaped string - * @param string $string the string which will be printed as it is + * Prints an unsanitized string - usage of this function may result into XSS. + * Consider using p() instead. + * @param string|array $string the string which will be printed as it is */ function print_unescaped($string) { print($string); -- GitLab From 440c040ffca1bd1a646d6664f6db15ed49e8dc4d Mon Sep 17 00:00:00 2001 From: Volkan Gezer Date: Sun, 13 Apr 2014 22:10:38 +0200 Subject: [PATCH 288/296] The latest developer manual link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 618aa8d2009..1a832092776 100644 --- a/README.md +++ b/README.md @@ -25,4 +25,4 @@ Please submit translations via Transifex: https://www.transifex.com/projects/p/owncloud/ For more detailed information about translations: -http://doc.owncloud.org/server/6.0/developer_manual/core/translation.html +http://doc.owncloud.org/server/7.0/developer_manual/core/translation.html -- GitLab From d93b5f9927a063ef35305e3da833302a2b6ab235 Mon Sep 17 00:00:00 2001 From: Volkan Gezer Date: Sun, 13 Apr 2014 23:24:00 +0200 Subject: [PATCH 289/296] The latest developer manual link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1a832092776..0b13f11e768 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Git master: [![Build Status](https://ci.owncloud.org/job/server-master-linux/bad Quality: [![Scrutinizer Quality Score](https://scrutinizer-ci.com/g/owncloud/core/badges/quality-score.png?s=ce2f5ded03d4ac628e9ee5c767243fa7412e644f)](https://scrutinizer-ci.com/g/owncloud/core/) ### Installation instructions -http://doc.owncloud.org/server/6.0/developer_manual/app/index.html +http://doc.owncloud.org/server/7.0/developer_manual/app/index.html ### Contribution Guidelines http://owncloud.org/contribute/ -- GitLab From 2a2aabbdafc11fac687cb69d4804e6d03df882c2 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Mon, 14 Apr 2014 01:55:09 -0400 Subject: [PATCH 290/296] [tx-robot] updated from transifex --- apps/files_encryption/l10n/km.php | 11 +++ apps/files_external/l10n/km.php | 1 + apps/user_ldap/l10n/nl.php | 1 + l10n/cs_CZ/core.po | 100 ++++++++++++++-------------- l10n/cs_CZ/files_encryption.po | 46 ++++++------- l10n/cs_CZ/lib.po | 26 ++++---- l10n/cs_CZ/settings.po | 12 ++-- l10n/cs_CZ/user_ldap.po | 6 +- l10n/de/lib.po | 24 +++---- l10n/de_DE/lib.po | 24 +++---- l10n/km/files_encryption.po | 63 +++++++++--------- l10n/km/files_external.po | 16 ++--- l10n/km/settings.po | 10 +-- l10n/nl/settings.po | 12 ++-- l10n/nl/user_ldap.po | 8 +-- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 12 ++-- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 22 +++--- l10n/templates/private.pot | 22 +++--- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- settings/l10n/cs_CZ.php | 6 +- settings/l10n/km.php | 2 + settings/l10n/nl.php | 3 + 30 files changed, 232 insertions(+), 213 deletions(-) create mode 100644 apps/files_encryption/l10n/km.php diff --git a/apps/files_encryption/l10n/km.php b/apps/files_encryption/l10n/km.php new file mode 100644 index 00000000000..0defe6c5388 --- /dev/null +++ b/apps/files_encryption/l10n/km.php @@ -0,0 +1,11 @@ + "បាន​ប្ដូរ​ពាក្យ​សម្ងាត់​ដោយ​ជោគជ័យ។", +"Could not change the password. Maybe the old password was not correct." => "មិន​អាច​ប្ដូរ​ពាក្យ​សម្ងាត់​បាន​ទេ។ ប្រហែល​ពាក្យ​សម្ងាត់​ចាស់​មិន​ត្រឹម​ត្រូវ។", +"personal settings" => "ការ​កំណត់​ផ្ទាល់​ខ្លួន", +"Encryption" => "កូដនីយកម្ម", +"Enabled" => "បាន​បើក", +"Disabled" => "បាន​បិទ", +"Change Password" => "ប្ដូរ​ពាក្យ​សម្ងាត់" +); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_external/l10n/km.php b/apps/files_external/l10n/km.php index 4586f866a74..75879f2300e 100644 --- a/apps/files_external/l10n/km.php +++ b/apps/files_external/l10n/km.php @@ -1,6 +1,7 @@ "ឈ្មោះ​ថត", +"Options" => "ជម្រើស", "Groups" => "ក្រុ", "Users" => "អ្នកប្រើ", "Delete" => "លុប" diff --git a/apps/user_ldap/l10n/nl.php b/apps/user_ldap/l10n/nl.php index 5698f8a6f1d..196e5a52d12 100644 --- a/apps/user_ldap/l10n/nl.php +++ b/apps/user_ldap/l10n/nl.php @@ -70,6 +70,7 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Backup (Replica) Poort", "Disable Main Server" => "Deactiveren hoofdserver", "Only connect to the replica server." => "Maak alleen een verbinding met de replica server.", +"Case insensitive LDAP server (Windows)" => "Niet-hoofdlettergevoelige LDAP server (Windows)", "Turn off SSL certificate validation." => "Schakel SSL certificaat validatie uit.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Niet aanbevolen, gebruik alleen om te testen! Als de connectie alleen werkt met deze optie, importeer dan het SSL-certificaat van de LDAP-server naar uw %s server.", "Cache Time-To-Live" => "Cache time-to-live", diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index b57e1632d7e..8f7ae14b9d5 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 06:10+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-14 01:54-0400\n" +"PO-Revision-Date: 2014-04-14 04:55+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -150,132 +150,132 @@ msgstr "Nastavení" msgid "Saving..." msgstr "Ukládám..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "před pár vteřinami" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "před %n minutou" msgstr[1] "před %n minutami" msgstr[2] "před %n minutami" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "před %n hodinou" msgstr[1] "před %n hodinami" msgstr[2] "před %n hodinami" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "dnes" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "včera" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "před %n dnem" msgstr[1] "před %n dny" msgstr[2] "před %n dny" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "minulý měsíc" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "před %n měsícem" msgstr[1] "před %n měsíci" msgstr[2] "před %n měsíci" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "před měsíci" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "minulý rok" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "před lety" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Vybrat" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "Chyba při nahrávání šablony výběru souborů: {error}" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Ano" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "Ne" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "Ok" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "Chyba při nahrávání šablony zprávy: {error}" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "{count} souborový konflikt" msgstr[1] "{count} souborové konflikty" msgstr[2] "{count} souborových konfliktů" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "Jeden konflikt souboru" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "Nové soubory" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "Které soubory chcete ponechat?" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Pokud zvolíte obě verze, zkopírovaný soubor bude mít název doplněný o číslo." -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Zrušit" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "Pokračovat" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "(vybráno vše)" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:457 msgid "({count} selected)" msgstr "(vybráno {count})" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:465 msgid "Error loading file exists template" msgstr "Chyba při nahrávání šablony existence souboru" @@ -307,12 +307,12 @@ msgstr "Sdílené" msgid "Share" msgstr "Sdílet" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Chyba" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Chyba při sdílení" @@ -376,71 +376,71 @@ msgstr "Sdílet e-mailem:" msgid "No people found" msgstr "Žádní lidé nenalezeni" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "skupina" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "Sdílení již sdílené položky není povoleno" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "Sdíleno v {item} s {user}" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Zrušit sdílení" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "upozornit e-mailem" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "lze upravovat" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "řízení přístupu" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "vytvořit" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "aktualizovat" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "smazat" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "sdílet" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Chráněno heslem" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "Chyba při odstraňování data vypršení platnosti" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "Chyba při nastavení data vypršení platnosti" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "Odesílám ..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "E-mail odeslán" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "Varování" diff --git a/l10n/cs_CZ/files_encryption.po b/l10n/cs_CZ/files_encryption.po index 27f50770daf..79a16d3cee8 100644 --- a/l10n/cs_CZ/files_encryption.po +++ b/l10n/cs_CZ/files_encryption.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-23 22:41+0000\n" +"POT-Creation-Date: 2014-04-14 01:54-0400\n" +"PO-Revision-Date: 2014-04-14 04:55+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" @@ -117,91 +117,91 @@ msgstr "Běžte přímo do vašeho" msgid "personal settings" msgstr "osobní nastavení" -#: templates/settings-admin.php:4 templates/settings-personal.php:3 +#: templates/settings-admin.php:2 templates/settings-personal.php:2 msgid "Encryption" msgstr "Šifrování" -#: templates/settings-admin.php:7 +#: templates/settings-admin.php:5 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Povolit klíč pro obnovu (umožňuje obnovu uživatelských souborů v případě ztráty hesla)" -#: templates/settings-admin.php:11 +#: templates/settings-admin.php:9 msgid "Recovery key password" msgstr "Heslo klíče pro obnovu" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:12 msgid "Repeat Recovery key password" msgstr "Zopakujte heslo klíče pro obnovu" -#: templates/settings-admin.php:21 templates/settings-personal.php:51 +#: templates/settings-admin.php:19 templates/settings-personal.php:50 msgid "Enabled" msgstr "Povoleno" -#: templates/settings-admin.php:29 templates/settings-personal.php:59 +#: templates/settings-admin.php:27 templates/settings-personal.php:58 msgid "Disabled" msgstr "Zakázáno" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:32 msgid "Change recovery key password:" msgstr "Změna hesla klíče pro obnovu:" -#: templates/settings-admin.php:40 +#: templates/settings-admin.php:38 msgid "Old Recovery key password" msgstr "Původní heslo klíče pro obnovu" -#: templates/settings-admin.php:47 +#: templates/settings-admin.php:45 msgid "New Recovery key password" msgstr "Nové heslo klíče pro obnovu" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:51 msgid "Repeat New Recovery key password" msgstr "Zopakujte nové heslo klíče pro obnovu" -#: templates/settings-admin.php:58 +#: templates/settings-admin.php:56 msgid "Change Password" msgstr "Změnit heslo" -#: templates/settings-personal.php:9 +#: templates/settings-personal.php:8 msgid "Your private key password no longer match your log-in password:" msgstr "Heslo vašeho soukromého klíče se již neshoduje s vaším přihlašovacím heslem:" -#: templates/settings-personal.php:12 +#: templates/settings-personal.php:11 msgid "Set your old private key password to your current log-in password." msgstr "Změňte heslo vaše soukromého klíče na stejné jako vaše přihlašovací heslo." -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:13 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "Pokud si nepamatujete vaše původní heslo, můžete požádat správce o obnovu vašich souborů." -#: templates/settings-personal.php:22 +#: templates/settings-personal.php:21 msgid "Old log-in password" msgstr "Původní přihlašovací heslo" -#: templates/settings-personal.php:28 +#: templates/settings-personal.php:27 msgid "Current log-in password" msgstr "Aktuální přihlašovací heslo" -#: templates/settings-personal.php:33 +#: templates/settings-personal.php:32 msgid "Update Private Key Password" msgstr "Změnit heslo soukromého klíče" -#: templates/settings-personal.php:42 +#: templates/settings-personal.php:41 msgid "Enable password recovery:" msgstr "Povolit obnovu hesla:" -#: templates/settings-personal.php:44 +#: templates/settings-personal.php:43 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "Zapnutí této volby vám umožní znovu získat přístup k vašim zašifrovaným souborům pokud ztratíte heslo" -#: templates/settings-personal.php:60 +#: templates/settings-personal.php:59 msgid "File recovery settings updated" msgstr "Možnosti záchrany souborů aktualizovány" -#: templates/settings-personal.php:61 +#: templates/settings-personal.php:60 msgid "Could not update file recovery" msgstr "Nelze nastavit záchranu souborů" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index 92e8e85cb40..18418dadda2 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-14 01:54-0400\n" +"PO-Revision-Date: 2014-04-14 04:55+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -294,55 +294,55 @@ msgstr "%s s vámi sdílí »%s«" msgid "Could not find category \"%s\"" msgstr "Nelze nalézt kategorii \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "před pár sekundami" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "před %n minutou" msgstr[1] "před %n minutami" msgstr[2] "před %n minutami" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "před %n hodinou" msgstr[1] "před %n hodinami" msgstr[2] "před %n hodinami" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "dnes" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "včera" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "před %n dnem" msgstr[1] "před %n dny" msgstr[2] "před %n dny" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "minulý měsíc" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "před %n měsícem" msgstr[1] "před %n měsíci" msgstr[2] "před %n měsíci" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "minulý rok" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "před lety" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index bec55e22dce..9d72db957be 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-14 01:54-0400\n" +"PO-Revision-Date: 2014-04-14 05:10+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -450,14 +450,14 @@ msgstr "Cron" #: templates/admin.php:167 #, php-format msgid "Last cron was executed at %s." -msgstr "Poslední cron byl spuštěn v %s." +msgstr "Poslední cron byl spuštěn v %s" #: templates/admin.php:170 #, php-format msgid "" "Last cron was executed at %s. This is more than an hour ago, something seems" " wrong." -msgstr "Poslední cron byl spuštěn v %s. To se stalo před více než hodinu. Vypadá to, že není něco v pořádku." +msgstr "Poslední cron byl spuštěn v %s. To je více než před hodinou. Vypadá to, že není něco v pořádku." #: templates/admin.php:174 msgid "Cron was not executed yet!" @@ -725,7 +725,7 @@ msgstr "Vaše e-mailová adresa" msgid "" "Fill in an email address to enable password recovery and receive " "notifications" -msgstr "Zadejte e-mailovou adresu pro umožnění obnovy zapomenutého hesla a pro přijímání upozornění." +msgstr "Zadejte e-mailovou adresu pro umožnění obnovy zapomenutého hesla a pro přijímání upozornění" #: templates/personal.php:89 msgid "Profile picture" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 43b906dd51f..47968c19eec 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-14 01:54-0400\n" +"PO-Revision-Date: 2014-04-14 05:06+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index 1c19e3ca284..6325eb843cc 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 08:50+0000\n" +"POT-Creation-Date: 2014-04-14 01:54-0400\n" +"PO-Revision-Date: 2014-04-13 20:56+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" @@ -295,51 +295,51 @@ msgstr "%s teilte »%s« mit Dir" msgid "Could not find category \"%s\"" msgstr "Die Kategorie \"%s\" konnte nicht gefunden werden." -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "Gerade eben" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Vor %n Minute" msgstr[1] "Vor %n Minuten" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Vor %n Stunde" msgstr[1] "Vor %n Stunden" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "Heute" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "Gestern" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "Vor %n Tag" msgstr[1] "Vor %n Tagen" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "Letzten Monat" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Vor %n Monat" msgstr[1] "Vor %n Monaten" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "Letztes Jahr" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "Vor Jahren" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index 94fe0bdbef2..a33e633646b 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 08:50+0000\n" +"POT-Creation-Date: 2014-04-14 01:54-0400\n" +"PO-Revision-Date: 2014-04-13 20:58+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" @@ -295,51 +295,51 @@ msgstr "%s hat »%s« mit Ihnen geteilt" msgid "Could not find category \"%s\"" msgstr "Die Kategorie \"%s\" konnte nicht gefunden werden." -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "Gerade eben" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Vor %n Minute" msgstr[1] "Vor %n Minuten" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Vor %n Stunde" msgstr[1] "Vor %n Stunden" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "Heute" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "Gestern" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "Vor %n Tag" msgstr[1] "Vor %n Tagen" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "Letzten Monat" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Vor %n Monat" msgstr[1] "Vor %n Monaten" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "Letztes Jahr" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "Vor Jahren" diff --git a/l10n/km/files_encryption.po b/l10n/km/files_encryption.po index 15f1b5bf059..0a25d900949 100644 --- a/l10n/km/files_encryption.po +++ b/l10n/km/files_encryption.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# សុវិចិត្រ Sovichet ទេព Tep, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-14 01:54-0400\n" +"PO-Revision-Date: 2014-04-13 09:20+0000\n" +"Last-Translator: សុវិចិត្រ Sovichet ទេព Tep\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,11 +38,11 @@ msgstr "" #: ajax/changeRecoveryPassword.php:49 msgid "Password successfully changed." -msgstr "" +msgstr "បាន​ប្ដូរ​ពាក្យ​សម្ងាត់​ដោយ​ជោគជ័យ។" #: ajax/changeRecoveryPassword.php:51 msgid "Could not change the password. Maybe the old password was not correct." -msgstr "" +msgstr "មិន​អាច​ប្ដូរ​ពាក្យ​សម្ងាត់​បាន​ទេ។ ប្រហែល​ពាក្យ​សម្ងាត់​ចាស់​មិន​ត្រឹម​ត្រូវ។" #: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." @@ -109,93 +110,93 @@ msgstr "" #: templates/invalid_private_key.php:8 msgid "personal settings" -msgstr "" +msgstr "ការ​កំណត់​ផ្ទាល់​ខ្លួន" -#: templates/settings-admin.php:4 templates/settings-personal.php:3 +#: templates/settings-admin.php:2 templates/settings-personal.php:2 msgid "Encryption" -msgstr "" +msgstr "កូដនីយកម្ម" -#: templates/settings-admin.php:7 +#: templates/settings-admin.php:5 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:11 +#: templates/settings-admin.php:9 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:12 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:51 +#: templates/settings-admin.php:19 templates/settings-personal.php:50 msgid "Enabled" -msgstr "" +msgstr "បាន​បើក" -#: templates/settings-admin.php:29 templates/settings-personal.php:59 +#: templates/settings-admin.php:27 templates/settings-personal.php:58 msgid "Disabled" -msgstr "" +msgstr "បាន​បិទ" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:32 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:40 +#: templates/settings-admin.php:38 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:47 +#: templates/settings-admin.php:45 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:51 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:58 +#: templates/settings-admin.php:56 msgid "Change Password" -msgstr "" +msgstr "ប្ដូរ​ពាក្យ​សម្ងាត់" -#: templates/settings-personal.php:9 +#: templates/settings-personal.php:8 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:12 +#: templates/settings-personal.php:11 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:13 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:22 +#: templates/settings-personal.php:21 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:28 +#: templates/settings-personal.php:27 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:33 +#: templates/settings-personal.php:32 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:42 +#: templates/settings-personal.php:41 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:44 +#: templates/settings-personal.php:43 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:60 +#: templates/settings-personal.php:59 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:61 +#: templates/settings-personal.php:60 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/km/files_external.po b/l10n/km/files_external.po index 3b8216e3de5..06a546e4e79 100644 --- a/l10n/km/files_external.po +++ b/l10n/km/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-14 01:54-0400\n" +"PO-Revision-Date: 2014-04-13 09:30+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -41,29 +41,29 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:592 +#: lib/config.php:598 msgid "Note: " msgstr "" -#: lib/config.php:602 +#: lib/config.php:608 msgid " and " msgstr "" -#: lib/config.php:624 +#: lib/config.php:630 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:626 +#: lib/config.php:632 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:628 +#: lib/config.php:634 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -88,7 +88,7 @@ msgstr "" #: templates/settings.php:11 msgid "Options" -msgstr "" +msgstr "ជម្រើស" #: templates/settings.php:12 msgid "Available for" diff --git a/l10n/km/settings.po b/l10n/km/settings.po index 6df2774fdeb..ac4641686bc 100644 --- a/l10n/km/settings.po +++ b/l10n/km/settings.po @@ -4,13 +4,13 @@ # # Translators: # Pongsametrey SOK , 2014 -# សុវិចិត្រ Sovichet ទេព Tep , 2014 +# សុវិចិត្រ Sovichet ទេព Tep, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-14 01:54-0400\n" +"PO-Revision-Date: 2014-04-13 09:30+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -55,7 +55,7 @@ msgstr "" #: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 msgid "Encryption" -msgstr "" +msgstr "កូដនីយកម្ម" #: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" @@ -791,7 +791,7 @@ msgstr "ចូល" #: templates/users.php:28 msgid "Create" -msgstr "" +msgstr "បង្កើត" #: templates/users.php:34 msgid "Admin Recovery Password" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index c766add1cc7..a40738991f8 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-14 01:54-0400\n" +"PO-Revision-Date: 2014-04-13 12:00+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -90,17 +90,17 @@ msgstr "Niet in staat om groep toe te voegen" #: ajax/decryptall.php:31 msgid "Files decrypted successfully" -msgstr "" +msgstr "Bestanden succesvol ontsleuteld" #: ajax/decryptall.php:33 msgid "" "Couldn't decrypt your files, please check your owncloud.log or ask your " "administrator" -msgstr "" +msgstr "Kon uw bestanden niet ontsleutelem. Controleer uw owncloud logs of vraag het uw beheerder" #: ajax/decryptall.php:36 msgid "Couldn't decrypt your files, check your password and try again" -msgstr "" +msgstr "Kon uw bestanden niet ontsleutelen. Controleer uw wachtwoord en probeer het opnieuw" #: ajax/lostpassword.php:12 msgid "Email saved" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index 37767238162..caaa23c3ae7 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-14 01:54-0400\n" +"PO-Revision-Date: 2014-04-13 11:50+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -339,7 +339,7 @@ msgstr "Maak alleen een verbinding met de replica server." #: templates/settings.php:26 msgid "Case insensitive LDAP server (Windows)" -msgstr "" +msgstr "Niet-hoofdlettergevoelige LDAP server (Windows)" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 41999c5c635..bf059e31682 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: 2014-04-13 01:54-0400\n" +"POT-Creation-Date: 2014-04-14 01:54-0400\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.pot b/l10n/templates/files.pot index ad5a0f5cf2d..e834586bf09 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: 2014-04-13 01:54-0400\n" +"POT-Creation-Date: 2014-04-14 01:54-0400\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 fbc14254acf..fccd89208c0 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: 2014-04-13 01:54-0400\n" +"POT-Creation-Date: 2014-04-14 01:54-0400\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 3310a94ddcc..3ba52385852 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: 2014-04-13 01:54-0400\n" +"POT-Creation-Date: 2014-04-14 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -41,29 +41,29 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:592 +#: lib/config.php:598 msgid "Note: " msgstr "" -#: lib/config.php:602 +#: lib/config.php:608 msgid " and " msgstr "" -#: lib/config.php:624 +#: lib/config.php:630 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:626 +#: lib/config.php:632 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of " "%s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:628 +#: lib/config.php:634 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please " diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index d13ba28969c..93ce6bbac4c 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: 2014-04-13 01:54-0400\n" +"POT-Creation-Date: 2014-04-14 01:54-0400\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 4d206960525..c5ad152aa8d 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: 2014-04-13 01:54-0400\n" +"POT-Creation-Date: 2014-04-14 01:54-0400\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 5fb1e4f151a..2a195ae047c 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: 2014-04-13 01:54-0400\n" +"POT-Creation-Date: 2014-04-14 01:54-0400\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 bb59a77e49f..ec5fc6f7d55 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: 2014-04-13 01:54-0400\n" +"POT-Creation-Date: 2014-04-14 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -290,51 +290,51 @@ msgstr "" msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index 81964303b21..8e753ca798d 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: 2014-04-13 01:54-0400\n" +"POT-Creation-Date: 2014-04-14 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -282,51 +282,51 @@ msgstr "" msgid "Could not find category \"%s\"" msgstr "" -#: template/functions.php:133 +#: template/functions.php:134 msgid "seconds ago" msgstr "" -#: template/functions.php:134 +#: template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:135 +#: template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:136 +#: template/functions.php:137 msgid "today" msgstr "" -#: template/functions.php:137 +#: template/functions.php:138 msgid "yesterday" msgstr "" -#: template/functions.php:139 +#: template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:141 +#: template/functions.php:142 msgid "last month" msgstr "" -#: template/functions.php:142 +#: template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:144 +#: template/functions.php:145 msgid "last year" msgstr "" -#: template/functions.php:145 +#: template/functions.php:146 msgid "years ago" msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index d89379830c4..213afd533e2 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: 2014-04-13 01:54-0400\n" +"POT-Creation-Date: 2014-04-14 01:54-0400\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 489bfbbbb8f..bd416c1968c 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: 2014-04-13 01:54-0400\n" +"POT-Creation-Date: 2014-04-14 01:54-0400\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 62ca0e1c873..2b6bc836ea8 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: 2014-04-13 01:54-0400\n" +"POT-Creation-Date: 2014-04-14 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index 960938b1c68..1f3c111a17d 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -93,8 +93,8 @@ $TRANSLATIONS = array( "Internet connection not working" => "Připojení k internetu nefunguje", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Server nemá funkční připojení k internetu. Některé moduly jako např. externí úložiště, oznámení o dostupných aktualizacích nebo instalace aplikací třetích stran nebudou fungovat. Přístup k souborům z jiných míst a odesílání oznamovacích e-mailů také nemusí fungovat. Pokud si přejete využívat všech vlastností ownCloud, doporučujeme povolit připojení k internetu tomuto serveru.", "Cron" => "Cron", -"Last cron was executed at %s." => "Poslední cron byl spuštěn v %s.", -"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Poslední cron byl spuštěn v %s. To se stalo před více než hodinu. Vypadá to, že není něco v pořádku.", +"Last cron was executed at %s." => "Poslední cron byl spuštěn v %s", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Poslední cron byl spuštěn v %s. To je více než před hodinou. Vypadá to, že není něco v pořádku.", "Cron was not executed yet!" => "Cron ještě nebyl spuštěn!", "Execute one task with each page loaded" => "Spustit jednu úlohu s každým načtením stránky", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php je registrován u služby webcron, aby volal cron.php jednou za 15 minut přes http.", @@ -157,7 +157,7 @@ $TRANSLATIONS = array( "Full Name" => "Celé jméno", "Email" => "E-mail", "Your email address" => "Vaše e-mailová adresa", -"Fill in an email address to enable password recovery and receive notifications" => "Zadejte e-mailovou adresu pro umožnění obnovy zapomenutého hesla a pro přijímání upozornění.", +"Fill in an email address to enable password recovery and receive notifications" => "Zadejte e-mailovou adresu pro umožnění obnovy zapomenutého hesla a pro přijímání upozornění", "Profile picture" => "Profilový obrázek", "Upload new" => "Nahrát nový", "Select new from Files" => "Vyberte nový ze souborů", diff --git a/settings/l10n/km.php b/settings/l10n/km.php index 37bebc1c6fa..679c7cd3901 100644 --- a/settings/l10n/km.php +++ b/settings/l10n/km.php @@ -1,6 +1,7 @@ "បាន​ផ្ញើ​អ៊ីមែល", +"Encryption" => "កូដនីយកម្ម", "Unable to load list from App Store" => "មិនអាចផ្ទុកបញ្ជីកម្មវិធីពី App Store", "Authentication error" => "កំហុស​ការ​ផ្ទៀង​ផ្ទាត់​ភាព​ត្រឹម​ត្រូវ", "Group already exists" => "មាន​ក្រុម​នេះ​រួច​ហើយ", @@ -76,6 +77,7 @@ $TRANSLATIONS = array( "Help translate" => "ជួយ​បក​ប្រែ", "WebDAV" => "WebDAV", "Login Name" => "ចូល", +"Create" => "បង្កើត", "Other" => "ផ្សេងៗ", "Username" => "ឈ្មោះ​អ្នកប្រើ" ); diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index c497eb12a68..1f8342df6c5 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -16,6 +16,9 @@ $TRANSLATIONS = array( "Unable to change full name" => "Kan de volledige naam niet wijzigen", "Group already exists" => "Groep bestaat al", "Unable to add group" => "Niet in staat om groep toe te voegen", +"Files decrypted successfully" => "Bestanden succesvol ontsleuteld", +"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Kon uw bestanden niet ontsleutelem. Controleer uw owncloud logs of vraag het uw beheerder", +"Couldn't decrypt your files, check your password and try again" => "Kon uw bestanden niet ontsleutelen. Controleer uw wachtwoord en probeer het opnieuw", "Email saved" => "E-mail bewaard", "Invalid email" => "Ongeldige e-mail", "Unable to delete group" => "Niet in staat om groep te verwijderen", -- GitLab From 3bc3d4c9f346b378853ccf36f49e2f3816ea721d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20M=C3=BCller?= Date: Mon, 14 Apr 2014 18:26:45 +0200 Subject: [PATCH 291/296] close-button for share_dropdown --- core/js/share.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/core/js/share.js b/core/js/share.js index 5cabc614563..8210dd5d45f 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -211,6 +211,7 @@ OC.Share={ } }); + html += '