From 89e0763d3d511d2da878db43c89300c51850b0f3 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 28 Feb 2014 13:37:41 +0100 Subject: [PATCH 001/137] 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 ad979a9287..b98ccc9d58 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 ab67c8d302..6c2103179a 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 232a29939c..8af2fce773 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 1c025e7824..bba52b4c4b 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. From 35a8dfb2fa7970098e6677f7b93b7d782d5df7f0 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 28 Feb 2014 13:53:41 +0100 Subject: [PATCH 002/137] 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 cdaaebb87e..cfb84309c6 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 a311f10a00..961270c334 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 fc6745b450..1cb3da7098 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 cfdac766bf..322a13642a 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 17caaa012f..e0397ec8a0 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 b6c3542a67..cb5cef7e35 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 afd3fda4f2..59a9e395e8 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 360376294c..afbf35aa39 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 5b9d64ecc4..005b71f298 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 1f31898bf2..2b014df2e4 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 d0244cf251..56e625fd16 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 11e9fcdf4f..cfa2d6fd9a 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' )) { From e2286c659860b107e0d2791a231eb7b4ab3dca98 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 28 Feb 2014 14:37:20 +0100 Subject: [PATCH 003/137] 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 bba52b4c4b..276e5d6a55 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 * From 8951328a87c16e5ebfe4d3e5c392347db1e54f92 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 28 Feb 2014 21:03:43 +0100 Subject: [PATCH 004/137] 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 b98ccc9d58..f0b4f9a70f 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 7696fc207f..3255713e12 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 276e5d6a55..1388274c21 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 5fb51f9ecd..0eb358816d 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 a075d77436..1a73c8fad3 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) { From a135f1ebbbf444f7c210720c3061a4c2ff8f5b51 Mon Sep 17 00:00:00 2001 From: root Date: Fri, 6 Dec 2013 15:46:00 +0100 Subject: [PATCH 005/137] 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 cef9ca3c4c..f455a68a34 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); } From bacda81bf7bc20654954c3befa9cc3a95206ba0b Mon Sep 17 00:00:00 2001 From: root Date: Fri, 6 Dec 2013 15:51:19 +0100 Subject: [PATCH 006/137] 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 9b108da633..2e5c440fd6 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', From a5813acb64c7679615a570d10933158ec054cec5 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 4 Mar 2014 17:23:04 +0100 Subject: [PATCH 007/137] 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 612a623e91..cc68a41d73 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 79c4ae224c..a61d00bc15 100644 --- a/apps/user_ldap/templates/settings.php +++ b/apps/user_ldap/templates/settings.php @@ -37,6 +37,7 @@

+

t('Special Attributes'));?>

From 039f7b054a0ffb8ceda5feeb2c522adb737e6a7c Mon Sep 17 00:00:00 2001 From: root Date: Tue, 4 Mar 2014 18:02:27 +0100 Subject: [PATCH 008/137] 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 f455a68a34..c1008a5ded 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; } } From eb59e63c3b031b9a80a24865beb41a94eaa3b246 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 4 Mar 2014 19:47:49 +0100 Subject: [PATCH 009/137] 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 2e5c440fd6..9b108da633 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', From eb1e36182470b5aa71b4ecd2253479e81c388898 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 4 Mar 2014 21:07:27 +0100 Subject: [PATCH 010/137] 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 c1008a5ded..861636a763 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); From 4645d0a93a1dbf5c89b78d226d069de0dff13167 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 4 Mar 2014 21:12:47 +0100 Subject: [PATCH 011/137] 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 861636a763..7efbc025ba 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(); From 84550fbfb472f31914fc155c4e9228f4c8ba6052 Mon Sep 17 00:00:00 2001 From: root Date: Wed, 5 Mar 2014 10:42:35 +0100 Subject: [PATCH 012/137] 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 7efbc025ba..064631d789 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) { From 0f1374c02882df35c8c6142455ce0961ad0b6643 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 6 Mar 2014 16:01:13 +0100 Subject: [PATCH 013/137] 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 767295b98d..6592c6f060 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 From 8f6ea900f2f75bfdfadb7f484ec64ac7ea78623c Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Sun, 9 Mar 2014 23:01:16 +0100 Subject: [PATCH 014/137] 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 b54b23a34e..bcfe469ef1 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 d223621d4f..e704acca7f 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 2200a38bec..1ae22dde7f 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 534c54cbce..b9b7c7d638 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 063ab8b5d3..27350725d7 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 a583d9da14..0b158edff6 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()); + } + } From a1aacc18dff11351b555304a5361a73e13684bd1 Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Mon, 10 Mar 2014 09:31:30 +0100 Subject: [PATCH 015/137] 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 bcfe469ef1..6628c4514d 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 e704acca7f..45402d9b3b 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 1ae22dde7f..f5baf788ad 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; From 7f8b04d3e0392849de42a2b834bc1213d4c6149f Mon Sep 17 00:00:00 2001 From: Alexander Bergolth Date: Thu, 13 Mar 2014 09:33:07 +0100 Subject: [PATCH 016/137] adapt coding style --- apps/user_ldap/group_ldap.php | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/apps/user_ldap/group_ldap.php b/apps/user_ldap/group_ldap.php index 064631d789..cb6d256e5c 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; + $overallLimit = $maxGroups; } - $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); + $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) { From c76d952dacd049971d128ec4061603e127de766e Mon Sep 17 00:00:00 2001 From: Alexander Bergolth Date: Thu, 13 Mar 2014 10:57:19 +0100 Subject: [PATCH 017/137] 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 cb6d256e5c..4f2424d953 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(); } From d58fda7ff3e8f67e7699123eb4cca8248484c9ea Mon Sep 17 00:00:00 2001 From: Jamie McClelland Date: Sat, 23 Nov 2013 19:47:45 -0500 Subject: [PATCH 018/137] 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 4b716e764f..446c94ea54 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 09e9157034..8f91d33378 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 From ec54bc77093265b2b9f03eecc1507cb266683624 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Thu, 20 Feb 2014 15:21:53 +0100 Subject: [PATCH 019/137] 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 446c94ea54..ab32108ea2 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 23ebc9fb81..950575ec26 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 0000000000..f369062c22 --- /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); + } +} From 4bb303cbd6152cf4199136c7142a66259531d571 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Thu, 27 Feb 2014 13:27:24 +0100 Subject: [PATCH 020/137] 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 f369062c22..1b6e3c58d5 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) { From 02be15ce2fd78a7fd2b3b14fed6ac470666c560d Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Fri, 28 Feb 2014 15:28:50 +0100 Subject: [PATCH 021/137] 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 1b6e3c58d5..1148399bf9 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); } From 206364cd1c25e577544159a9822c9395a516d38a Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Mon, 3 Mar 2014 19:59:25 +0100 Subject: [PATCH 022/137] 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 950575ec26..e3a7679292 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()); } } From 4033eba374cde80751c393e1f6ed5c647661f4c8 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Wed, 12 Mar 2014 16:57:39 +0100 Subject: [PATCH 023/137] 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 8099794f67..227e684741 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 be7f4e14a1..1da02fc81e 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)); From 59d1ee565e66a0394e2cf1d59bde125cb2e70a48 Mon Sep 17 00:00:00 2001 From: raghunayyar Date: Thu, 20 Mar 2014 13:34:50 +0530 Subject: [PATCH 024/137] 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 a47e7bf656..d7d8b0aede 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 3dbc8a2f7c..f151a034a8 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 4c77c62f51..b7f3b6121a 100644 --- a/settings/templates/apps.php +++ b/settings/templates/apps.php @@ -7,32 +7,33 @@ src="?appid="> +
    + +
    +

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

    From 057c2638e4d1c369f03739faad02d9d6c87e83f7 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Thu, 20 Mar 2014 13:58:08 +0100 Subject: [PATCH 025/137] 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 e79090febc..930db5c474 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); From bd881348e86670332abb0ccb8cd6a71543ee3fd1 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Thu, 20 Mar 2014 22:57:50 +0100 Subject: [PATCH 026/137] 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 930db5c474..4f7eee5a98 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; } From 561d699ca67c0f5d3130b80e238c7ace8ba57e42 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Thu, 20 Mar 2014 22:58:57 +0100 Subject: [PATCH 027/137] 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 4f7eee5a98..f97ab51f0f 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])) { From a085d7715f7fda43f322eb36143b268add3f2061 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Thu, 20 Mar 2014 22:59:41 +0100 Subject: [PATCH 028/137] 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 f97ab51f0f..f6bc586a7a 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)) From 3d2ab76347b04b1d7e04684265b5d7ee678a2b38 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Fri, 21 Mar 2014 00:17:51 +0100 Subject: [PATCH 029/137] 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 0000000000..f3178332ae --- /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 From 6f605ecd671e7e6d5e9734dc74c3b9480613c090 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Fri, 21 Mar 2014 10:08:17 +0100 Subject: [PATCH 030/137] 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 f3178332ae..2b5cabc705 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; From 4230983e69906de916c73e06204ff87df72bfce9 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Fri, 21 Mar 2014 10:10:49 +0100 Subject: [PATCH 031/137] 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 f6bc586a7a..54454d2ad2 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]; } From 3d8ce8104f134d8c53bedc62ef9e0fcbb9e03465 Mon Sep 17 00:00:00 2001 From: raghunayyar Date: Mon, 24 Mar 2014 17:59:53 +0530 Subject: [PATCH 032/137] 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 0e6a080c9c..5bfc2d4a08 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 f151a034a8..05db4c9a04 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(); } From ec9260647a5ec0bb62065eba6bfa004b6d2c696c Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Tue, 25 Mar 2014 20:18:58 +0100 Subject: [PATCH 033/137] 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 1148399bf9..993bf0169e 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); From cbfd16089b8c4317dc831dbab52f36f2ad60c5c0 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Wed, 26 Mar 2014 09:29:28 +0100 Subject: [PATCH 034/137] 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 993bf0169e..79ae4879b6 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() { 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 035/137] 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 79f5160963..f9083cc4e6 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 a88a9d797a..3cc9868e25 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 From bf77c580c1e20400dbeb3bdbb7e3ddcd87880409 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Thu, 27 Mar 2014 16:06:37 +0100 Subject: [PATCH 036/137] general styles for the content area --- core/css/apps.css | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/core/css/apps.css b/core/css/apps.css index 0e6a080c9c..8eb3bdd683 100644 --- a/core/css/apps.css +++ b/core/css/apps.css @@ -151,9 +151,6 @@ transition: padding-bottom 500ms ease 0s; padding-bottom: 40px; } -#app-navigation .personalblock > legend { /* TODO @Raydiation: still needed? */ - padding: 10px 0; margin: 0; -} #app-navigation .error { color: #dd1144; } @@ -242,3 +239,22 @@ button.loading { padding-right: 30px; } + +/* general styles for the content area */ +.section { + display: block; + padding: 30px; + color: #555; + border-top: 1px solid #ddd; +} +.section h2 { + font-size: 20px; + font-weight: normal; + margin-bottom: 7px; +} +/* slight position correction of checkboxes and radio buttons */ +.section input[type="checkbox"], +.section input[type="radio"] { + vertical-align: -2px; + margin-right: 4px; +} From 69be5bdbd8fb9fc04d0c05179fa183a4e4fd35a3 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Thu, 27 Mar 2014 16:28:05 +0100 Subject: [PATCH 037/137] replace personalblock fieldset with section div in admin and personal settings --- settings/templates/admin.php | 61 ++++++----- settings/templates/personal.php | 175 +++++++++++++++----------------- 2 files changed, 112 insertions(+), 124 deletions(-) diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 9092d2833f..10f19b8891 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -43,35 +43,35 @@ if ($_['mail_smtpmode'] == 'qmail') { // is ssl working ? if (!$_['isConnectedViaHTTPS']) { ?> -
    +

    t('Security Warning'));?>

    t('You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead.', $theme->getTitle())); ?> -
    +
    -
    +

    t('Security Warning'));?>

    t('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.')); ?> -
    +
    -
    +

    t('Setup Warning'));?>

    @@ -79,42 +79,42 @@ if (!$_['isWebDavWorking']) { t('Please double check the installation guides.', link_to_docs('admin-install'))); ?> -
    +
  • -
    +

    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.')); ?> -
    - + + + From 6de572c6e6387ae2b60c97b655083a0412bfa643 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Thu, 27 Mar 2014 16:35:34 +0100 Subject: [PATCH 038/137] 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 | 262 +++++++++--------- 4 files changed, 263 insertions(+), 273 deletions(-) diff --git a/apps/files/templates/admin.php b/apps/files/templates/admin.php index a5afd55fbc..5f7d3261d6 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 231a68b6a5..cf676c445c 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 1b4239d82c..8139ece195 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( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" ) ); ?> -
    - /> - t( "Enabled" ) ); ?> -
    + 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( "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 5e84fa8a25..e7be16bede 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')); ?> 
    - - - - - - - - $value): ?> - - - - - - - - - - - - - - + '')) print_unescaped(''.$_['dependencies'].''); ?> + '> + + + + + + + + '.$l->t('Applicable').''); ?> + + + + + array())); ?> + + > + + + + - - + + + + - - - -
    t('Folder name')); ?>t('External storage')); ?>t('Configuration')); ?> 
    + + + + + ' - data-applicable-users=''> - - + + $value): ?> + + + + + + + + + + + + + + + + + + - 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): ?> + /> +
    + + +

    +
    From 25326b89dad234ecbb91b778e6d1adf3600f09c6 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Thu, 27 Mar 2014 16:41:16 +0100 Subject: [PATCH 039/137] 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 79c4ae224c..ee4a7df3cb 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 ad1701add8..4596fdf3c7 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.')); ?>

      From 5b2abb32a64de2c315148893d2774a84315a5ac2 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Thu, 27 Mar 2014 16:42:08 +0100 Subject: [PATCH 040/137] 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 bd8111ebc7..4420633e34 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 280d022af4..19678e687e 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; } From 53b1e4a00b30db8d385370680ab5d81676b3644e Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Thu, 27 Mar 2014 17:13:12 +0100 Subject: [PATCH 041/137] 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 280d022af4..2cb1867087 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 { From ec46a071957dd21fa0613ebeb7a539ee8b1eaa47 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Thu, 27 Mar 2014 17:13:36 +0100 Subject: [PATCH 042/137] 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 bd8111ebc7..9719de191e 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"] { From 0d9d70b51c8113713c5da05548c584ffc954162d Mon Sep 17 00:00:00 2001 From: Alexander Bergolth Date: Fri, 28 Mar 2014 14:02:19 +0100 Subject: [PATCH 043/137] 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 cc68a41d73..713fba8365 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, ); } From b1589392839a1481f351a43187b12de2de1a4076 Mon Sep 17 00:00:00 2001 From: Alexander Bergolth Date: Fri, 28 Mar 2014 14:20:01 +0100 Subject: [PATCH 044/137] 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 a61d00bc15..95a888a31d 100644 --- a/apps/user_ldap/templates/settings.php +++ b/apps/user_ldap/templates/settings.php @@ -37,7 +37,7 @@

      -

      +

    t('Special Attributes'));?>

    From f331d5f9d4a4609370bf6a5593e0720ba7c77c04 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 27 Mar 2014 16:43:34 +0100 Subject: [PATCH 045/137] 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 abc11e7647..42fee4f336 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 f06c2fcd66..90b0da09c3 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; From fe78d963d9a7cbae6aabd8e1a275c6de783440ba Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 28 Mar 2014 15:26:15 +0100 Subject: [PATCH 046/137] 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 01db29d72e..49b1d208d4 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 a75e186052..47969833ab 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())); + } } From 82f98fb3d3822a001a298a924267c337e8d79f43 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Fri, 28 Mar 2014 18:12:21 +0100 Subject: [PATCH 047/137] 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 284976d3ba..eef3c23727 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') { From 51b727cfcaa0bf3aa486129d42eab05e0f5af363 Mon Sep 17 00:00:00 2001 From: Rodrigo Hjort Date: Fri, 28 Mar 2014 15:08:59 -0300 Subject: [PATCH 048/137] 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 9ee50ff696..ed11e59d28 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') { From 881c66df52cba16df17297a88978297231d1d7d9 Mon Sep 17 00:00:00 2001 From: raghunayyar Date: Sun, 30 Mar 2014 15:48:47 +0530 Subject: [PATCH 049/137] 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 5bfc2d4a08..9e48e28fce 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 d7d8b0aede..50e3eacbc1 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; } From 615de6534f659b3f0bc8149b5ccf8558aaf491e9 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Mon, 31 Mar 2014 12:27:26 +0200 Subject: [PATCH 050/137] 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 9719de191e..68317d1588 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, From 6ac85480f7bffeb65fcbc5820ea7bd4ecd8f21ad Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Mon, 31 Mar 2014 13:00:46 +0200 Subject: [PATCH 051/137] 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 e7be16bede..8b01b7677e 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 @@ - From 8bd308ffedec77f1dd4b7ddaf588c7a4029ea34f Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Mon, 31 Mar 2014 13:51:53 +0200 Subject: [PATCH 052/137] 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 9e48e28fce..5899aa0909 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 */ From 6292aa57af8900f38885e9bb08b748a80d86aec1 Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Mon, 31 Mar 2014 14:24:38 +0200 Subject: [PATCH 053/137] 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 0d238737dd..260eeb1510 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; } } From 0c2585f3ac9dbf82bf45023963dfecc66c515b78 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 31 Mar 2014 14:29:55 +0200 Subject: [PATCH 054/137] 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 49b1d208d4..eeb62c3cce 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 42fee4f336..1c9de56f8c 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 From 3a731a01b1742f22b67eda6bc2a643462a9ae40d Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Mon, 31 Mar 2014 15:02:02 +0200 Subject: [PATCH 055/137] 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 8238797600..7bab98b00b 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)) { From 8ebb1f15d31b449401c7f2b726007aaff78a4879 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Thu, 27 Mar 2014 13:49:48 +0100 Subject: [PATCH 056/137] 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 bae1fded53..f7f5ff6f36 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', '')); - } + $view = new \OC_FilesystemView(''); + $util = new Util($view, $userId); - if (Crypt::isCatfileContent($path)) { - return true; - } - - $extension = substr($path, strrpos($path, '.') + 1); - - 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(''); + // Close the original encrypted file + fclose($result); - $userId = Helper::getUser($path); - $util = new Util($view, $userId); - - // 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 3db5a42347..c3058aefa6 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 From aa867ad647677d9648f746681adde630fed60850 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Mon, 31 Mar 2014 12:43:38 +0200 Subject: [PATCH 057/137] don't call getFileInfo() to avoid to open the same file twice --- apps/files_encryption/lib/stream.php | 26 +++++++++++++++----------- 1 file changed, 15 insertions(+), 11 deletions(-) diff --git a/apps/files_encryption/lib/stream.php b/apps/files_encryption/lib/stream.php index 58ac03373a..1a163db887 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; + $fileInfo = array( + 'encrypted' => true, + 'size' => $this->size, + 'unencrypted_size' => $this->unencryptedSize, + ); - // set fileinfo - $this->rootView->putFileInfo($path, $fileInfo); - } + // 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; + } } From cf361b6b4afe76e3bb6295a1fdd80d5ad0badd65 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Mon, 31 Mar 2014 15:30:44 +0200 Subject: [PATCH 058/137] 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 140b75706e..adcc175e2f 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 8041c4f004..7cbbb0676b 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; } From 76c63a576089edcd553244f02d8c3f6c28038fd2 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 31 Mar 2014 17:00:32 +0200 Subject: [PATCH 059/137] 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 279ae71693..f5010f9220 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 f3bfba3feb..e4d9e93ca9 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); + } } 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 060/137] 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 b67f67b972..0000000000 --- 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 15c376eb95..0000000000 --- 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 7b4ef7d09a..0000000000 --- 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 be28fc5ba3..0000000000 --- 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 6b66a61ef6..0000000000 --- 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 be11b7a026..0000000000 --- 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 c8bd08a2ea..0000000000 --- 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 e6ecf010e7..0000000000 --- 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 d6ce265c2a..0000000000 --- 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 e91de0bce1..0000000000 --- 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 68a0e23721..0000000000 --- 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 242252ed0e..0000000000 --- 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 2ac39a4621..0000000000 --- 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 5494e3dab2..0000000000 --- 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 91ae517f23..0000000000 --- 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);"; From 8e34812393d730da9a161d1724eba818de61076c Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Mon, 31 Mar 2014 18:09:46 +0200 Subject: [PATCH 061/137] 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 58ac03373a..6687194588 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 3db5a42347..4bf987d925 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 a08134b383..564839e86b 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' From c578ab68fe133abdd1519810be642c4b27aed6c3 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Mon, 31 Mar 2014 18:24:53 +0200 Subject: [PATCH 062/137] 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 6549273c8f..3f59a99eea 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; - } } From 7a4a836abe2cce89df92648a39cd9e2cd3fae1de Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Tue, 1 Apr 2014 01:56:15 -0400 Subject: [PATCH 063/137] [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 9144cf3ea1..c71aa9a35a 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 ad8617bc6d..972d7d7138 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 4dcd93d7ac..15f2b3b15e 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 aa28898257..245bcc62aa 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 4e9856da4a..6856c0591f 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 1e97591195..926419d86b 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 ed7792b726..0ffb746fc7 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 54906380cd..7f52a39aed 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 fc989942bb..086a36cec3 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 bd28873a5e..0398e97567 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 ca669ad43a..f2240af793 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 8f6d6e8c54..3428c9dade 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 963340f3af..adda7be21d 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 f9c9174c55..aeb2e20036 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 4a51239c72..91d7cf7c70 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 5ac968e0c4..9b27d46c88 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 74a307337e..fafef561bd 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 41d6fb6139..a7df661ab0 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 32ec5e902e..224946f78b 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 eacfde04d8..e2343f68a9 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 bc931be91d..32c823f911 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 99f9cf030b..426ee835c5 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 6334e403e4..15d3055889 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 8fbff46261..5acf3d4e6f 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 f9b4401c78..d890a5395d 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 3381aea0a7..21b5360797 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 10017472d1..f7ed90f06a 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 12fa6ad930..64f139c496 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 892d64a273..2da34f73a9 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 d16fe0386e..2e57ba0cb5 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 d2e917267c..5d24239a41 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 148b7fc1fe..a169ae3864 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 546e301797..424f0f5bd8 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 c438fa0f99..0b6ee6a298 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 eaa8552f9c..e613b5b04c 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", From d6ce45fe61c05c0779cfaa3207a538a7a5b9a04c Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Mon, 31 Mar 2014 18:36:52 +0200 Subject: [PATCH 064/137] 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 2b69714151..480cf6b5c7 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 0000000000..3712b9d30f --- /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 f3bfba3feb..6ec35dfbc9 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 From 0067a4eac287928a70a50c925b00777d760e4ec1 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Mon, 31 Mar 2014 18:37:52 +0200 Subject: [PATCH 065/137] 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 480cf6b5c7..0ce447a5a4 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) { From 0d2a81a0959576f02a0d82bc1efba88ee7bb09d0 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Tue, 1 Apr 2014 10:48:55 +0200 Subject: [PATCH 066/137] 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 5899aa0909..836d36d8b8 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 */ From 0a112de676ab41579a40eb04d4f8b0cc96b326a7 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Tue, 1 Apr 2014 14:26:06 +0200 Subject: [PATCH 067/137] 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 a2bdbcf463..28836ed5b5 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').''); ?> From acfb3cfff544096342b9d44410bcb74bbffec99a Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Tue, 1 Apr 2014 14:28:33 +0200 Subject: [PATCH 068/137] 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 28836ed5b5..e8815acaf1 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 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; - } - - 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() + var tr = this._createRow( + fileData, + options ); + var filenameTd = tr.find('td.filename'); - FileList.insertElement(name, 'file', tr); - if (loading) { - tr.data('loading', true); - } else { - tr.find('td.filename').draggable(dragOptions); + // sorted insert is expensive, so needs to be explicitly + // requested + if (options.insert) { + this.insertElement(fileData.name, type, tr); } - if (hidden) { - tr.hide(); + else { + this.$fileList.append(tr); + } + FileList.isEmpty = false; + + // 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); + } + + if (options.hidden) { + tr.addClass('hidden'); + } + + // 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 + ')'); + } + } + + // defaults to true if not defined + if (typeof(options.updateSummary) === 'undefined' || !!options.updateSummary) { + this.updateFileSummary(); + this.updateEmptyContent(); } 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(); - } - 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); + this.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(); - } - } - - 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); - }); - } - 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); - } - - FileList.setCurrentDir(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; + } + else{ + // read from URL + targetDir = parseCurrentDirFromUrl(); + } + if (targetDir) { + FileList.changeDirectory(targetDir, 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 1137364db4..4c2d87d808 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 fea88faa92..adfca66957 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 c41e2d1558..b765fdaf3e 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 34acd9c4f5..95edd625cb 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 69b4cbca10..0000000000 --- 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 0000000000..1bfe5308a2 --- /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 80c04b5b24..3c22c84b86 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'}); + var fileData = { + id: 18, + type: 'file', + name: 'testName.txt', + mimetype: 'plain/text', + size: '1234', + etag: 'a01234c', + mtime: '123456' + }; - // 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); + // note: FileActions.display() is called implicitly + var $tr = FileList.add(fileData); - FileActions.display($tr.find('td.filename'), true); - - // 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 8f4cb86ab4..ca85a360cf 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(); }); - 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('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); + }); }); - it('generates dir element with correct attributes when calling addDir', function() { - var lastMod = new Date(10000); - var $tr = FileList.addDir('testFolder', 1234, lastMod, false); + 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-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'); + 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); + }); + }); + 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); + }); + }); + 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 0000000000..4b64549625 --- /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 5246a4b2fe..f0b9b04491 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 06c168969d..9ce8985f1f 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,32 +22,44 @@ $(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) { // Add custom data to the upload handler diff --git a/apps/files_sharing/js/share.js b/apps/files_sharing/js/share.js index 9f0ed12f93..ea518f3b70 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 0000000000..b602fe3599 --- /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 fe61dd4d5a..ba2494a7b1 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 cec18c4652..89a5511452 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 ce64d9ecc9..32905b2a71 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 9c3ccba7ed..2b00078669 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 97819f4e80..7ca3e355fc 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 f0c5b0508b..e63fe1e418 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 afa80cacd6..50ceaf4696 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 a88459b0a9..7795daf277 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]; } - }); -}; + return name; + }; -FileList.appName = t('files_trashbin', 'Deleted files'); + var oldSetCurrentDir = FileList._setCurrentDir; + FileList._setCurrentDir = function(targetDir) { + oldSetCurrentDir.apply(this, arguments); -FileList._deletedRegExp = new RegExp(/^(.+)\.d[0-9]+$/); + var baseDir = OC.basename(targetDir); + if (baseDir !== '') { + FileList.setPageTitle(FileList.getDeletedFileName(baseDir)); + } + }; -/** - * 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 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; + }; - var baseDir = OC.basename(targetDir); - if (baseDir !== '') { - FileList.setPageTitle(FileList.getDeletedFileName(baseDir)); - } -}; + 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); + } + }; -FileList.linkTo = function(dir){ - return OC.linkTo('files_trashbin', 'index.php')+"?dir="+ encodeURIComponent(dir).replace(/%2F/g, '/'); -} + 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.updateEmptyContent = function(){ - var $fileList = $('#fileList'); - var exists = $fileList.find('tr:first').exists(); - $('#emptycontent').toggleClass('hidden', exists); - $('#filestable th').toggleClass('hidden', !exists); -} + 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 efe1e89f0b..5cd49e19aa 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,48 +219,62 @@ $(document).ready(function() { action(filename); } } - - // event handlers for breadcrumb items - $('#controls').delegate('.crumb:not(.home) a', 'click', onClickBreadcrumb); }); + /** + * 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); + }; + + 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') + }; + for (var i = 2; i < parts.length; i++) { + parts[i].name = getDeletedFileName(parts[i].name); + } + return parts; + }; + FileActions.actions.dir = { // only keep 'Open' action for navigation 'Open': FileActions.actions.dir.Open }; }); -/** - * @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') - }; - if(property){ - files.push(file[property]); - }else{ - files.push(file); - } - }); - return files; -} - -function fileDownloadPath(dir, file) { - return OC.filePath('files_trashbin', '', 'download.php') + '?file='+encodeURIComponent(file); -} - function enableActions() { $(".action").css("display", "inline"); $(":input:checkbox").css("display", "inline"); diff --git a/apps/files_trashbin/lib/helper.php b/apps/files_trashbin/lib/helper.php index 9c24332a96..e6ca73520a 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($result, array('\OCA\Files\Helper', 'fileCmp')); - usort($files, 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 f9264d4352..615cf8bdd0 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 fdf78c190d..0000000000 --- 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 078/137] 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 4d765b69e4..cd9341d3b1 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; From da5541ac025e5f5f9dbd7318b903266eedbed263 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 2 Apr 2014 17:10:57 +0200 Subject: [PATCH 079/137] 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 4d765b69e4..f2c5bd1335 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 d7ac0b5f4f..da3d3cd1c6 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; } From 5f3b8c45d73451d511242a3aabc768520273c40c Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Wed, 2 Apr 2014 17:54:33 +0200 Subject: [PATCH 080/137] 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 7c2219bd04..758f0a8008 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); From 54783550e8736e0507be05fdc8711d8b30218d72 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Thu, 3 Apr 2014 01:56:12 -0400 Subject: [PATCH 081/137] [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 a2570e002a..095578ce65 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 a80c8d6f36..22c1fa989b 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 9a885c69e4..4c3f563965 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 088dfd75b4..63198c9817 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 9901d49bb7..f0ebb629de 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 46d93cbd7f..04537ecf56 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 289bbdd3ad..9f8dbd414f 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 1510df381b..3b5aaa53de 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 75f60268c3..ea3e573818 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 74bc7de4d8..dceccc7ee5 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 d64292e0be..4a3dbaf206 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 1d074a575a..5638fd1d70 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 98331d39e3..e9e5556a9f 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 a0c2c7154f..cb9a98a8fa 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 45d63ba005..29cb88a832 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 dc3a439caa..f00b82bc67 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 b8fc186e42..f7499ea07d 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 987cddc27f..cb1fbff0c3 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 1ef911539e..d6334ce805 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 b4288acb57..9d0df03eca 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 99e10dc725..1623bca054 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 648f9d088b..fc9d04fac6 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 59d36a6178..af9d2bb2e2 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 dc44ab1702..73749054af 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 75e0130978..5e3198d3c4 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 f1fb20c9ac..e57534fed5 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 0a6ef078e4..3200103804 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 d82167f21f..547d55849d 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 b28dbca00d..f5f737dac8 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 2be87945ad..fe8bbde326 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 9ffd886101..cc837ef6d3 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 ed9c31f941..10bf11cd4b 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 283116e436..8f7656f4f2 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 546a7940ee..f50460d212 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 8e54139951..21bb0d4c5e 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 aa690d0e13..cf61da7c93 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 020d1a59e0..669ce82b01 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 43d667e8d0..3257ce60c1 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 3894fb0ad4..cc0a820871 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 11137b1ac5..2076251ca0 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" From eaad6a4e27c291ce8f226bf77bc26b3001b4c380 Mon Sep 17 00:00:00 2001 From: Robin McCorkell Date: Mon, 31 Mar 2014 15:16:33 +0100 Subject: [PATCH 082/137] 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 e8815acaf1..0d04e35e7f 100644 --- a/apps/files_external/templates/settings.php +++ b/apps/files_external/templates/settings.php @@ -16,16 +16,16 @@ array())); ?> - > + > - + - - - - - - - - - - $value): ?> - - - - class="optional" - data-parameter="" - value="" - placeholder="" /> - - - - - - class="optional" - data-parameter="" - value="" - placeholder="" /> - - - - - - - - - - ' - 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): ?> - /> -
    - - -

    - - - - -
    -

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

    - '> + - - - - - + array())); ?> + $mount): ?> + > + + + + + + + + + + + + +
    class="remove" - style="visibility:hidden;" - ><?php p($l->t('Delete')); ?>
    + + + + + + + + $value): ?> + + + + + + + + + + + + + + + + + + + + ' + data-applicable-users=''> + + class="remove" + style="visibility:hidden;" + ><?php p($l->t('Delete')); ?>
    - - - + '')) print_unescaped(''.$_['dependencies'].''); ?> +
    + + +
    + /> +
    + t('Allow users to mount their own external storage')); ?> + +
    + + +
    +
    + t('SSL root certificates'));?> + '> + + + + + + + + +
    class="remove" + style="visibility:hidden;" + ><?php p($l->t('Delete')); ?>
    + + + +
    +
    From 31016631298294ff8b11d66c9c71647c64abad50 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Thu, 3 Apr 2014 16:50:21 +0200 Subject: [PATCH 088/137] 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 ba2494a7b1..ce51eca6dd 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']:'') From 2b8bb0121133d460755202bfbb0e62433c12938c Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Thu, 3 Apr 2014 16:55:01 +0200 Subject: [PATCH 089/137] 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 73ed20b755..6fc8d4d352 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( 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 090/137] Update backends and their configurations --- apps/files_external/appinfo/app.php | 93 ++++++++++++++++++++++------- 1 file changed, 73 insertions(+), 20 deletions(-) diff --git a/apps/files_external/appinfo/app.php b/apps/files_external/appinfo/app.php index f49d297323..0017b22caa 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,33 +82,52 @@ 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', - 'configuration' => array( - 'host' => 'URL', - 'user' => 'Username', - 'password' => '*Password', - 'share' => 'Share', - 'root' => '&Root'), - 'has_dependencies' => true)); + +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' => 'ownCloud / WebDAV', + 'backend' => 'WebDAV', 'configuration' => array( 'host' => 'URL', 'user' => 'Username', @@ -104,6 +136,16 @@ OC_Mount_Config::registerBackend('\OC\Files\Storage\DAV', array( 'secure' => '!Secure https://'), 'has_dependencies' => true)); +OC_Mount_Config::registerBackend('\OC\Files\Storage\OwnCloud', array( + 'backend' => 'ownCloud', + 'configuration' => array( + 'host' => 'URL', + 'user' => 'Username', + 'password' => '*Password', + 'root' => '&Remote subfolder', + 'secure' => '!Secure https://'))); + + OC_Mount_Config::registerBackend('\OC\Files\Storage\SFTP', array( 'backend' => 'SFTP', 'configuration' => array( @@ -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'))); From 7c9537f33aa590c59553cc717738a98ca54bbcb8 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Thu, 3 Apr 2014 17:04:13 +0200 Subject: [PATCH 091/137] 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 0ffae22ec3..2d76b68501 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(); } From d1e78d7a6b7ff074bb972e0840ca8cdfe2403000 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Thu, 3 Apr 2014 17:08:06 +0200 Subject: [PATCH 092/137] 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 21010c7dc1..ff017a22bb 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); 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 093/137] 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 3ef13b633a..b1d355323d 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; } 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 094/137] 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 352885121f..2093fb7e58 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."); 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 095/137] Exclude javascript specs from code analysis --- .scrutinizer.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.scrutinizer.yml b/.scrutinizer.yml index 4473cf9056..0f529be398 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' From ab56f694160f58f075069560953cba86cdfe5aec Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Thu, 3 Apr 2014 21:12:35 +0200 Subject: [PATCH 096/137] 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 be6805a9a5..2fd77c437f 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; From 0805f678ccfc808d788611aabc486f8dcef054e5 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Fri, 4 Apr 2014 01:57:01 -0400 Subject: [PATCH 097/137] [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 | 178 +++++++++++++--------------- l10n/ady/files.po | 178 +++++++++++++--------------- l10n/af/files.po | 178 +++++++++++++--------------- l10n/af_ZA/files.po | 178 +++++++++++++--------------- l10n/ak/files.po | 178 +++++++++++++--------------- l10n/am_ET/files.po | 154 ++++++++++++------------ l10n/ar/files.po | 154 ++++++++++++------------ l10n/ar/files_external.po | 4 +- l10n/az/files.po | 178 +++++++++++++--------------- l10n/be/files.po | 178 +++++++++++++--------------- l10n/bg_BG/files.po | 154 ++++++++++++------------ l10n/bg_BG/files_external.po | 4 +- l10n/bn_BD/files.po | 154 ++++++++++++------------ l10n/bs/files.po | 154 ++++++++++++------------ 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 | 154 ++++++++++++------------ 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 | 178 +++++++++++++--------------- 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 | 178 +++++++++++++--------------- 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 | 154 ++++++++++++------------ 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 | 178 +++++++++++++--------------- 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 | 154 ++++++++++++------------ l10n/hr/files.po | 154 ++++++++++++------------ l10n/hu_HU/files.po | 154 ++++++++++++------------ l10n/hu_HU/files_external.po | 4 +- l10n/hy/files.po | 154 ++++++++++++------------ l10n/ia/files.po | 154 ++++++++++++------------ 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 | 178 +++++++++++++--------------- l10n/ko/files.po | 154 ++++++++++++------------ l10n/ko/files_external.po | 4 +- l10n/ku_IQ/files.po | 154 ++++++++++++------------ 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 | 178 +++++++++++++--------------- l10n/ml_IN/files.po | 178 +++++++++++++--------------- l10n/mn/files.po | 178 +++++++++++++--------------- l10n/ms_MY/files.po | 154 ++++++++++++------------ l10n/my_MM/files.po | 178 +++++++++++++--------------- l10n/nb_NO/files.po | 154 ++++++++++++------------ l10n/nb_NO/files_external.po | 4 +- l10n/nds/files.po | 178 +++++++++++++--------------- l10n/ne/files.po | 178 +++++++++++++--------------- l10n/nl/files.po | 154 ++++++++++++------------ l10n/nl/files_external.po | 4 +- l10n/nn_NO/files.po | 154 ++++++++++++------------ l10n/nqo/files.po | 178 +++++++++++++--------------- 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 | 154 ++++++++++++------------ 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 | 154 ++++++++++++------------ l10n/su/files.po | 178 +++++++++++++--------------- l10n/sv/files.po | 154 ++++++++++++------------ l10n/sv/files_external.po | 4 +- l10n/sw_KE/files.po | 178 +++++++++++++--------------- l10n/ta_LK/files.po | 154 ++++++++++++------------ l10n/ta_LK/files_external.po | 4 +- l10n/te/files.po | 154 ++++++++++++------------ l10n/te/files_external.po | 4 +- l10n/templates/core.pot | 28 ++--- l10n/templates/files.pot | 130 ++++++++++---------- 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 | 178 +++++++++++++--------------- 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 | 178 +++++++++++++--------------- l10n/ur_PK/files.po | 178 +++++++++++++--------------- l10n/uz/files.po | 178 +++++++++++++--------------- 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 | 154 ++++++++++++------------ 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, 7952 insertions(+), 8844 deletions(-) diff --git a/apps/files/l10n/ar.php b/apps/files/l10n/ar.php index 147d77d4cb..e7c081b1c4 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 830400b93f..f97fc27e2d 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 12e699064b..2418010cdd 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 11f3525690..667a68bb62 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 a4418b1be5..8ef9b76448 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 5bcf1087b9..8aea17a705 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 df93ca507b..b27e4c3bfc 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 7069849b43..6a7ea4745c 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 376cbaa4e2..401ee243f2 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 8b70d7f0f0..f797be99e9 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 0df0f46dc2..4768faa97d 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 c71aa9a35a..713072d3e0 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 3fb2cb62e6..705f6b99b0 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 b92fef5000..a6e0d55317 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 6083ab2a5d..10a378c371 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 105321276c..f78615fc92 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 4f5e35bd88..8e051d1c38 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 f8a72f95d8..ea7db0d7b9 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 74818f99f1..4f0614feb5 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 be601eecfb..d59dd39628 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 e1142aba16..2e8f6255e2 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 6b94d8b4fa..b6383c144d 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 ad768f03de..0eed6a70f9 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 7ea8181dc7..9fe6546de5 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 2035c8488b..ab8640a91d 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 ae01bfc47e..b4234b5137 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 5048a15c8b..ef978e6cfb 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 6f5ba9b472..e4ab355c9b 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 82fd2e658d..420e48395c 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 45bc05c918..8356c5465e 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 088cdefa30..00503028e0 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 e1a34e646f..9539496a3f 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 eb6cb0efc5..dd8d4e4e3f 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 230c2e4ede..f9749d72bb 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 702c811ecf..a7a01ccab9 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 92a2578074..c0f0d7d445 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 c0141656f5..6ec5819d38 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 822ca7e2d0..38b5d672d0 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 14c4862117..50097e5f36 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 0d2ebf281a..fcb1a59aa3 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 bc9ee15823..fa6efd1aff 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 0a7a50abb1..df0054c3d0 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 b90bee38f9..f1e2c2edee 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 c617f0bfdd..946c7905b2 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 4f74167d9a..bd17fa3386 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 eb1a9038b0..7a24c81974 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 63fcbe12dd..b18d2071e0 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 3e93dc881e..83126b3ea0 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 d0c27431da..48c32e8887 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 3b3c2f842b..0afb6b5015 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 3f192df5b4..6cda724df4 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 ac958e5dfd..17f06c6a20 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 44decfef1b..a2809ee2f5 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 e80ca0186c..95c07afba5 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 ae54ace12d..fcb358bd7b 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 073f2def62..ade4f769fa 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 2a1b478b2a..44669e8167 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 67bf30d860..a5c74860f7 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 fa88a1e966..314a053cd3 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 c0589feece..257aacf147 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 155e4b5c20..b2cf4c01d8 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 110b84cad5..8f5f15f2a3 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 095578ce65..d1eb4bff59 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 ee188d927e..13354c153b 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 b74126c446..905d27c3ee 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 3e13a7f516..b9548acde9 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 8812bb1b20..55f9bd2594 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 87f8138697..068f97c1dd 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 4885500ce4..eaa32cd537 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 caf8b184a3..154efd563f 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 9d1970064e..d02b8f499d 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 58c50d3e19..2ec8af4d0e 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 +#: 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 "" -#: 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 bc32e0306b..12f59cbc7b 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 +#: 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 "" -#: 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 2175656e18..e56f84e109 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 +#: 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 "" -#: 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 9ab990fa95..24833c8a10 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 +#: 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 "" -#: 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 639ada15a2..73d266f53a 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 +#: 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 "" -#: 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 e301286aee..22104ecccf 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 +#: 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 "" -#: 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 03c7ac1650..e26fbcba88 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 6fde783a1e..a12496b73e 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 907c50809c..8d82454375 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 +#: 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 "" -#: 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 a2a5ebaa16..66801d9d68 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 +#: 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] "" @@ -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 6d6412edee..d5beae81b1 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 f95a863c58..89bf79299d 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 43c3d26d9a..3d85042f65 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 09ae4d496d..194ec79a38 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 +#: 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] "" 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 f504332b2d..058d688ffe 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 558b67c72f..61d5ecf694 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 cdc38895bf..b50ebe55d7 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 082623d344..b07a223d18 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 f9ca4e1117..c030e6e275 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 16d923ac96..e997c9ee8e 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 e7cb69ede5..c6be8d84f0 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 d6ab1aa210..d27a99c98f 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 29cb88a832..5357def2ba 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 b120125988..dfea3e12a2 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 1cff24b0de..4aad8f931d 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 +#: 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 "" -#: 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 223375e7fa..1a7d78b247 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 95f3668527..85ed7c7d1b 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 5e50b0b468..87841fc3da 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 f00b82bc67..799f68c1df 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 2af9442140..1c6c92fdde 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 086a36cec3..152ba67cc8 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 8a5dbd9c89..d5fdc2c7e8 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 bb4ddcd0bf..eff254ddd3 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 +#: 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 "" -#: 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 182341b8a2..aa6ca243be 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 f7499ea07d..f4245bb4ce 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 7518719c1a..832bb3b846 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 8d22f2eb1a..f9856c4122 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 b9d0e700b3..4868b5dab3 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 cb1fbff0c3..15440edc23 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 0a625464a1..9b0c0bf17c 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 02f0efea9b..4e4ff79596 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 d0b5389019..1658116345 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 f84895926b..c46a2cb830 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 +#: 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 "" -#: 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 "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 e35ebde5b1..a069257903 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 790802d282..654db481ca 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 43c490aed4..e687a37881 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 71ed263ff6..5997b64962 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 8245bccc02..7825ae3193 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 8dcfb198e6..1a98ee665b 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 f57a7040ac..ee74198632 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 +#: 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 "" -#: 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 83011111fe..4d0ab7beca 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 606827d01e..da40a9ffa6 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 8306890140..94f8bbbdf8 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 d6334ce805..50537fbfe7 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 9e3b0bca46..fcf0cda1b0 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 e7fc3c0415..5cc86b42bd 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 37eb098e71..72448b63f6 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 +#: 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 "" -#: 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 5d5e1a7178..24d81be893 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 9d0df03eca..85c08c4d88 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 fe83688b06..082677ed42 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 495816f796..ddda3471e5 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 571ff8efa4..72e81b6038 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 +#: 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 "" -#: 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 6670ab986c..8af768de1f 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 6e63b3157d..96f91fea06 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 63cfd31048..94eac12f85 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 b8176dd374..83025c434d 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 +#: 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 "" -#: 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 5b6b0d6076..caded4be34 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 +#: 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 "" -#: 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 "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 1f2f31785c..8b63cc4291 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 973478f549..3ac07bace7 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 82f83fd1b1..bd2bbad19c 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 c3eed246e3..77acf36be5 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 2b729d5096..dca986f6c5 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 fc9d04fac6..7b6a0f1869 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 2edd7721bc..e02fc127bd 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 02c744dddc..0ac2ef5d91 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 0fae265708..937aeede4d 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 227a54b6dd..71cff17cda 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 49078b2b1a..fbdafbd0c7 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 828078ceda..ac62c9a40c 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 +#: 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 "" -#: 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 fe22370908..ccb2b335ee 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 7d748ebfa9..0476da9576 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 +#: 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 "" -#: 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 45ee79b1c1..5374b3edc4 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 81367021f7..25627c2645 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 36645752f1..5f3a144768 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 +#: 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 "" -#: 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 1fa3126886..a82954cda7 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 9f74628eee..98509d0c5c 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 +#: 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 "" -#: 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 "réckgängeg man" - -#: 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 4c85dc9b81..c0982f45a9 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 7d18340212..8d013e7a1a 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 70e715d735..d3494e5e92 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 23f5f3998b..8c47b755a3 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 018b1a84aa..ce94ed49e8 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 7f907ff611..72dd6a1caf 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 1b4e33ad67..9355e9e35f 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 219f522da5..6d8c4b1448 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 +#: 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 "" -#: 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 d8c2c527a1..73eaed182f 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 +#: 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 "" -#: 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 7a3e02d962..a1d5b8b659 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 +#: 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 "" -#: 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 ceca8d5e29..8338e168bb 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 f61e76675e..d9b7a04a28 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 +#: 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 "" -#: 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 d81379a26d..abaede9501 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 feb831e6fd..9a0fce131c 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 3d928e1242..734a69de90 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 +#: 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 "" -#: 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 56d8f5dab4..a36e68e7d4 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 +#: 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 "" -#: 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 d478170f83..1ce4270a6a 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 af9d2bb2e2..890ec55720 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 9f4fa5869f..9abd909682 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 5a44f766a2..abf737189e 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 +#: 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 "" -#: 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 7f609bb3b0..b957e1ad48 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 dc8e95181a..f991fea862 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 +#: 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 "" -#: 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 9473672b26..068fbdf5b6 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 73749054af..b7e402d12a 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 127cadb9b9..7134687fae 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 5e3198d3c4..2c968ce598 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 aed155f749..8b7fc8e609 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 5d3d9a8a8d..c6587d1998 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 77a85dc2ed..d465a9a299 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 488cd5cf9c..6dbdb8198f 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 93854e5f0d..295b3572c4 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 4b5c985dfc..41b0e3084b 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 950c0f0bb1..2779b06cd5 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 4d19ae87f3..80c2555ba9 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 +#: 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 "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 f4f9b47fdf..6f76a09b3f 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 d705cf64c2..6f6661a407 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 +#: 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] "" 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 8694064b15..01efcb33fa 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 8160290e67..b281580a65 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 9966a2785b..973e7e04a8 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 43c9665eda..e9332610e1 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 dbde28d85d..84a5d4921d 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 10f0a0a3fc..d1ac372f74 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 eb157cd5a7..c7edf1b277 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 04923e4804..b4de486ab4 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 +#: 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 "" -#: 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] "" 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 cb2cdbaca3..f02bfd4f57 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 +#: 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 "" -#: 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 337141babf..59e566d5de 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 2f08b1df5c..a21782b281 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 24c934753a..e98284e51f 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 +#: 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 "" -#: 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 0dacc83010..6c806272a4 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 1b56d02310..ef329183d1 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 23e4494a55..97c2ad4d8d 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 +#: 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 "" -#: 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 3b57d8abda..9be6a7bbae 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 e57534fed5..83b1d8f3ae 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 3200103804..ecaa7d3fb7 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 +#: 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: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 547d55849d..535a51360f 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 f5f737dac8..311d698d04 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 fe8bbde326..393ec651fb 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 cc837ef6d3..834d4cb14c 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 10bf11cd4b..c4e4dc6dc8 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 8f7656f4f2..ffa34f094b 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 f50460d212..3a473ed96a 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 21bb0d4c5e..d053872e68 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 cf61da7c93..df6b7027c4 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 669ce82b01..34b50a0656 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 7cb40f38e7..3c11a5cfdd 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 cfcbd4d5b5..ac2c87850a 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 cc0a820871..c457d0acab 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 2076251ca0..42d161b5c5 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 77cf857212..0e5165652e 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 +#: 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 "" -#: 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 99023de9b6..35888bf4d0 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 3c67e9f9bb..dc93cbadcf 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 310553d948..5b0573fee7 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 c3a2dcb2ca..ac1a791472 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 c8212b63c8..7b6b3cbb2c 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 +#: 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 "" -#: 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 a30d1be966..4a9be83d4b 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 +#: 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 "" -#: 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 a432f0ef9c..cbb3c8601e 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 +#: 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 "" -#: 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 b049eef635..709b3b848f 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 8a526dd6ac..b9a6fd2e3e 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 79cc25eb3e..6d47ffa6b6 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 3985276d63..83bdb93048 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 af3a338f96..f42c481a55 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 +#: 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 "" -#: 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 a83f1fff46..c2eeb6fc27 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 9f6752d644..62c6dc87c9 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 ffbda89301..5af482b51a 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 0b30cc0c19..f79a8f174b 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 ec6e3b3bd6..5139b36e1b 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 10151a0a1e..12fa6d097a 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 414f46712e..017d8a4235 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", 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 098/137] 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 90cec5c596..9faacfce1b 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, From a4eafca77f86ab2630bec698c3302c93daddb991 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Fri, 4 Apr 2014 11:32:07 +0200 Subject: [PATCH 099/137] 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 ff017a22bb..5bc2fac136 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 509929d0e5..506741eb6e 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 4c2d87d808..668faf723c 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 9a3b2ee6a5..1cbb9636db 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 94a397b789..8905680778 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' + ); + }); + }); }); From 05a7bfed71a745091f87a2bfdc719c6b7665c22d Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Fri, 4 Apr 2014 11:44:11 +0200 Subject: [PATCH 100/137] 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 6fc8d4d352..4888fc1eea 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')); + } }); }, /** From d4f9cc567af69a52e5ac43f700d970b6ea4b77d0 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Fri, 4 Apr 2014 11:52:15 +0200 Subject: [PATCH 101/137] 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 4888fc1eea..4772e10a8d 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 From b61ec7352bb526783bbbc1502feaf0b7be9bf23f Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 4 Apr 2014 15:10:07 +0200 Subject: [PATCH 102/137] 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 90b0da09c3..94be711486 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 { From 01d93f81f67f71189dc5e484c29c1f4918078fd8 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 4 Apr 2014 17:10:46 +0200 Subject: [PATCH 103/137] 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 4c2d87d808..ceb096f094 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 6548f95d42..c07288857f 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; From b2f8e3438884b3032791175be5a5526c0a1f89c8 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Fri, 4 Apr 2014 22:14:51 +0200 Subject: [PATCH 104/137] 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 3660f42342..0000000000 --- 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 -
    From 35ee1e902aea8b1db47e23270d72eb3734dc797a Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Fri, 4 Apr 2014 22:23:23 +0200 Subject: [PATCH 105/137] 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 0ab32acca6..881455f5a9 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')); ?>

    - +

    - +
    From 1b55c312e5929499e09714dc8155065b03c7deaa Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Fri, 4 Apr 2014 22:27:05 +0200 Subject: [PATCH 106/137] 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 06d6a8eb4b..c8bb9425f1 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.'); - } - } } From 33a2aa886538bd68ee6e0f35a8859acf6f861a53 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Fri, 4 Apr 2014 22:38:16 +0200 Subject: [PATCH 107/137] 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 ccdb98cfa3..0000000000 --- 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; } From ce1b38290569ef26082389107b20e119334bcbaf Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Fri, 4 Apr 2014 22:38:26 +0200 Subject: [PATCH 108/137] 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 70df9f0ae0..0000000000 --- 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; -} From 3c35e82a37de2e442b275ee8047b7507d2bd6cfd Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 4 Apr 2014 23:35:32 +0200 Subject: [PATCH 109/137] 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 381c42d9db..7c19cb321f 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') { From 2124eaba9296ebd9c491d71a266407d6b31cbd30 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sat, 5 Apr 2014 01:56:08 -0400 Subject: [PATCH 110/137] [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 83b1d8f3ae..73ba9af571 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 ecaa7d3fb7..d886b45f28 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 535a51360f..a0d7379ced 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 311d698d04..7da098dc9b 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 393ec651fb..b125954183 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 834d4cb14c..7d32701ec6 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 c4e4dc6dc8..1580e94cd5 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 ffa34f094b..328e080722 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 3a473ed96a..47c2ac04ea 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 d053872e68..da74353ef1 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 df6b7027c4..adaf525a10 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 34b50a0656..6e980ca8fb 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" From ceb6666e738467118568410696c407231d1dd41c Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sun, 6 Apr 2014 00:16:14 +0200 Subject: [PATCH 111/137] 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 f978eab7ca..57e2c4479a 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; From a9d49de46575308348194ce5617b065f896f8b89 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sun, 6 Apr 2014 01:56:11 -0400 Subject: [PATCH 112/137] [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 314a053cd3..f420216228 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 d1eb4bff59..87c664cc17 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 90a9bd73a6..b17740f254 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 e2d252d22a..41deb100e5 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 e9e5556a9f..426f652e3a 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 0108cfcb0e..fa844b799c 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 eb3e688257..5f8d6a05ae 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 cb9a98a8fa..9d211bd057 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 3876516000..da079b0afb 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 937aeede4d..4c071d8bff 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 59e566d5de..bb8d42d051 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 ef12db2aaf..eb0ddaf593 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 1b9e5d7a42..82b52acf7d 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 73ba9af571..e397522432 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 d886b45f28..bde7c871d2 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 a0d7379ced..d4eff40b75 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 7da098dc9b..6c600c62e4 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 b125954183..d8f0b9897e 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 7d32701ec6..5f8cdde491 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 1580e94cd5..8a287d91d9 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 328e080722..df11086bc7 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 47c2ac04ea..6a5dace8d9 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 da74353ef1..d7c6e044a2 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 adaf525a10..a2a0f85851 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 6e980ca8fb..f1653c13c4 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 3257ce60c1..9853fc1dab 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 c457d0acab..18b271aa1a 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 42d161b5c5..c7bb36b8d8 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 1f4e0197e5..95bb4b68b5 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 0473c2232d..80f1ade995 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", From 7f553ee26c3327040c3d87912c0302ea80832a9b Mon Sep 17 00:00:00 2001 From: Volkan Gezer Date: Sun, 6 Apr 2014 13:58:06 +0200 Subject: [PATCH 113/137] Update README.md Change version. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3f76c1a477..bb11039f75 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/ From 9043fdd772e1b3427356d2d9cd591a9b251c9b05 Mon Sep 17 00:00:00 2001 From: Volkan Gezer Date: Sun, 6 Apr 2014 13:58:44 +0200 Subject: [PATCH 114/137] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bb11039f75..3f76c1a477 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/ From d962f18e3f82ac1e65a67cee1054c02aafb7a388 Mon Sep 17 00:00:00 2001 From: Volkan Gezer Date: Sun, 6 Apr 2014 14:01:02 +0200 Subject: [PATCH 115/137] 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 3f76c1a477..032a7e987f 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/ From 5679f5c37e38635c2f981774e1decad9d4e486c8 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Sun, 6 Apr 2014 22:04:14 +0200 Subject: [PATCH 116/137] 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 79be211b82..b9925cf2f9 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 = ""; From 6babf90175f624f04606a59c58a4c51040cc18f5 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Sun, 6 Apr 2014 22:06:38 +0200 Subject: [PATCH 117/137] 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 b9925cf2f9..fca798568c 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"); From e295d48fd43e0aab8fe4120d1b4a302edab343b2 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Mon, 7 Apr 2014 01:56:11 -0400 Subject: [PATCH 118/137] [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 d9e2dbfcae..1a306113f4 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 3426e5589d..d8149520ea 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 0a50fd2cc7..e2a4a0a806 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 2d037f9186..94b7edf697 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 3754e8c9e0..f5a1ecd42f 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 43141bc431..c47599f5a1 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 c4e92e6217..7e72039df8 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 ac43181e22..874c40d0d4 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 5cc86b42bd..76f1bf6e84 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 1b65d2d0a4..47f6fb2324 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 7eb62b952f..8cce143dc2 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 9a0fce131c..67c39a3b2f 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 a5cfd121e3..80f2ab80a3 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 09583d597e..94929d6693 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 a21782b281..9b16af0431 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 d23ab4a6d3..003e9595bd 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 34bfef2ce3..6ce09feeb1 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 260b11a449..f3161f4053 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 e397522432..dc2a86bb6c 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 bde7c871d2..525b817c1a 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 d4eff40b75..bddf4926cc 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 6c600c62e4..e6f5ae7a53 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 d8f0b9897e..f694d95e78 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 5f8cdde491..5a0e62b6fd 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 8a287d91d9..6a7d094174 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 df11086bc7..0bb735ef27 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 6a5dace8d9..837b1f9161 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 d7c6e044a2..631b8a0d73 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 a2a0f85851..7004cf562d 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 f1653c13c4..c0c22d8130 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 a1f371210a..7053e09624 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 11c75ea1e0..5c48c7fd75 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 40cca41638..244881d306 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 43695d8b28..48f4428303 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", 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 119/137] 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 662177ac7e..79beccef3e 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 6fc8d4d352..617a8a3152 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.') }); 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 120/137] 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 617a8a3152..4da56f27d2 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(''); 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 121/137] 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 9faacfce1b..0692d72e88 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 665e2485a9..05c2a17a67 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 15a3ec8bc8..6ea77aa7a5 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 f502037cfd..dda0c98518 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); 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 122/137] 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 0000000000..ca61fdc3a4 --- /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); From de07f25bc29abf7aa44cdfdb956f810b14d08d1b Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Mon, 7 Apr 2014 14:06:20 +0200 Subject: [PATCH 123/137] 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 b88e9cf68b..4030fc0250 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 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 124/137] adding ownCloud globals to jshintrc: OC, t, n --- .jshintrc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.jshintrc b/.jshintrc index 9faacfce1b..02fbd84e6a 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 } } 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 125/137] ignore underscore.js in scrutinizer.yml --- .scrutinizer.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.scrutinizer.yml b/.scrutinizer.yml index 0f529be398..57b8856885 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: 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 126/137] 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 242cdff911..613f0b2609 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 0000000000..81a31e14c6 --- /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); + } +} 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 127/137] 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 0000000000..68367034e9 --- /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); + + } + +} 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 128/137] 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 bb973939f4..8e3791b449 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; 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 129/137] 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 cfb84309c6..fed6989a43 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); } /** From 4ad4b9768cd8b7e1107de0f9a15c039486c9c793 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Tue, 8 Apr 2014 01:57:51 -0400 Subject: [PATCH 130/137] [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 | 106 ++-- 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, 13595 insertions(+), 4689 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 0000000000..ba7ccfad2d --- /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 0000000000..cfab5af7d1 --- /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 95c07afba5..cffb89c294 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 0000000000..e304b890f9 --- /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 d3aa683673..0ed0baa44f 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 0000000000..e304b890f9 --- /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 0000000000..9cd0d7e7c6 --- /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 bba52d53a1..3a1e002311 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 0000000000..3a1e002311 --- /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 0000000000..57f7cdde79 --- /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 0000000000..ffcdde48d4 --- /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 bb3c9863ce..853118e7a6 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 3640708d6e..ca25a26988 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 8516b5a6fe..8ca354d202 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 a686756ba9..3c1f515e05 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 705677146f..04cdd0397c 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 94d53b7357..2dd7b1f1a4 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 32c77bec4a..b0e9bc1b3a 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 1edc5b40a1..38344accb9 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 4f4ab64328..581eb34d23 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 f498dda78d..1fd891dc6e 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 537c7c79d0..2dae2aaf95 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 7101e46cec..e66052cc04 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 df272f6978..0dc3459fe7 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 b31f677213..a92aaeb919 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 a4e3832904..3b92bebcce 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 0000000000..eacc22af16 --- /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 0000000000..79497938ef --- /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 0000000000..85dc08a6ce --- /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 0000000000..6cc7ffe3e1 --- /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 0000000000..75d475c485 --- /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 0000000000..0df0166dc8 --- /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 0000000000..0fbdc2c22a --- /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 0000000000..f5115138fc --- /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 0000000000..3029c44d88 --- /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 0000000000..f13251011b --- /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 0000000000..e3c12d518c --- /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 d27ed545d6..16e53892b8 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 5aaa8ff5dc..df36a475ca 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 b654e238ac..08ac377c07 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 766cac335e..ba05cf01fb 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 ca776f7ede..53dbcfcf82 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 78f3b6a114..240293f936 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 de745e7cda..de3aa80787 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 a7caeb4019..4c9a205b7b 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 fe90076c0d..0b74295437 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 268fdc806b..b4625092d3 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 6ea1ff1cdb..5926fde25b 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 90f2c187f2..30ed5e7f45 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 32fec75418..3daadc82e1 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 f20b90fcd2..c2845ec7a5 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 68a772c1cb..2e8afc0dbc 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 cc9dff4f5d..e7a8c333fd 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 352b90b2cf..7cee7a2d71 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 91bc2bece8..d97bda300d 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 471f29b8a0..7cf5b2bf1c 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 61ce5eaac6..91044ece8b 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 1134976fb2..9d060609c6 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 1e86832a9e..23ae3177db 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 bb41b4f03b..dcd044d0b5 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 14344bc7b1..2ae224c632 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 16a7061e93..c04fc90ee2 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 721016886e..07050c277c 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 7f52a39aed..e12cf5bd9a 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 aeb2e20036..690afb7856 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 90ddc87e52..ccdc20247b 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 e236d0b96d..dc0cd36afe 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 b6c1fd256b..1dd7f065f0 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 334316ca9e..40e5e22c87 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 c6fd33cd86..c82b3cafbe 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 1f0d5fdcec..83e2dc3b62 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 758f1024ad..808e4ef74f 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 81a43116f9..836a65c92a 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 3250550af8..422d04ec0d 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 bbccd0908e..797a098e3a 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 e028df6bb6..911131ea81 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 5a138f0da1..f1d3cad48f 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 7486794d9d..10a4321b52 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 78711d7f98..7687611cb1 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 cad1b261fb..f006da74b9 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 5997b64962..7e81ca1b00 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 f5726070dd..01175efd2a 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 caf5ea8071..aa87563e83 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 502322ad15..2b4fbff486 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 d2c3ce4ab9..767e8da8b5 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 bbc3027bfc..8e28c9a655 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 f16b1d2870..119af666fc 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 978827d9d5..1a904629e8 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 5a16422984..267d952cac 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 83464ec111..4bd3ca6c6a 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 874c40d0d4..196546196f 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 09a7f945ab..cde39796c9 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 a2dc9cb668..cc4a62b68d 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 e513ed6934..193204b8c2 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 7839bd4996..80e4b68f99 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 2070e8c715..f91b4635d8 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 41af2ccd47..198d901917 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 5a7b24997c..761cc4181c 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 ed9d8a2cc5..465201029d 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 1c1bdbf62b..904a9c1fab 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 cc5099c80a..be6045fb23 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 0d0c691cf7..110b3e10c6 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 954685a032..42057bd33a 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 37aa013a6f..47568fd0f8 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 eee6695972..92b8b8c385 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 1acfafd169..21b936379d 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 8f19872d14..b2feb59e74 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 8cf13b0b0d..6109e27e98 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 40cd13bd6d..27d4c0d4a7 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 fcf502a7a8..8317de9115 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 42cbfba8d3..92864f101c 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 df6247cd5d..71cca1d2e0 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 a58e08ae69..2643e15d35 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 da54354cf9..58546f1fb7 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 da079b0afb..8caab377b9 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 e670589dd7..3a893d0ed2 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 0000000000..17dbc1170a --- /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 0000000000..010013ec49 --- /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 0000000000..8d6649ddda --- /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 0000000000..180822df4a --- /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 0000000000..9fedbf7af1 --- /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 0000000000..be9965732a --- /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 0000000000..adf7b45d3e --- /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 0000000000..9f4e998e7f --- /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 0000000000..7cba8a701d --- /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 0000000000..2371aadaeb --- /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 0000000000..c09af40c57 --- /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 2f9ec267e3..daac560faa 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 ea64bec0b7..5dc273c6b7 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 740792ba4c..75a4a0c4af 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 5f8d728426..5a41e12453 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 26a5f9246e..0d2fc8f5d5 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 43493a88ca..4c39375aee 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 4d28ccc174..6932d89f8b 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 06500e88a3..b8de7e931f 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 305363b858..3f62db2a42 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 4635426b59..e006b5932a 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 aea34c2568..e07f5422ac 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 4edf0855c4..7ffaec0adf 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 5a431dd644..bde5eb1e70 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 074b556700..1e9fab49ec 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 fb37ca57ae..a2dfeb1d55 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 90f2e4597e..6861a984e0 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 9f3faff144..b513e1ed08 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 9fbc64a840..5550ed99dd 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 15de395bd8..23e35f07f3 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 bb825706df..74e585ae93 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 20f6eaa8db..fc5ab544f5 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 7d109240d0..39c0ec79a2 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 a9b5d68e76..f6d739d99c 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 b5d1295fd9..51f1031947 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 6ddccd56f8..2bd3a56010 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 ffaf5f23ca..f99f0580f3 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 822acd25a9..4c8f0dee36 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 f168578c57..e251fa3611 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 8cce143dc2..5a72ebdb02 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 8de5b111cf..50adfe578c 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 648e46df30..93b4795b34 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 66bc16b25d..87f72df86c 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 0de88d8e9f..be84d37441 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 8d19c156bd..2837bbbb4c 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 0177e68a32..24cfbb7f96 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 a4759a0e92..cc0208d7cd 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 bde8baeea2..6b639db57e 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 37d6774cb7..403a8918af 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 fca384c25d..ebd63b4cd6 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 19a0957268..aa3ecec450 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 152d585a7a..27973e1d23 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 1c69513cbd..5bf21b613f 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 b6b1af47d5..622bfea68c 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 1baf1bc601..37579bfed8 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 92279c7d0a..b0f9ae1e7f 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 25da5a7a43..1ef7dec262 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 9592e53fa5..fef8f05962 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 f8940d0e55..f61634c130 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 30a03fb0c3..f4403d00eb 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 98b0514191..24be2d824a 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 970eadbc86..720dcd043e 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 a209336d3d..8d75f9248c 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 fec52335de..de631e3a6e 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 449f689dc9..feb3e9d1eb 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 d52d4ae389..2379dad798 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 e6f39fc39d..ed0af373d5 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 72d438e715..65348532a4 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 6caf66c53b..76ac5cd2ac 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 91d7cf7c70..fecc3ec62b 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 01efcb33fa..c3cda0fa89 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 224946f78b..b1a00a41e4 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:275 +msgid "Weak password" +msgstr "Slabé heslo" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "Priemerné heslo" + +#: js/personal.js:277 +msgid "Good password" +msgstr "Dobré heslo" #: js/personal.js:278 -msgid "Weak password" -msgstr "" - -#: js/personal.js:279 -msgid "So-so password" -msgstr "" - -#: js/personal.js:280 -msgid "Good password" -msgstr "" - -#: js/personal.js:281 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 2359384c65..38484ed97b 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 e3285d025c..ed2f640c38 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 222415e4d0..ecfe45ca6b 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 adf1767891..776c5cef95 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 b8ed2aa551..963d74c361 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 0b51c7f639..4c5eb4cf73 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 d39190908f..3e050f4494 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 19ec071703..f10dd683cd 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 bfe386afdc..ff6b66a5c7 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 a30711bcf7..ac15217b14 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 aa4721f182..b7878fb831 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 94929d6693..02ab3d0821 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 82b52acf7d..09ceeb1a4b 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 69c0afe6ac..4670128c67 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 578d7e4aa0..3dffd9f58a 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 18b304ba11..9ac011d35d 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 7095ac9958..4e168a7dcc 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 7387068662..01416c7db5 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 d7bc4f0318..515b88f350 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 dc2a86bb6c..e20208b113 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 525b817c1a..a74152007a 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 bddf4926cc..49f422a52b 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 e6f5ae7a53..18a1c4f947 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 f694d95e78..1921e80d18 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 5a0e62b6fd..2c3b8e0b23 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 6a7d094174..b409159486 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 0bb735ef27..1b8acf89a6 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 837b1f9161..1f1e3b0d7a 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 631b8a0d73..d2de043e5c 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 7004cf562d..8f3d9e5a09 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 c0c22d8130..58dd8f57b3 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 cea1f81421..fbdd17bf42 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 1e29595c3f..1dd27e0b07 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 9853fc1dab..583c77a58d 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 33a02856eb..90ef7866c0 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 5188ffa1f4..528cc7ed88 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 f4b3363e22..33f053cd3f 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 a8ad67283d..ca775aa5dc 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 4ac58f5836..31a16bcc3d 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 31bbc3a69d..8f27337174 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 0e0f846c7f..189454a8bb 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 4a075757d6..ccec776d8f 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 52d4b1c41d..5cac65d044 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 dd41da4e86..b00e1bcc89 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 9210c2d915..7fcccee2a1 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 7b8fa16a1d..6685162cdf 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 e93eae4a9d..33dee47c29 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 48a4e5f7c7..e2374b5821 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 0874d51ffb..04ba1f8caa 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 0345cacc60..7f2eab3c3e 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 79cecd9f5e..d58c0a99e5 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 2b6ff7ae0d..a3f0d6b64e 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 67182c3f7e..96105f465a 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 9595c3fa22..c149394969 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 f025e58cce..8f76848a29 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 0000000000..1e4f406b85 --- /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 0000000000..15f78e0bce --- /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 0000000000..6b01085c49 --- /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 0000000000..60f6d24594 --- /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 e613b5b04c..af49e8e95d 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ť", 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 131/137] 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 68367034e9..43a9ca625e 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() { From 35ab6fe5a95988ef55fafdd3f94d759d602833ef Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Tue, 8 Apr 2014 17:13:59 +0200 Subject: [PATCH 132/137] 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 615cf8bdd0..b6c61c9b1c 100644 --- a/apps/files_trashbin/templates/index.php +++ b/apps/files_trashbin/templates/index.php @@ -6,6 +6,7 @@ + From a4f42676ea1741262db9380bab63c946c011a7ef Mon Sep 17 00:00:00 2001 From: Volkan Gezer Date: Tue, 8 Apr 2014 20:07:25 +0200 Subject: [PATCH 133/137] 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 8583a451f2..a2ad9d1770 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)); From 796f71954847681f85038c8c27b178dc8f2e0895 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Wed, 9 Apr 2014 01:56:49 -0400 Subject: [PATCH 134/137] [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 | 39 +++++++---- l10n/ach/lib.po | 58 ++++++++++------ l10n/ady/files_external.po | 39 +++++++---- l10n/ady/lib.po | 58 ++++++++++------ l10n/af/files_external.po | 39 +++++++---- l10n/af/lib.po | 58 ++++++++++------ l10n/af_ZA/files_external.po | 39 +++++++---- l10n/af_ZA/lib.po | 58 ++++++++++------ l10n/ak/files_external.po | 39 +++++++---- l10n/ak/lib.po | 58 ++++++++++------ l10n/am_ET/files_external.po | 39 +++++++---- l10n/am_ET/lib.po | 36 +++++++--- l10n/ar/files_external.po | 39 +++++++---- 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 | 43 +++++++----- 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 | 39 +++++++---- l10n/az/lib.po | 64 +++++++++++------ l10n/be/files_external.po | 39 +++++++---- l10n/be/lib.po | 58 ++++++++++------ l10n/bg_BG/files_external.po | 39 +++++++---- l10n/bg_BG/lib.po | 58 ++++++++++------ l10n/bn_BD/files_external.po | 39 +++++++---- l10n/bn_BD/lib.po | 58 ++++++++++------ l10n/bs/files_external.po | 39 +++++++---- l10n/bs/lib.po | 58 ++++++++++------ l10n/ca/core.po | 6 +- l10n/ca/files_external.po | 45 +++++++----- l10n/ca/lib.po | 42 ++++++++---- l10n/cs_CZ/core.po | 6 +- l10n/cs_CZ/files_external.po | 45 +++++++----- l10n/cs_CZ/lib.po | 38 +++++++--- l10n/cy_GB/files_external.po | 39 +++++++---- l10n/cy_GB/lib.po | 58 ++++++++++------ l10n/da/core.po | 6 +- l10n/da/files_external.po | 45 +++++++----- l10n/da/lib.po | 38 +++++++--- l10n/de/core.po | 6 +- l10n/de/files_external.po | 47 ++++++++----- l10n/de/lib.po | 60 ++++++++++------ l10n/de_AT/files_external.po | 39 +++++++---- l10n/de_AT/lib.po | 58 ++++++++++------ l10n/de_CH/core.po | 6 +- l10n/de_CH/files_external.po | 45 +++++++----- l10n/de_CH/lib.po | 60 ++++++++++------ l10n/de_DE/core.po | 6 +- l10n/de_DE/files_external.po | 47 ++++++++----- l10n/de_DE/lib.po | 60 ++++++++++------ l10n/el/core.po | 6 +- l10n/el/files_external.po | 45 +++++++----- l10n/el/lib.po | 28 ++++++-- l10n/en@pirate/files_external.po | 39 +++++++---- l10n/en@pirate/lib.po | 58 ++++++++++------ l10n/en_GB/core.po | 10 +-- l10n/en_GB/files_external.po | 47 ++++++++----- l10n/en_GB/lib.po | 42 ++++++++---- l10n/en_GB/user_ldap.po | 10 +-- l10n/eo/core.po | 6 +- l10n/eo/files_external.po | 39 +++++++---- l10n/eo/lib.po | 58 ++++++++++------ l10n/es/core.po | 10 +-- l10n/es/files_external.po | 47 ++++++++----- l10n/es/lib.po | 60 ++++++++++------ l10n/es_AR/core.po | 6 +- l10n/es_AR/files_external.po | 45 +++++++----- l10n/es_AR/lib.po | 58 ++++++++++------ l10n/es_CL/files_external.po | 39 +++++++---- l10n/es_CL/lib.po | 58 ++++++++++------ l10n/es_MX/files_external.po | 45 +++++++----- l10n/es_MX/lib.po | 58 ++++++++++------ l10n/et_EE/core.po | 6 +- l10n/et_EE/files_external.po | 47 ++++++++----- l10n/et_EE/lib.po | 28 ++++++-- l10n/eu/core.po | 6 +- l10n/eu/files_external.po | 45 +++++++----- l10n/eu/lib.po | 58 ++++++++++------ l10n/eu_ES/files_external.po | 39 +++++++---- l10n/eu_ES/lib.po | 58 ++++++++++------ l10n/fa/core.po | 6 +- l10n/fa/files_external.po | 45 +++++++----- l10n/fa/lib.po | 58 ++++++++++------ l10n/fi_FI/core.po | 14 ++-- l10n/fi_FI/files_external.po | 47 ++++++++----- l10n/fi_FI/lib.po | 60 ++++++++++------ l10n/fr/core.po | 6 +- l10n/fr/files_external.po | 47 ++++++++----- l10n/fr/lib.po | 42 ++++++++---- l10n/fr_CA/files_external.po | 39 +++++++---- l10n/fr_CA/lib.po | 58 ++++++++++------ l10n/gl/core.po | 10 +-- l10n/gl/files_external.po | 47 ++++++++----- l10n/gl/lib.po | 42 ++++++++---- l10n/gl/user_ldap.po | 10 +-- l10n/he/core.po | 6 +- l10n/he/files_external.po | 39 +++++++---- l10n/he/lib.po | 58 ++++++++++------ l10n/hi/files_external.po | 39 +++++++---- l10n/hi/lib.po | 58 ++++++++++------ l10n/hr/files_external.po | 39 +++++++---- l10n/hr/lib.po | 58 ++++++++++------ l10n/hu_HU/core.po | 6 +- l10n/hu_HU/files_external.po | 45 +++++++----- l10n/hu_HU/lib.po | 58 ++++++++++------ l10n/hy/files_external.po | 39 +++++++---- l10n/hy/lib.po | 58 ++++++++++------ l10n/ia/files_external.po | 39 +++++++---- l10n/ia/lib.po | 58 ++++++++++------ l10n/id/files_external.po | 43 +++++++----- l10n/id/lib.po | 58 ++++++++++------ l10n/is/files_external.po | 43 +++++++----- l10n/is/lib.po | 58 ++++++++++------ l10n/it/core.po | 6 +- l10n/it/files_external.po | 47 ++++++++----- l10n/it/lib.po | 60 ++++++++++------ l10n/ja/core.po | 6 +- l10n/ja/files_external.po | 47 ++++++++----- l10n/ja/lib.po | 42 ++++++++---- l10n/jv/files_external.po | 39 +++++++---- l10n/jv/lib.po | 22 +++++- l10n/ka_GE/core.po | 6 +- l10n/ka_GE/files_external.po | 45 +++++++----- l10n/ka_GE/lib.po | 58 ++++++++++------ l10n/km/files_external.po | 39 +++++++---- l10n/km/lib.po | 58 ++++++++++------ l10n/kn/files_external.po | 39 +++++++---- l10n/kn/lib.po | 58 ++++++++++------ l10n/ko/files_external.po | 45 +++++++----- l10n/ko/lib.po | 58 ++++++++++------ l10n/ku_IQ/files_external.po | 39 +++++++---- l10n/ku_IQ/lib.po | 58 ++++++++++------ l10n/lb/files_external.po | 39 +++++++---- l10n/lb/lib.po | 58 ++++++++++------ l10n/lt_LT/files_external.po | 45 +++++++----- l10n/lt_LT/lib.po | 58 ++++++++++------ l10n/lv/core.po | 6 +- l10n/lv/files_external.po | 45 +++++++----- l10n/lv/lib.po | 58 ++++++++++------ l10n/mk/files_external.po | 43 +++++++----- l10n/mk/lib.po | 58 ++++++++++------ l10n/ml/files_external.po | 39 +++++++---- l10n/ml/lib.po | 58 ++++++++++------ l10n/ml_IN/files_external.po | 39 +++++++---- l10n/ml_IN/lib.po | 58 ++++++++++------ l10n/mn/files_external.po | 39 +++++++---- l10n/mn/lib.po | 58 ++++++++++------ l10n/ms_MY/files_external.po | 39 +++++++---- l10n/ms_MY/lib.po | 58 ++++++++++------ l10n/my_MM/files_external.po | 39 +++++++---- l10n/my_MM/lib.po | 58 ++++++++++------ l10n/nb_NO/files_external.po | 45 +++++++----- l10n/nb_NO/lib.po | 58 ++++++++++------ l10n/nds/files_external.po | 39 +++++++---- l10n/nds/lib.po | 58 ++++++++++------ l10n/ne/files_external.po | 39 +++++++---- l10n/ne/lib.po | 58 ++++++++++------ l10n/nl/core.po | 10 +-- l10n/nl/files_external.po | 47 ++++++++----- l10n/nl/lib.po | 60 ++++++++++------ l10n/nl/user_ldap.po | 10 +-- l10n/nn_NO/files_external.po | 39 +++++++---- l10n/nn_NO/lib.po | 58 ++++++++++------ l10n/nqo/files_external.po | 39 +++++++---- l10n/nqo/lib.po | 58 ++++++++++------ l10n/oc/files_external.po | 39 +++++++---- l10n/oc/lib.po | 58 ++++++++++------ l10n/pa/files_external.po | 39 +++++++---- l10n/pa/lib.po | 58 ++++++++++------ l10n/pl/core.po | 10 +-- l10n/pl/files_external.po | 47 ++++++++----- l10n/pl/lib.po | 42 ++++++++---- l10n/pl/user_ldap.po | 10 +-- l10n/pt_BR/core.po | 10 +-- l10n/pt_BR/files_external.po | 47 ++++++++----- 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 | 45 +++++++----- l10n/pt_PT/lib.po | 42 ++++++++---- l10n/ro/files_external.po | 45 +++++++----- l10n/ro/lib.po | 58 ++++++++++------ l10n/ru/core.po | 6 +- l10n/ru/files_external.po | 45 +++++++----- l10n/ru/lib.po | 58 ++++++++++------ l10n/si_LK/files_external.po | 39 +++++++---- l10n/si_LK/lib.po | 58 ++++++++++------ l10n/sk/files_external.po | 39 +++++++---- l10n/sk/lib.po | 58 ++++++++++------ l10n/sk_SK/core.po | 6 +- l10n/sk_SK/files_external.po | 45 +++++++----- l10n/sk_SK/lib.po | 28 ++++++-- l10n/sk_SK/settings.po | 18 ++--- l10n/sl/core.po | 6 +- l10n/sl/files_external.po | 47 ++++++++----- l10n/sl/lib.po | 42 ++++++++---- l10n/sq/files_external.po | 39 +++++++---- l10n/sq/lib.po | 58 ++++++++++------ l10n/sr/files_external.po | 39 +++++++---- l10n/sr/lib.po | 58 ++++++++++------ l10n/sr@latin/files_external.po | 39 +++++++---- l10n/sr@latin/lib.po | 58 ++++++++++------ l10n/su/files_external.po | 39 +++++++---- l10n/su/lib.po | 58 ++++++++++------ l10n/sv/core.po | 10 +-- l10n/sv/files_external.po | 47 ++++++++----- l10n/sv/lib.po | 24 ++++++- l10n/sv/user_ldap.po | 10 +-- l10n/sw_KE/files_external.po | 39 +++++++---- l10n/sw_KE/lib.po | 58 ++++++++++------ l10n/ta_LK/files_external.po | 39 +++++++---- l10n/ta_LK/lib.po | 58 ++++++++++------ l10n/te/files_external.po | 39 +++++++---- 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 | 37 ++++++---- 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 | 43 +++++++----- l10n/th_TH/lib.po | 58 ++++++++++------ l10n/tr/core.po | 10 +-- l10n/tr/files_external.po | 47 ++++++++----- l10n/tr/lib.po | 24 ++++++- l10n/tr/settings.po | 18 ++--- l10n/tr/user_ldap.po | 10 +-- l10n/tzm/files_external.po | 39 +++++++---- l10n/tzm/lib.po | 58 ++++++++++------ l10n/ug/files_external.po | 39 +++++++---- l10n/ug/lib.po | 58 ++++++++++------ l10n/uk/core.po | 6 +- l10n/uk/files_external.po | 45 +++++++----- l10n/uk/lib.po | 58 ++++++++++------ l10n/ur/files_external.po | 39 +++++++---- l10n/ur/lib.po | 58 ++++++++++------ l10n/ur_PK/files_external.po | 39 +++++++---- l10n/ur_PK/lib.po | 58 ++++++++++------ l10n/uz/files_external.po | 39 +++++++---- l10n/uz/lib.po | 58 ++++++++++------ l10n/vi/core.po | 6 +- l10n/vi/files_external.po | 45 +++++++----- l10n/vi/lib.po | 58 ++++++++++------ l10n/zh_CN/core.po | 6 +- l10n/zh_CN/files_external.po | 45 +++++++----- l10n/zh_CN/lib.po | 58 ++++++++++------ l10n/zh_HK/files_external.po | 39 +++++++---- l10n/zh_HK/lib.po | 58 ++++++++++------ l10n/zh_TW/core.po | 6 +- l10n/zh_TW/files_external.po | 45 +++++++----- 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, 6674 insertions(+), 3887 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 ba7ccfad2d..3e1eb72265 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 0000000000..7e08e07309 --- /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 e304b890f9..9d4d891dda 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 94033f0c59..50b6f55231 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 279030ef1a..6a4e09aa3a 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 0d2b5f35d0..e0dea75303 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 4c3f563965..1d5a4f626b 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 33a5a4894a..554fca8de5 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 63198c9817..c2534f3dd8 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 43d0a79eac..16b837e24c 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 f0ebb629de..3160d51462 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 04537ecf56..0af20d939b 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 3518eba247..f184dbdb7d 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 4ce3eac986..dc0aef45c4 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 0ed0baa44f..0589d9fd51 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 caaf96516b..c2111a1f73 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 4b74443d40..74472c54bf 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 9f8dbd414f..1924478ad2 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 1a306113f4..80c1894009 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 3b5aaa53de..1117e8590c 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 9fed43e626..39d185d5f0 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 94fa89077a..8ab5069539 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 5a350bad4a..21a215807a 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 ea3e573818..b68bff2474 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 41deb100e5..52d66043e1 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 7412bb145b..d68dae88c0 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 87157e1f88..371cba3e12 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 abb43ab8ad..fdf1ee7013 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 1512ff0dc2..e1037b5032 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 ddce2d5c17..507c0a7455 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 d8149520ea..95c9b47f41 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 dceccc7ee5..0226e454f9 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 4a3dbaf206..801a72c9bf 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 5638fd1d70..121c45f45d 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 5bd2d0d43b..d0b70006ea 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 e6cdd8450e..3fc56c67d3 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 d4695c867a..f282f3969e 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 1f1a150b8a..de32fb5ffb 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 d02b8f499d..bb34494a5d 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 e2a4a0a806..ad5e6ad050 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 0a5a419c5e..e3653eb41f 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 426f652e3a..07bf1a2354 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 2f5767c9a1..533eba07eb 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 370bd71c31..787fc82832 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 3051df04d9..40d5158bf5 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 ae7d84b0ee..ac480e405f 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 0000000000..02a2f6fb62 --- /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 e304b890f9..d2cfafd679 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 0000000000..4869d70b54 --- /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 9cd0d7e7c6..e8e2d779d1 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 4421a8035c..b87c99c135 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 802c6d0e43..c352445389 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 55e4e07033..d1ffd4f00d 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 5c6d3d7022..69a94ec693 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 786bee4c8a..844024a953 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 fa844b799c..6a4ed0c720 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 fa829a7427..d654b4e241 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 0000000000..118fa2ce30 --- /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 57f7cdde79..9ae1685347 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 0a658d515d..214b2eac0e 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 ffe34f7828..c21d904b23 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 d3384dac43..c7bda6fd36 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 79edfb725d..4d8c583e16 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 42b8eb3bce..eb2cfd233d 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 a0877e792e..900d3c0317 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 0ffb746fc7..c899427ae3 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 bc36f5a444..215bae92d1 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 f264b7ed7a..05d28efb66 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 52f1a15089..cb2d09d60f 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 b5b37d4825..c9d270edef 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 e9c23d96b8..422caac9c1 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 33c98fb9b9..8fd554485d 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 3e7e246e82..a349d3b770 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 0af7503ee9..7797d17c87 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 f5a1ecd42f..2475eddee8 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 c1c678e7e3..eb9f1af565 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 4579626f12..8fb7373a14 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 e81991ec7a..096b28e2d9 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 2f0017263f..43e9752f5e 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 5f8d6a05ae..3a99f0e598 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 0070fd7994..a76a886654 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 505bf46b4c..683ff2c129 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 05cef6afd5..b09509e629 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 17fde36c7c..fe0cf14583 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 b31925cdf7..3545426b67 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 a4d6785cd5..bb1b6011a6 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 e2fdc36be0..aa784088f7 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 853118e7a6..1b717bc412 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 49eb4f9aa6..7476d9f9c7 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 7e72039df8..d46c204d7c 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 85a9b4ab23..9ee3c60f94 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 9d211bd057..7e75cdf4b0 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 ade29981b4..f6bcfdcdc8 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 be99580d94..319f68b635 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 e5a6a254e5..68f50baf98 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 dae143cef4..0799344697 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 7a2b8692df..5170057923 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 c338a1ca54..3e9a97a32f 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 98f9d7ffd0..777a46c36c 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 0a215aa358..07c60bce62 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 cb1a4ed756..847f55e6e0 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 9567765edb..c571917f3e 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 8ce2d53180..03a9505a52 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 6dcb6dbbdf..47d21e1c5b 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 ffc28dd644..84c7c7e404 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 2747783c02..1404a2e7a6 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 b7a5e55108..7b7292cc4f 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 0bec5cd684..2412812c9c 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 a12496b73e..345a782cd7 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 e86849ce2b..f5419aee95 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 eacc22af16..96ac7799a2 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 79497938ef..f3d8d88b2d 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 85dc08a6ce..61be80edef 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 6cc7ffe3e1..d330ac83e5 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 75d475c485..9154e9f56e 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 0df0166dc8..bab374d0cd 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 0fbdc2c22a..2fdf419af5 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 f5115138fc..fe01f80318 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 3029c44d88..adb96b40df 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 f13251011b..93779a6b29 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 e3c12d518c..2aa9fcebe5 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 9650db35a5..444bc71d9e 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 75015cb94c..7c931cb158 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 d1acf2670b..3df60f9dbb 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 d3648c9b69..3a42b36b15 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 89bf79299d..f748e7dfd7 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 602638fe77..2f128367a9 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 efd9a845ce..ac322b9942 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 dc14b1ce4b..df86a5c8f8 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 9ec2438dd5..fbe15ff86f 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 ddf2e1f969..9b1d2f5cc7 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 5926fde25b..17d16afe76 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 61d5ecf694..66fb2423fb 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 -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." +#: lib/config.php:592 +msgid "Note: " +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 "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." +#: lib/config.php:602 +msgid " and " +msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 be84319073..348b20d7af 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 3daadc82e1..b57e1632d7 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 b07a223d18..05a39f7eb8 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 -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." +#: lib/config.php:592 +msgid "Note: " +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 "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." +#: lib/config.php:602 +msgid " and " +msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 c1edc97637..f613429e0b 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 c44cde13ff..855d4d6f82 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 60f778e312..f58729ece0 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 7cee7a2d71..6a57c445c8 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 c6be8d84f0..4a0d6ece90 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 -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." +#: lib/config.php:592 +msgid "Note: " +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 " 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." +#: lib/config.php:602 +msgid " and " +msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 b0a5605312..94ac0b43f3 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 7cf5b2bf1c..ba8d5f905b 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 5357def2ba..f827364176 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 -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." +#: lib/config.php:592 +msgid "Note: " +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 "Warnung:: Die FTP Unterstützung von PHP ist nicht aktiviert oder installiert. Bitte wende Dich an Deinen Systemadministrator." +#: lib/config.php:602 +msgid " and " +msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 70f1e16ede..811013a102 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 e004446e67..f838de9ba6 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 535f8b9b15..bc182373db 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 dcd044d0b5..a64e658ce1 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 85ed7c7d1b..e1ca4b4cb2 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 -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." +#: lib/config.php:592 +msgid "Note: " +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 "Warnung:: Die FTP Unterstützung von PHP ist nicht aktiviert oder installiert. Bitte wenden Sie sich an Ihren Systemadministrator." +#: lib/config.php:602 +msgid " and " +msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 0694cb8609..ec7ff99968 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 c04fc90ee2..dc0425ed00 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 799f68c1df..d18946d9c2 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 -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." +#: lib/config.php:592 +msgid "Note: " +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 "Warnung:: Die FTP Unterstützung von PHP ist nicht aktiviert oder installiert. Bitte wenden Sie sich an Ihren Systemadministrator." +#: lib/config.php:602 +msgid " and " +msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 9bd58decbd..a6321e11a8 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 e12cf5bd9a..cc9851ee84 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 d5fdc2c7e8..8ffa802692 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 -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:592 +msgid "Note: " +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 "Προσοχή: Η υποστήριξη FTP στην PHP δεν ενεργοποιήθηκε ή εγκαταστάθηκε. Δεν είναι δυνατή η προσάρτηση FTP. Παρακαλώ ενημερώστε τον διαχειριστή συστήματος να το εγκαταστήσει." +#: lib/config.php:602 +msgid " and " +msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 3428c9dade..80a7f0699a 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 054964abe0..b4caece8b5 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 de836bfdfb..ac875a524d 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 1dd7f065f0..bb299a375b 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 f4245bb4ce..83c6537a62 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 -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." +#: lib/config.php:592 +msgid "Note: " +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 "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." +#: lib/config.php:602 +msgid " and " +msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 9eb29ced3e..d65f8d73bd 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 40e5e22c87..005aa3ceba 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 c82b3cafbe..36bf5f5ca7 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 f9856c4122..b92b2672f9 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 61481d103b..ac9e0fc8f4 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 808e4ef74f..4aad3e3b44 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 15440edc23..097fda073b 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 -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." +#: lib/config.php:592 +msgid "Note: " +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 "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." +#: lib/config.php:602 +msgid " and " +msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 994e3b4d6e..b5958c392d 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 422d04ec0d..ad7d518ec1 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 1658116345..84191efc64 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 -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." +#: lib/config.php:592 +msgid "Note: " +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 "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." +#: lib/config.php:602 +msgid " and " +msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 338ad790c0..af7dd38bda 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 df72d21703..556ec2e34c 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 30b584c236..ab7e0025c7 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 654db481ca..85a74353c1 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 -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." +#: lib/config.php:592 +msgid "Note: " +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 "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." +#: lib/config.php:602 +msgid " and " +msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 239fda1a7e..30dd734868 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 f006da74b9..686bc7973e 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 7e81ca1b00..094d7f16ab 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 -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." +#: lib/config.php:592 +msgid "Note: " +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 "Hoiatus: PHP-s puudub FTP tugi. Jagatud FTP hoidlate ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata FTP tugi." +#: lib/config.php:602 +msgid " and " +msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 b2b36c1944..22ad38b16d 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 aa87563e83..bbfc2bbca1 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 1a98ee665b..5d1aca4683 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 -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." +#: lib/config.php:592 +msgid "Note: " +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 "Abisua: PHPren FTP modulua ez dago instalatuta edo gaitua. FTP partekatutako karpetak montatzea ez da posible. Mesedez eskatu zure sistema kudeatzaileari instalatzea." +#: lib/config.php:602 +msgid " and " +msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 cb55fbd589..46c2edf7e3 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 2817e15f6d..dbc51914a5 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 f24e2561ea..73af4f395d 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 119af666fc..c90f3f0654 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 da40a9ffa6..f5d47a1067 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 -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:592 +msgid "Note: " +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 "خطا: پشتیبانی FTP در PHP فعال نمی باشد یا نصب نشده است. نصب و راه اندازی از سهم های FTP امکان پذیر نمی باشد. لطفا از مدیر سیستم خود برای راه اندازی آن درخواست\nکنید." +#: lib/config.php:602 +msgid " and " +msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 fa7f91fd3c..98fd26210e 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 267d952cac..bca5b27b15 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 50537fbfe7..5e012a3cfc 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 -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." +#: lib/config.php:592 +msgid "Note: " +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 "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." +#: lib/config.php:602 +msgid " and " +msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 3091572a28..ea6a7b590d 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 196546196f..db845b7f25 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 76f1bf6e84..472e1beb37 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 -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." +#: lib/config.php:592 +msgid "Note: " +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 "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." +#: lib/config.php:602 +msgid " and " +msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 32cac2cbdb..9dcc450565 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 bb31737a2e..04acd06d67 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 5ecda61550..e00186eb0c 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 80e4b68f99..5d2b05c829 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 85c08c4d88..e8c8bbb032 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 -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." +#: lib/config.php:592 +msgid "Note: " +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 "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." +#: lib/config.php:602 +msgid " and " +msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 d923ae3966..3f4820e8bb 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 f91b4635d8..f9723ef227 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 198d901917..0179be12db 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 ddda3471e5..8b8cb74a27 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 c019c598f3..0773676f70 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 538fe49c83..3f24d3235b 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 a0e8492a73..955a511e0f 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 b657791539..9dab6b27fd 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 e9e53e4718..27e9309543 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 42057bd33a..d9b058d941 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 94eac12f85..3ef34c0ef5 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 -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." +#: lib/config.php:592 +msgid "Note: " +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 "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." +#: lib/config.php:602 +msgid " and " +msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 875d728f20..5cae103f6d 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 7bcbeba734..5d5b3cfe32 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 b81e6dd42c..d62bc683e0 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 8e6fad27ca..6397e61090 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 9304e0a841..c6eea0497d 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 3ac07bace7..e93bf83ccc 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 -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." +#: lib/config.php:592 +msgid "Note: " +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 "Peringatan: Dukungan FTP di PHP tidak aktif atau tidak terpasang. Mount direktori FTP tidak dapat dilakukan. Silakan minta administrator sistem untuk memasangnya." +#: lib/config.php:602 +msgid " and " +msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 77fcdde6fc..9692c6033b 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 77acf36be5..5824e83788 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 -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." +#: lib/config.php:592 +msgid "Note: " +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 "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." +#: lib/config.php:602 +msgid " and " +msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 bbb36d9067..24dba8ecb2 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 2643e15d35..6c9c54add5 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 7b6a0f1869..10ab9a85d7 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 -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." +#: lib/config.php:592 +msgid "Note: " +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 "Avviso: il supporto FTP di PHP non è abilitato o non è installato. Impossibile montare condivisioni FTP. Chiedi all'amministratore di sistema di installarlo." +#: lib/config.php:602 +msgid " and " +msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 5675eee56a..5688fe306c 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 8caab377b9..66014893c6 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 4c071d8bff..dbce411329 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 -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:592 +msgid "Note: " +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 "警告: PHPのFTPサポートが無効またはインストールされていません。FTP共有のマウントはできません。システム管理者にインストールを依頼してください。" +#: lib/config.php:602 +msgid " and " +msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 07ec088145..b8fdbca0bf 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 180822df4a..86d3c6e3eb 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 9f4e998e7f..da7f24790c 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 daac560faa..734a0cd8b5 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 fbdafbd0c7..5bb8ccc954 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 -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:592 +msgid "Note: " +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 "გაფრთხილება: FTP მხარდაჭერა არ არის აქტიური ან დაინსტალირებული. FTP ზიარის მონტირება შეუძლებელია. გთხოვთ თხოვოთ თქვენს სისტემურ ადმინისტრატორებს დააინსტალიროს ის." +#: lib/config.php:602 +msgid " and " +msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 775fa57d28..a161500da5 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 ccb2b335ee..3b8216e3de 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 a9404549af..354848af61 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 37d4996225..9d3bc47614 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 01945d87b2..f54ae77bc8 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 25627c2645..f49c86091e 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 -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:592 +msgid "Note: " +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 "경고: PHP FTP 지원이 비활성화되어 있거나 설치되지 않았습니다. FTP 공유를 마운트할 수 없습니다. 시스템 관리자에게 설치를 요청하십시오." +#: lib/config.php:602 +msgid " and " +msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 c1cc5c2331..baba62b8b7 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 a82954cda7..a7bfce656a 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 898c855015..eab0771ad8 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 c0982f45a9..36504b273f 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 1bec6207b7..403353e5be 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 d3494e5e92..32c73989f7 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 -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\"" +#: lib/config.php:592 +msgid "Note: " +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 "Į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. " +#: lib/config.php:602 +msgid " and " +msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 a3d06e1c28..94c3515831 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 a2dfeb1d55..89c1ba7879 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 ce94ed49e8..46000f211f 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 -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ē." +#: lib/config.php:592 +msgid "Note: " +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 "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ē." +#: lib/config.php:602 +msgid " and " +msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 6e2a1e8b9c..455b5fbf79 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 9355e9e35f..c8506cdd94 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 -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:592 +msgid "Note: " +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 "Внимание: Не е овозможена или инсталирани FTP подршка во PHP. Не е можно монтирање на FTP дискови. Замолете го Вашиот систем администратор да го инсталира." +#: lib/config.php:602 +msgid " and " +msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 fca0fe3c0d..28ea982580 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 e3b6b4cf73..30d269647a 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 47b765276d..7d8386a485 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 fe274c2a10..e8334604a6 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 21021fc720..ad9148fab3 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 2801829232..7547f3512d 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 46cbf163ac..24f3d3b50d 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 1d63e16526..0495b5d172 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 3987ff503e..0d63f98d96 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 57af747f8b..ba5148a574 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 93cefaec22..69bc9a0a97 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 67c39a3b2f..7e1d6afab9 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 -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." +#: lib/config.php:592 +msgid "Note: " +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 "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." +#: lib/config.php:602 +msgid " and " +msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 cddd41ceea..d4f40165bc 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 1317beb370..05dd53ee1c 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 f44dacaa1c..7f0a19e84b 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 5003db3d1b..7e38ed50b9 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 92e6df5e03..e310cb1d41 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 24cfbb7f96..0432350323 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 890ec55720..8d2871bf58 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 -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." +#: lib/config.php:592 +msgid "Note: " +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 "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." +#: lib/config.php:602 +msgid " and " +msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 ac43d30ef8..117e252b26 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 cc0208d7cd..9a66b674e9 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 7c36123981..b759063902 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 c38e2360ed..bc43bde4c0 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 28fd3bb27f..12b0618ce1 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 27ffc71bf3..0571ed36a4 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 4c2245b887..3814886f94 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 a753c84793..7883c2348c 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 2e597bdc99..48a189abb1 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 3977deb38b..cc8806e357 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 b0f9ae1e7f..b59c87df67 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 b7e402d12a..75ad91e082 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 -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." +#: lib/config.php:592 +msgid "Note: " +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 "Ostrzeżenie: Wsparcie dla FTP w PHP nie jest zainstalowane lub włączone. Skontaktuj sie z administratorem w celu zainstalowania lub włączenia go." +#: lib/config.php:602 +msgid " and " +msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 801c5b51c9..9ae2481a2d 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 1ef7dec262..498a323e54 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 fef8f05962..a48b9dd777 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 2c968ce598..ef0179cf11 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 -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." +#: lib/config.php:592 +msgid "Note: " +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 "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." +#: lib/config.php:602 +msgid " and " +msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 933f86576a..6dc1cf3a5b 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 f61634c130..a50f34a347 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 f4403d00eb..1d50e0c83c 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 d465a9a299..d46f758eef 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 -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." +#: lib/config.php:592 +msgid "Note: " +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 "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." +#: lib/config.php:602 +msgid " and " +msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 d042b9424c..e62af4ccc4 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 295b3572c4..137e05d929 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 -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." +#: lib/config.php:592 +msgid "Note: " +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 "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." +#: lib/config.php:602 +msgid " and " +msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 f53e445c72..442afc592d 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 de631e3a6e..b201c601b0 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 2779b06cd5..d3611c51cc 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 -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:592 +msgid "Note: " +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 "Внимание: Поддержка FTP не включена в PHP. Подключение по FTP невозможно. Пожалуйста, обратитесь к системному администратору, чтобы включить." +#: lib/config.php:602 +msgid " and " +msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 f2f68e4ca1..f9f03c5f43 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 6f76a09b3f..471f857964 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 8699aa3e99..5307a86f2f 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 6030e4f8a0..55edeaf358 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 0e98417ded..56224c08da 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 fecc3ec62b..87b17aa9d8 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 b281580a65..0a04a512b6 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 -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:592 +msgid "Note: " +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 "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:602 +msgid " and " +msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 a7df661ab0..434ad7c1f4 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 b1a00a41e4..d021ae1377 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 ed2f640c38..c0887239b2 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 e9332610e1..46ee2ccbc1 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 -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." +#: lib/config.php:592 +msgid "Note: " +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 "Opozorilo: podpora FTP v PHP ni omogočena ali pa ni nameščena. Priklapljanje pogonov FTP zato ne bo mogoče." +#: lib/config.php:602 +msgid " and " +msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 b5a1d0e092..5a7ab52c3f 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 b379c20c94..27f4c28f01 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 9588cd4785..a52513d249 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 6b6480105d..ac5a5f2331 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 d2832922e6..1f49ce77b3 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 a227f05728..036e65f4a2 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 9e437d4e7f..0f3d0d7a09 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 d370964f34..206f00c67e 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 15649f4f65..9d0019b5f5 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 02ab3d0821..affc664f21 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 9b16af0431..a39d6384c3 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 -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." +#: lib/config.php:592 +msgid "Note: " +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 "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." +#: lib/config.php:602 +msgid " and " +msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 6ce09feeb1..2934570091 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 09ceeb1a4b..dc65893d02 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 f9f8a9fd4f..aa643c7a40 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 09812f7f63..b607d2dedb 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 ef329183d1..d0f415fd5c 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 fbe3d5f915..96e0bc2c2a 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 9be6a7bbae..90e1578bd1 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 f1cbfbcfc2..9428875f4e 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 e20208b113..b365936e9e 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 a74152007a..97b53b761c 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 49f422a52b..5420e3eeda 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 18a1c4f947..9d84c3a33b 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 1921e80d18..c21dcd2304 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 2c3b8e0b23..011aa05303 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 b409159486..26903a761f 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 1b8acf89a6..fb1b7a7289 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 1f1e3b0d7a..a405235f32 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 d2de043e5c..6ecfbc8c50 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 8f3d9e5a09..1204e2bb4c 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 58dd8f57b3..c101203329 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 fbdd17bf42..3ff654362b 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 ac2c87850a..5a4178fb5c 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 -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:592 +msgid "Note: " +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 "คำเตือน: การสนับสนุนการใช้งาน FTP ในภาษา PHP ยังไม่ได้ถูกเปิดใช้งานหรือถูกติดตั้ง. การชี้ FTP เพื่อแชร์ข้อมูลไม่สามารถดำเนินการได้ กรุณาสอบถามข้อมูลเพิ่มเติมจากผู้ดูแลระบบเพื่อติดตั้ง" +#: lib/config.php:602 +msgid " and " +msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 2257d7e995..fcd4bbd24b 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 583c77a58d..4a6ae0d299 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 c7bb36b8d8..8a805f876d 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 -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." +#: lib/config.php:592 +msgid "Note: " +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 "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." +#: lib/config.php:602 +msgid " and " +msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 95bb4b68b5..470d8a70cb 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 7da2dc151b..f4015df489 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 90ef7866c0..612e836a60 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 f65ade3c2c..1720136d3f 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 365568ea67..70663f6f81 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 dc93cbadcf..c200c63e02 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 d3d58129f5..ba3733d9f3 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 8f27337174..874216523c 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 ac1a791472..e176fae6bc 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 -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:592 +msgid "Note: " +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 "Попередження: Підтримка FTP в PHP не увімкнута чи не встановлена. Під'єднанатися до FTP тек неможливо. Попрохайте системного адміністратора встановити її." +#: lib/config.php:602 +msgid " and " +msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 bba2705281..4fd8fcdbe4 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 8a32295d51..bf904c2d8f 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 eff2c9afe6..b21775ce5a 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 00c603d3cb..aa912e8f65 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 91edc05d6a..f06ab498fb 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 8e32bce5c3..0a2cfee99a 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 1c2263d3a0..cb9c4b53ca 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 e2374b5821..ed1b8f6dd8 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 b9a6fd2e3e..ccd6673899 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 -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ó." +#: lib/config.php:592 +msgid "Note: " +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 "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ó." +#: lib/config.php:602 +msgid " and " +msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 256526134a..e1f9cb7d4c 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 7f2eab3c3e..01f7441f45 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 83bdb93048..bb2b1684ee 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 -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:592 +msgid "Note: " +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 "警告:PHP中尚未启用或安装FTP。FTP 分享挂载无法实现。请咨询系统管理员进行安装。" +#: lib/config.php:602 +msgid " and " +msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 6398312966..df5922a64b 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 15269dad34..3336ef9e4c 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 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." +#: lib/config.php:592 +msgid "Note: " 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." +#: lib/config.php:602 +msgid " and " msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 6219708a09..5af2222d38 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 c149394969..6922de1a28 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 62c6dc87c9..10fa76b3d6 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 -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:592 +msgid "Note: " +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 "警告:PHP 並未啓用 FTP 的支援,因此無法掛載 FTP 分享,請洽您的系統管理員將其安裝並啓用。" +#: lib/config.php:602 +msgid " and " +msgstr "" -#: lib/config.php:661 +#: lib/config.php:624 +#, 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: 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 +#, 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 +#, php-format +msgid "" +"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 003cb69e59..c10955598b 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 1e4f406b85..6b76d8126e 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 e7b09649a2..15f78e0bce 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 6b01085c49..df4ed92b1f 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 af49e8e95d..afe548a1e0 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", From e79a027e7775bba652339232764bd95e817217b7 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Wed, 9 Apr 2014 10:18:46 +0200 Subject: [PATCH 135/137] 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 ea8aa7af5d..e75ca940ae 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", '' )); 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 136/137] 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 ea518f3b70..3c7c9239a6 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') { From dbebf6bb5e94615ef8986b812e2ea6ac14862a3f Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Wed, 9 Apr 2014 12:25:48 +0200 Subject: [PATCH 137/137] 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 54454d2ad2..3854af617c 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));